diff options
author | Paul B Mahol <[email protected]> | 2012-01-28 20:27:17 +0000 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2012-01-28 22:08:21 +0100 |
commit | 7299e5d52bd17d86e9344ea24d58d256d4f4b6da (patch) | |
tree | 12a93e8a11bf21f637cd1f50699217b55aed0f9d | |
parent | bf0aea7907ad94df19959409c42e749d11e1a50a (diff) |
v210enc: remove redundant assignment
Signed-off-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavcodec/v210enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index bcfe0717c4..947797df14 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -44,7 +44,6 @@ static av_cold int encode_init(AVCodecContext *avctx) if (!avctx->coded_frame) return AVERROR(ENOMEM); - avctx->coded_frame->key_frame = 1; avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I; return 0; |