Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-06-05 12:47:39 +0400
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-06-05 12:47:39 +0400
commitfa27733cea39c9117477d77c1f533aacef066844 (patch)
tree1fae5af765f1de14a8681e23f12bfb622c462ebb /libavcodec/tmv.c
parenta08e67e70defe4bac86fbab104d06b4032b7a88c (diff)
tmv decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19109 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/tmv.c')
-rw-r--r--libavcodec/tmv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/tmv.c b/libavcodec/tmv.c
index 5f746d5fb3..29aaae1fe7 100644
--- a/libavcodec/tmv.c
+++ b/libavcodec/tmv.c
@@ -105,5 +105,6 @@ AVCodec tmv_decoder = {
.priv_data_size = sizeof(TMVContext),
.close = tmv_decode_close,
.decode = tmv_decode_frame,
+ .capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"),
};