summaryrefslogtreecommitdiff
path: root/libavcodec/libtheoraenc.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-07-15 18:41:15 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-07-20 14:13:42 +0100
commitf3b4a92241a33d444f7f6018ebc12e2e3a2d335f (patch)
treea2ad46f178803542ccf66378840438c611d87f37 /libavcodec/libtheoraenc.c
parentd6006dd9f0d4d01023359230212f1f9fa4800e5b (diff)
libtheoraenc: Keep coded_frame.key_frame a write-only variable
Diffstat (limited to 'libavcodec/libtheoraenc.c')
-rw-r--r--libavcodec/libtheoraenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libtheoraenc.c b/libavcodec/libtheoraenc.c
index 097336bb95..612a80832b 100644
--- a/libavcodec/libtheoraenc.c
+++ b/libavcodec/libtheoraenc.c
@@ -349,7 +349,7 @@ static int encode_frame(AVCodecContext* avc_context, AVPacket *pkt,
// multithreaded (which will be disabled unless explicitly requested)
pkt->pts = pkt->dts = frame->pts;
avc_context->coded_frame->key_frame = !(o_packet.granulepos & h->keyframe_mask);
- if (avc_context->coded_frame->key_frame)
+ if (!(o_packet.granulepos & h->keyframe_mask))
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;