summaryrefslogtreecommitdiff
path: root/libavcodec/libx264.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-31 14:09:19 +0200
committerAnton Khirnov <anton@khirnov.net>2011-09-06 20:13:11 +0200
commitd8dee0e7bd5c7b96b355b96929ae7fb39ded4c3a (patch)
treec9b9ba66510fc7d2f5a8b32270d8bf202b762106 /libavcodec/libx264.c
parent459fe331e9068dc916929021579c26021c097b57 (diff)
libx264: remove useless assignment
priv_data is memset to 0.
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r--libavcodec/libx264.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 93ae88d852..179598f971 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -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;