summaryrefslogtreecommitdiff
path: root/libavcodec/targa_y216dec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-07-27 20:27:15 +0000
committerPaul B Mahol <onemda@gmail.com>2013-07-27 20:27:15 +0000
commit9d099b9ae4b6753139f2001487d2f0677d68e68e (patch)
tree0bbeb09fc61a8a656118144c6cc2eb711eac19fe /libavcodec/targa_y216dec.c
parent0909f3edbdfaf480ba720f59f3743f5d95e3c059 (diff)
targa_y216dec: remove empty function
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/targa_y216dec.c')
-rw-r--r--libavcodec/targa_y216dec.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/targa_y216dec.c b/libavcodec/targa_y216dec.c
index 38694ce39e..d67d1938dc 100644
--- a/libavcodec/targa_y216dec.c
+++ b/libavcodec/targa_y216dec.c
@@ -72,19 +72,12 @@ static int y216_decode_frame(AVCodecContext *avctx, void *data,
return avpkt->size;
}
-static av_cold int y216_decode_close(AVCodecContext *avctx)
-{
-
- return 0;
-}
-
AVCodec ff_targa_y216_decoder = {
.name = "targa_y216",
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_TARGA_Y216,
.init = y216_decode_init,
.decode = y216_decode_frame,
- .close = y216_decode_close,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
};