Commit f973e61a authored by bcoudurier's avatar bcoudurier

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

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19111 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 822a5bd6
......@@ -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