summaryrefslogtreecommitdiff
path: root/libavcodec/targaenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-25 18:54:02 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:01 -0300
commit78ce00428fda34cdf8a1eba998aa3d2deafb8689 (patch)
tree9a389304936559a571f329310851c522cbd1604e /libavcodec/targaenc.c
parent6cf0cb8935f515a7b5f79d2e3cf02bd0764943bf (diff)
avcodec: Remove deprecated coder type options
Deprecated in be00ec832c519427cd92218abac77dafdc1d5487. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/targaenc.c')
-rw-r--r--libavcodec/targaenc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c
index 79030a012b..f662e4a489 100644
--- a/libavcodec/targaenc.c
+++ b/libavcodec/targaenc.c
@@ -152,13 +152,6 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
bpp = pkt->data[16] >> 3;
-#if FF_API_CODER_TYPE
-FF_DISABLE_DEPRECATION_WARNINGS
- if (avctx->coder_type == FF_CODER_TYPE_RAW)
- s->rle = 0;
-FF_ENABLE_DEPRECATION_WARNINGS
-#endif
-
/* try RLE compression */
if (s->rle)
datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);