diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-30 12:57:34 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-30 19:12:54 -0500 |
commit | ddf70db6d71fdab15bf8626aea4301b85891c2bd (patch) | |
tree | c6f3f01722b9f97193baec373bf0b0b8474a0d57 /libavcodec/adpcmenc.c | |
parent | 3c4add27f7513f435e9daa03643fd992d5f6bcee (diff) | |
download | ffmpeg-ddf70db6d71fdab15bf8626aea4301b85891c2bd.tar.gz |
adpcmenc: Do not set coded_frame->key_frame.
It is already set in avcodec_alloc_frame().
Diffstat (limited to 'libavcodec/adpcmenc.c')
-rw-r--r-- | libavcodec/adpcmenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index 9697f829d2..9cf1e39149 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c @@ -136,7 +136,6 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx) } avctx->coded_frame = avcodec_alloc_frame(); - avctx->coded_frame->key_frame= 1; return 0; error: |