Mercurial > mplayer.hg
changeset 14784:53d306774ce2
sync to x264 r137: adaptive B-frame decision, flush delayed frames.
author | lorenm |
---|---|
date | Wed, 23 Feb 2005 19:59:24 +0000 |
parents | 2c52e85c47a3 |
children | 13feacc885a7 |
files | DOCS/man/en/mplayer.1 configure libmpcodecs/ve_x264.c |
diffstat | 3 files changed, 50 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/DOCS/man/en/mplayer.1 Wed Feb 23 14:07:18 2005 +0000 +++ b/DOCS/man/en/mplayer.1 Wed Feb 23 19:59:24 2005 +0000 @@ -7369,7 +7369,18 @@ . .TP .B bframes=<0\-16> -number of consecutive B-frames between I- and P-frames (default: 0) +maximum number of consecutive B-frames between I- and P-frames (default: 0) +. +.TP +.B (no)b_adapt +Automatically decides when to use B-frames and how many, up to the maximum +specified above (default: on). +If this option is disabled, then the maximum number of B-frames is used. +. +.TP +.B b_bias=<-100\-100> +Controls the decision performed by b_adapt. +A higher b_bias produces more B-frames. (default: 0) . .TP .B (no)deblock
--- a/configure Wed Feb 23 14:07:18 2005 +0000 +++ b/configure Wed Feb 23 19:59:24 2005 +0000 @@ -5906,7 +5906,7 @@ #include <stdint.h> #include <stdarg.h> #include <x264.h> -#if X264_BUILD < 0x0012 +#if X264_BUILD < 0x0013 #error We do not support old versions of x264. Get the latest from SVN. #endif int main(void) { x264_encoder_open((void*)0); return 0; }
--- a/libmpcodecs/ve_x264.c Wed Feb 23 14:07:18 2005 +0000 +++ b/libmpcodecs/ve_x264.c Wed Feb 23 19:59:24 2005 +0000 @@ -65,6 +65,8 @@ static int keyint_min = -1; static int scenecut_threshold = 40; static int bframe = 0; +static int bframe_adaptive = 1; +static int bframe_bias = 0; static int deblock = 1; static int deblockalpha = 0; static int deblockbeta = 0; @@ -101,6 +103,9 @@ {"keyint_min", &keyint_min, CONF_TYPE_INT, CONF_RANGE, 1, 24000000, NULL}, {"scenecut", &scenecut_threshold, CONF_TYPE_INT, CONF_RANGE, -1, 100, NULL}, {"bframes", &bframe, CONF_TYPE_INT, CONF_RANGE, 0, 16, NULL}, + {"b_adapt", &bframe_adaptive, CONF_TYPE_FLAG, 0, 0, 1, NULL}, + {"nob_adapt", &bframe_adaptive, CONF_TYPE_FLAG, 0, 1, 0, NULL}, + {"b_bias", &bframe_bias, CONF_TYPE_INT, CONF_RANGE, -100, 100, NULL}, {"deblock", &deblock, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"nodeblock", &deblock, CONF_TYPE_FLAG, 0, 1, 0, NULL}, {"deblockalpha", &deblockalpha, CONF_TYPE_INT, CONF_RANGE, -6, 6, NULL}, @@ -137,7 +142,9 @@ {"log", &log_level, CONF_TYPE_INT, CONF_RANGE, -1, 3, NULL}, {NULL, NULL, 0, 0, 0, 0, NULL} }; - + +static int put_image(struct vf_instance_s *vf, mp_image_t *mpi); +static int encode_frame(struct vf_instance_s *vf, x264_picture_t *pic_in); static int config(struct vf_instance_s* vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt) { h264_module_t *mod=(h264_module_t*)vf->priv; @@ -151,6 +158,8 @@ mod->param.i_keyint_min = keyint_min > 0 ? keyint_min : keyint_max * 2 / 5; mod->param.i_scenecut_threshold = scenecut_threshold; mod->param.i_bframe = bframe; + mod->param.b_bframe_adaptive = bframe_adaptive; + mod->param.i_bframe_bias = bframe_bias; mod->param.b_deblocking_filter = deblock; mod->param.i_deblocking_filter_alphac0 = deblockalpha; mod->param.i_deblocking_filter_beta = deblockbeta; @@ -280,7 +289,14 @@ static int control(struct vf_instance_s* vf, int request, void *data) { - return CONTROL_UNKNOWN; + switch(request){ + case VFCTRL_FLUSH_FRAMES: + if(bframe) + while(encode_frame(vf, NULL) > 0); + return CONTROL_TRUE; + default: + return CONTROL_UNKNOWN; + } } static int query_format(struct vf_instance_s* vf, unsigned int fmt) @@ -306,10 +322,7 @@ static int put_image(struct vf_instance_s *vf, mp_image_t *mpi) { h264_module_t *mod=(h264_module_t*)vf->priv; - int i_nal; - x264_nal_t *nal; int i; - int i_size = 0; int csp=mod->pic.img.i_csp; memset(&mod->pic, 0, sizeof(x264_picture_t)); @@ -321,9 +334,22 @@ } mod->pic.i_type = X264_TYPE_AUTO; - if(x264_encoder_encode(mod->x264, &nal, &i_nal, &mod->pic) < 0) { + + return encode_frame(vf, &mod->pic) >= 0; +} + +static int encode_frame(struct vf_instance_s *vf, x264_picture_t *pic_in) +{ + h264_module_t *mod=(h264_module_t*)vf->priv; + x264_picture_t pic_out; + x264_nal_t *nal; + int i_nal; + int i_size = 0; + int i; + + if(x264_encoder_encode(mod->x264, &nal, &i_nal, pic_in, &pic_out) < 0) { mp_msg(MSGT_MENCODER, MSGL_ERR, "x264_encoder_encode failed\n"); - return 0; + return -1; } for(i=0; i < i_nal; i++) { @@ -331,12 +357,13 @@ i_size += x264_nal_encode(mod->mux->buffer + i_size, &i_data, 1, &nal[i]); } if(i_size>0) { - int keyframe = (mod->pic.i_type == X264_TYPE_IDR) || - (mod->pic.i_type == X264_TYPE_I + int keyframe = (pic_out.i_type == X264_TYPE_IDR) || + (pic_out.i_type == X264_TYPE_I && frame_ref == 1 && !bframe); muxer_write_chunk(mod->mux, i_size, keyframe?0x10:0); } - return 1; + + return i_size; } static void uninit(struct vf_instance_s *vf)