diff libmpcodecs/ve_x264.c @ 30747:7ac542b9ca24

Use the KEYFRAME define instead of some magic number.
author reimar
date Sun, 28 Feb 2010 07:45:23 +0000
parents a972c1a4a012
children 923f55aafcf6
line wrap: on
line diff
--- a/libmpcodecs/ve_x264.c	Sun Feb 28 03:26:18 2010 +0000
+++ b/libmpcodecs/ve_x264.c	Sun Feb 28 07:45:23 2010 +0000
@@ -263,7 +263,7 @@
                         && param.i_frame_reference == 1
                         && !param.i_bframe);
         memcpy(mod->mux->buffer, nal->p_payload, i_size);
-        muxer_write_chunk(mod->mux, i_size, keyframe?0x10:0, MP_NOPTS_VALUE, MP_NOPTS_VALUE);
+        muxer_write_chunk(mod->mux, i_size, keyframe?AVIIF_KEYFRAME:0, MP_NOPTS_VALUE, MP_NOPTS_VALUE);
     }
     else
         ++mod->mux->encoder_delay;