OSDN Git Service

libx264: remove useless assignment
authorAnton Khirnov <anton@khirnov.net>
Wed, 31 Aug 2011 12:09:19 +0000 (14:09 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 6 Sep 2011 18:13:11 +0000 (20:13 +0200)
priv_data is memset to 0.

libavcodec/libx264.c

index 93ae88d..179598f 100644 (file)
@@ -187,7 +187,6 @@ static av_cold int X264_init(AVCodecContext *avctx)
 {
     X264Context *x4 = avctx->priv_data;
 
-    x4->sei_size = 0;
     x264_param_default(&x4->params);
 
     x4->params.i_keyint_max         = avctx->gop_size;