diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-28 20:12:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-28 22:08:20 +0100 |
commit | 2de6a7253e8dfd0ab37a93a23f445eff698bb36f (patch) | |
tree | 1e93d470883d54922ba951dbfb3edf4cb5699ea1 | |
parent | 1e90450fad76427d781f0ee44d8ee41037a395d1 (diff) | |
download | ffmpeg-2de6a7253e8dfd0ab37a93a23f445eff698bb36f.tar.gz |
roqaudioenc: remove redundant assignment
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/roqaudioenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/roqaudioenc.c b/libavcodec/roqaudioenc.c index ac8c94a045..7c3990cc23 100644 --- a/libavcodec/roqaudioenc.c +++ b/libavcodec/roqaudioenc.c @@ -59,7 +59,6 @@ static av_cold int roq_dpcm_encode_init(AVCodecContext *avctx) context->lastSample[0] = context->lastSample[1] = 0; avctx->coded_frame= avcodec_alloc_frame(); - avctx->coded_frame->key_frame= 1; return 0; } |