mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
lavc: add CODEC_CAP_DR1 to all video decoders missing them
This commit is contained in:
parent
48f01398ba
commit
f174fbac3c
@ -1336,4 +1336,5 @@ AVCodec ff_bink_decoder = {
|
||||
.close = decode_end,
|
||||
.decode = decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Bink video"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -243,4 +243,5 @@ AVCodec ff_dpx_decoder = {
|
||||
.close = decode_end,
|
||||
.decode = decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("DPX image"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -1114,4 +1114,5 @@ AVCodec ff_indeo3_decoder = {
|
||||
.decode = decode_frame,
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -607,4 +607,5 @@ AVCodec ff_indeo4_decoder = {
|
||||
.close = ff_ivi_decode_close,
|
||||
.decode = ff_ivi_decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 4"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -642,4 +642,5 @@ AVCodec ff_indeo5_decoder = {
|
||||
.close = ff_ivi_decode_close,
|
||||
.decode = ff_ivi_decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Intel Indeo Video Interactive 5"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -191,4 +191,5 @@ AVCodec ff_kgv1_decoder = {
|
||||
.decode = decode_frame,
|
||||
.flush = decode_flush,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Kega Game Video"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -267,4 +267,5 @@ AVCodec ff_sgi_decoder = {
|
||||
.close = sgi_end,
|
||||
.decode = decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("SGI image"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -275,4 +275,5 @@ AVCodec ff_vb_decoder = {
|
||||
.close = decode_end,
|
||||
.decode = decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Beam Software VB"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
@ -256,4 +256,5 @@ AVCodec ff_yop_decoder = {
|
||||
.close = yop_decode_close,
|
||||
.decode = yop_decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"),
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user