Commit 35b2c657 authored by Baptiste Coudurier's avatar Baptiste Coudurier

vc1 and wmv3 decoders use MPV_frame_start which uses get_buffer, set CODEC_CAP_DR1

Originally committed as revision 19111 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c0bd35c7
......@@ -4272,7 +4272,7 @@ AVCodec vc1_decoder = {
NULL,
vc1_decode_end,
vc1_decode_frame,
CODEC_CAP_DELAY,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
NULL,
.long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1"),
.pix_fmts = ff_hwaccel_pixfmt_list_420
......@@ -4287,7 +4287,7 @@ AVCodec wmv3_decoder = {
NULL,
vc1_decode_end,
vc1_decode_frame,
CODEC_CAP_DELAY,
CODEC_CAP_DR1 | CODEC_CAP_DELAY,
NULL,
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9"),
.pix_fmts = ff_hwaccel_pixfmt_list_420
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment