mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
cleanup video buffer size
Originally committed as revision 3552 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9205093333
commit
7e05155850
@ -306,13 +306,18 @@ static int mpeg_mux_init(AVFormatContext *ctx)
|
||||
break;
|
||||
case CODEC_TYPE_VIDEO:
|
||||
stream->id = mpv_id++;
|
||||
if (s->is_vcd)
|
||||
if (st->codec.rc_buffer_size)
|
||||
stream->max_buffer_size = 6*1024 + st->codec.rc_buffer_size/8;
|
||||
else
|
||||
stream->max_buffer_size = 230*1024; //FIXME this is probably too small as default
|
||||
#if 0
|
||||
/* see VCD standard, p. IV-7*/
|
||||
stream->max_buffer_size = 46 * 1024;
|
||||
else
|
||||
/* This value HAS to be used for SVCD (see SVCD standard, p. 26 V.2.3.2).
|
||||
Right now it is also used for everything else.*/
|
||||
stream->max_buffer_size = 230 * 1024;
|
||||
#endif
|
||||
s->video_bound++;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user