diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-28 19:46:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-28 22:08:20 +0100 |
commit | 5291cedd6ca39c7e33b5c0ad543aad8890107104 (patch) | |
tree | 6bd64e9a72be88a45f9e2640e66cc88656f84915 /libavcodec/libgsm.c | |
parent | 3ac99cdc412f3c02f96c752a6da4aada10f2edb6 (diff) | |
download | ffmpeg-5291cedd6ca39c7e33b5c0ad543aad8890107104.tar.gz |
libgsm: remove dupe assigment.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libgsm.c')
-rw-r--r-- | libavcodec/libgsm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index 203e360375..919387492c 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -72,7 +72,6 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) { } avctx->coded_frame= avcodec_alloc_frame(); - avctx->coded_frame->key_frame= 1; if (!avctx->coded_frame) goto error; |