summaryrefslogtreecommitdiff
path: root/libavcodec/qtrleenc.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2016-06-22 11:09:19 +0200
committerClément Bœsch <clement@stupeflix.com>2016-06-22 11:09:19 +0200
commit85185578ce309f5a605ec90d97f9acf38598ccaa (patch)
tree60a1c8fe3900d47c2c9f4383fd17fdc194adbf85 /libavcodec/qtrleenc.c
parent0491d6993aef1211ed11b909ce7c8b0ed5b4fc58 (diff)
downloadffmpeg-85185578ce309f5a605ec90d97f9acf38598ccaa.tar.gz
lavc/qtrleenc: simplify FF_API_CODED_FRAME deprecation guard
Diffstat (limited to 'libavcodec/qtrleenc.c')
-rw-r--r--libavcodec/qtrleenc.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/libavcodec/qtrleenc.c b/libavcodec/qtrleenc.c
index adbd9f3b44..cdd864bf82 100644
--- a/libavcodec/qtrleenc.c
+++ b/libavcodec/qtrleenc.c
@@ -363,9 +363,6 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet)
{
QtrleEncContext * const s = avctx->priv_data;
-#if FF_API_CODED_FRAME
- enum AVPictureType pict_type;
-#endif
int ret;
if ((ret = ff_alloc_packet2(avctx, pkt, s->max_buf_size, 0)) < 0)
@@ -373,15 +370,9 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
if (avctx->gop_size == 0 || (s->avctx->frame_number % avctx->gop_size) == 0) {
/* I-Frame */
-#if FF_API_CODED_FRAME
- pict_type = AV_PICTURE_TYPE_I;
-#endif
s->key_frame = 1;
} else {
/* P-Frame */
-#if FF_API_CODED_FRAME
- pict_type = AV_PICTURE_TYPE_P;
-#endif
s->key_frame = 0;
}
@@ -398,7 +389,7 @@ static int qtrle_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
#if FF_API_CODED_FRAME
FF_DISABLE_DEPRECATION_WARNINGS
avctx->coded_frame->key_frame = s->key_frame;
- avctx->coded_frame->pict_type = pict_type;
+ avctx->coded_frame->pict_type = s->key_frame ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
FF_ENABLE_DEPRECATION_WARNINGS
#endif