mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
Unbreak ffserver
Make sure the sample_aspect_ratio is 0 and not 0/0. Originally committed as revision 26254 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b82579a6ec
commit
2a12706710
@ -3497,6 +3497,7 @@ static AVStream *add_av_stream1(FFStream *stream, AVCodecContext *codec, int cop
|
||||
fst->priv_data = av_mallocz(sizeof(FeedData));
|
||||
fst->index = stream->nb_streams;
|
||||
av_set_pts_info(fst, 33, 1, 90000);
|
||||
fst->sample_aspect_ratio = (AVRational){0,1};
|
||||
stream->streams[stream->nb_streams++] = fst;
|
||||
return fst;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user