Merge remote-tracking branch 'qatar/master'
* qatar/master:
asf: only set index_read if the index contained entries.
cabac: add overread protection to BRANCHLESS_GET_CABAC().
cabac: increment jump locations by one in callers of BRANCHLESS_GET_CABAC().
cabac: remove unused argument from BRANCHLESS_GET_CABAC_UPDATE().
cabac: use struct+offset instead of memory operand in BRANCHLESS_GET_CABAC().
h264: add overread protection to get_cabac_bypass_sign_x86().
h264: reindent get_cabac_bypass_sign_x86().
h264: use struct offsets in get_cabac_bypass_sign_x86().
h264: fix overreads in cabac reader.
wmall: fix seeking.
lagarith: fix buffer overreads.
dvdec: drop unnecessary dv_tablegen.h #include
build: fix doc generation errors in parallel builds
Replace memset(0) by zero initializations.
faandct: Remove FAAN_POSTSCALE define and related code.
dvenc: print allowed profiles if the video doesn't conform to any of them.
avcodec_encode_{audio,video}: only reallocate output packet when it has non-zero size.
FATE: add a test for vp8 with changing frame size.
fate: add kgv1 fate test.
oggdec: calculate correct timestamps in Ogg/FLAC
Conflicts:
libavcodec/4xm.c
libavcodec/cook.c
libavcodec/dvdata.c
libavcodec/dvdsubdec.c
libavcodec/lagarith.c
libavcodec/lagarithrac.c
libavcodec/utils.c
tests/fate/video.mak
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -36,8 +36,8 @@ extern unsigned int xvid_debug;
|
||||
int ff_xvid_rate_control_init(MpegEncContext *s){
|
||||
char *tmp_name;
|
||||
int fd, i;
|
||||
xvid_plg_create_t xvid_plg_create;
|
||||
xvid_plugin_2pass2_t xvid_2pass2;
|
||||
xvid_plg_create_t xvid_plg_create = { 0 };
|
||||
xvid_plugin_2pass2_t xvid_2pass2 = { 0 };
|
||||
|
||||
//xvid_debug=-1;
|
||||
|
||||
@@ -67,7 +67,6 @@ int ff_xvid_rate_control_init(MpegEncContext *s){
|
||||
|
||||
close(fd);
|
||||
|
||||
memset(&xvid_2pass2, 0, sizeof(xvid_2pass2));
|
||||
xvid_2pass2.version= XVID_MAKE_VERSION(1,1,0);
|
||||
xvid_2pass2.filename= tmp_name;
|
||||
xvid_2pass2.bitrate= s->avctx->bit_rate;
|
||||
@@ -75,7 +74,6 @@ int ff_xvid_rate_control_init(MpegEncContext *s){
|
||||
xvid_2pass2.vbv_maxrate= s->avctx->rc_max_rate;
|
||||
xvid_2pass2.vbv_initial= s->avctx->rc_initial_buffer_occupancy;
|
||||
|
||||
memset(&xvid_plg_create, 0, sizeof(xvid_plg_create));
|
||||
xvid_plg_create.version= XVID_MAKE_VERSION(1,1,0);
|
||||
xvid_plg_create.fbase= s->avctx->time_base.den;
|
||||
xvid_plg_create.fincr= s->avctx->time_base.num;
|
||||
@@ -89,9 +87,8 @@ int ff_xvid_rate_control_init(MpegEncContext *s){
|
||||
}
|
||||
|
||||
float ff_xvid_rate_estimate_qscale(MpegEncContext *s, int dry_run){
|
||||
xvid_plg_data_t xvid_plg_data;
|
||||
xvid_plg_data_t xvid_plg_data = { 0 };
|
||||
|
||||
memset(&xvid_plg_data, 0, sizeof(xvid_plg_data));
|
||||
xvid_plg_data.version= XVID_MAKE_VERSION(1,1,0);
|
||||
xvid_plg_data.width = s->width;
|
||||
xvid_plg_data.height= s->height;
|
||||
|
||||
Reference in New Issue
Block a user