mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-20 15:45:40 +08:00
Merge commit 'f3bd3810d274a7f51b5925fc3d2fc33e8043a5d4'
* commit 'f3bd3810d274a7f51b5925fc3d2fc33e8043a5d4': qsvdec_*: add missing CODEC_CAP_DR1 Merged-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -181,7 +181,7 @@ AVCodec ff_hevc_qsv_decoder = {
|
|||||||
.decode = qsv_decode_frame,
|
.decode = qsv_decode_frame,
|
||||||
.flush = qsv_decode_flush,
|
.flush = qsv_decode_flush,
|
||||||
.close = qsv_decode_close,
|
.close = qsv_decode_close,
|
||||||
.capabilities = CODEC_CAP_DELAY,
|
.capabilities = CODEC_CAP_DELAY | CODEC_CAP_DR1,
|
||||||
.priv_class = &hevc_class,
|
.priv_class = &hevc_class,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
@@ -216,7 +216,7 @@ AVCodec ff_h264_qsv_decoder = {
|
|||||||
.decode = qsv_decode_frame,
|
.decode = qsv_decode_frame,
|
||||||
.flush = qsv_decode_flush,
|
.flush = qsv_decode_flush,
|
||||||
.close = qsv_decode_close,
|
.close = qsv_decode_close,
|
||||||
.capabilities = CODEC_CAP_DELAY,
|
.capabilities = CODEC_CAP_DELAY | CODEC_CAP_DR1,
|
||||||
.priv_class = &class,
|
.priv_class = &class,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
@@ -90,6 +90,6 @@ AVCodec ff_mpeg2_qsv_decoder = {
|
|||||||
.decode = qsv_decode_frame,
|
.decode = qsv_decode_frame,
|
||||||
.flush = qsv_decode_flush,
|
.flush = qsv_decode_flush,
|
||||||
.close = qsv_decode_close,
|
.close = qsv_decode_close,
|
||||||
.capabilities = CODEC_CAP_DELAY,
|
.capabilities = CODEC_CAP_DELAY | CODEC_CAP_DR1,
|
||||||
.priv_class = &class,
|
.priv_class = &class,
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user