You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
targa_y216dec: remove empty function
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -72,19 +72,12 @@ static int y216_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
return avpkt->size;
|
return avpkt->size;
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int y216_decode_close(AVCodecContext *avctx)
|
|
||||||
{
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
AVCodec ff_targa_y216_decoder = {
|
AVCodec ff_targa_y216_decoder = {
|
||||||
.name = "targa_y216",
|
.name = "targa_y216",
|
||||||
.type = AVMEDIA_TYPE_VIDEO,
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
.id = AV_CODEC_ID_TARGA_Y216,
|
.id = AV_CODEC_ID_TARGA_Y216,
|
||||||
.init = y216_decode_init,
|
.init = y216_decode_init,
|
||||||
.decode = y216_decode_frame,
|
.decode = y216_decode_frame,
|
||||||
.close = y216_decode_close,
|
|
||||||
.capabilities = CODEC_CAP_DR1,
|
.capabilities = CODEC_CAP_DR1,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
|
.long_name = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user