summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/targa_y216dec.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/targa_y216dec.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/targa_y216dec.c')
-rw-r--r--ffmpeg/libavcodec/targa_y216dec.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/ffmpeg/libavcodec/targa_y216dec.c b/ffmpeg/libavcodec/targa_y216dec.c
index 38694ce..5f4eeaa 100644
--- a/ffmpeg/libavcodec/targa_y216dec.c
+++ b/ffmpeg/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",
+ .long_name = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
.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"),
};