diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-07 18:28:00 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-02-07 18:28:00 +0100 |
commit | bf5c0308f2d9f7734db79f567b1f79dd621008ab (patch) | |
tree | 279ce2f77a43447cc1968ab38cc7b0a00bc83a07 /libavcodec/libutvideo.cpp | |
parent | 0349d61eef66c6c4b32896705b51ba4bd4f22ef7 (diff) | |
download | ffmpeg-bf5c0308f2d9f7734db79f567b1f79dd621008ab.tar.gz |
Fix libutvideo compilation.
Fixes ticket #985.
Diffstat (limited to 'libavcodec/libutvideo.cpp')
-rw-r--r-- | libavcodec/libutvideo.cpp | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/libavcodec/libutvideo.cpp b/libavcodec/libutvideo.cpp index 635720e976..1089d3e879 100644 --- a/libavcodec/libutvideo.cpp +++ b/libavcodec/libutvideo.cpp @@ -189,17 +189,27 @@ static av_cold int utvideo_decode_close(AVCodecContext *avctx) AVCodec ff_libutvideo_decoder = { "libutvideo", + NULL_IF_CONFIG_SMALL("Ut Video"), AVMEDIA_TYPE_VIDEO, CODEC_ID_UTVIDEO, + 0, //capabilities + NULL, //supported_framerates + NULL, //pix_fmts + NULL, //supported_samplerates + NULL, //sample_fmts + NULL, //channel_layouts + 0, //max_lowres + NULL, //priv_class + NULL, //profiles sizeof(UtVideoContext), + NULL, //next + NULL, //init_thread_copy + NULL, //update_thread_context + NULL, //defaults + NULL, //init_static_data utvideo_decode_init, - NULL, - utvideo_decode_close, + NULL, //encode + NULL, //encode2 utvideo_decode_frame, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL_IF_CONFIG_SMALL("Ut Video"), + utvideo_decode_close, }; |