git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
a6e9448
)
avcodec/cinepakenc: drop coded_frame init
author
Michael Niedermayer
<michaelni@gmx.at>
Wed, 7 May 2014 15:54:48 +0000
(17:54 +0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Wed, 7 May 2014 15:54:48 +0000
(17:54 +0200)
Fixes const being lost warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/cinepakenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/cinepakenc.c
b/libavcodec/cinepakenc.c
index
5b18dfd
..
7c6972a
100644
(file)
--- a/
libavcodec/cinepakenc.c
+++ b/
libavcodec/cinepakenc.c
@@
-1281,8
+1281,6
@@
static int cinepak_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;
- avctx->coded_frame = frame;
-
FFSWAP(AVFrame *, s->last_frame, s->best_frame);
if (++s->curframe >= s->keyint)