diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-12-29 12:19:38 +0000 |
| commit | f7813a5324be39d13ab536c245d15dfc602a7849 (patch) | |
| tree | fad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/v408dec.c | |
| parent | b7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff) | |
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/v408dec.c')
| -rw-r--r-- | ffmpeg/libavcodec/v408dec.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ffmpeg/libavcodec/v408dec.c b/ffmpeg/libavcodec/v408dec.c index 31c14dc..be442fa 100644 --- a/ffmpeg/libavcodec/v408dec.c +++ b/ffmpeg/libavcodec/v408dec.c @@ -79,33 +79,25 @@ 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", + .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"), .type = AVMEDIA_TYPE_VIDEO, .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"), }; #endif #if CONFIG_V408_DECODER AVCodec ff_v408_decoder = { .name = "v408", + .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"), .type = AVMEDIA_TYPE_VIDEO, .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"), }; #endif |
