|
|
|
@ -79,12 +79,6 @@ static int v408_decode_frame(AVCodecContext *avctx, void *data, |
|
|
|
|
return avpkt->size; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static av_cold int v408_decode_close(AVCodecContext *avctx) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#if CONFIG_AYUV_DECODER |
|
|
|
|
AVCodec ff_ayuv_decoder = { |
|
|
|
|
.name = "ayuv", |
|
|
|
@ -92,7 +86,6 @@ AVCodec ff_ayuv_decoder = { |
|
|
|
|
.id = AV_CODEC_ID_AYUV, |
|
|
|
|
.init = v408_decode_init, |
|
|
|
|
.decode = v408_decode_frame, |
|
|
|
|
.close = v408_decode_close, |
|
|
|
|
.capabilities = CODEC_CAP_DR1, |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"), |
|
|
|
|
}; |
|
|
|
@ -104,7 +97,6 @@ AVCodec ff_v408_decoder = { |
|
|
|
|
.id = AV_CODEC_ID_V408, |
|
|
|
|
.init = v408_decode_init, |
|
|
|
|
.decode = v408_decode_frame, |
|
|
|
|
.close = v408_decode_close, |
|
|
|
|
.capabilities = CODEC_CAP_DR1, |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"), |
|
|
|
|
}; |
|
|
|
|