avcodec/test/avcodec: check decoders for FF_CODEC_CAP_SETS_PKT_DTS

Ensure that only decode() callback ones set it.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-07-09 16:19:09 -03:00
parent 31ae95d988
commit 2bbb6cf74e
1 changed files with 4 additions and 0 deletions

View File

@ -175,6 +175,10 @@ int main(void){
!(codec->capabilities & AV_CODEC_CAP_FRAME_THREADS))
ERR("Decoder %s wants allocated progress without supporting"
"frame threads\n");
if (codec2->cb_type != FF_CODEC_CB_TYPE_DECODE &&
codec2->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS)
ERR("Decoder %s is marked as setting pkt_dts when it doesn't have"
"any effect\n");
}
if (priv_data_size_wrong(codec2))
ERR_EXT("Private context of codec %s is impossibly-sized (size %d).",