diff options
author | Sasi Inguva <isasi-at-google.com@ffmpeg.org> | 2016-09-18 22:09:03 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-09-19 19:52:05 +0200 |
commit | ca6cae73db207f17a0d5507609de12842d8f0ca3 (patch) | |
tree | 53f0b232498421ced1a9cd9a63386664f31a258e /tests/fate/mov.mak | |
parent | a53201879ca36af6fcc8a0d4bcc1fa6d759b67ec (diff) | |
download | ffmpeg-ca6cae73db207f17a0d5507609de12842d8f0ca3.tar.gz |
lavf/mov: Add support for edit list parsing.
Signed-off-by: Sasi Inguva <isasi@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/fate/mov.mak')
-rw-r--r-- | tests/fate/mov.mak | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak new file mode 100644 index 0000000000..4b5885b462 --- /dev/null +++ b/tests/fate/mov.mak @@ -0,0 +1,28 @@ +FATE_MOV = fate-mov-3elist \ + fate-mov-3elist-1ctts \ + fate-mov-1elist-1ctts \ + fate-mov-1elist-noctts \ + fate-mov-elist-starts-ctts-2ndsample \ + fate-mov-1elist-ends-last-bframe \ + fate-mov-2elist-elist1-ends-bframe + +FATE_SAMPLES_AVCONV += $(FATE_MOV) + +fate-mov: $(FATE_MOV) + +# Make sure we handle edit lists correctly in normal cases. +fate-mov-1elist-noctts: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-1elist-noctts.mov +fate-mov-1elist-1ctts: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-1elist-1ctts.mov +fate-mov-3elist: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-3elist.mov +fate-mov-3elist-1ctts: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-3elist-1ctts.mov + +# Makes sure that the CTTS is also modified when we fix avindex in mov.c while parsing edit lists. +fate-mov-elist-starts-ctts-2ndsample: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-elist-starts-ctts-2ndsample.mov + +# Makes sure that we handle edit lists ending on a B-frame correctly. +# The last frame in decoding order which is B-frame should be output, but the last but-one P-frame shouldn't be +# output. +fate-mov-1elist-ends-last-bframe: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-1elist-ends-last-bframe.mov + +# Makes sure that we handle timestamps of packets in case of multiple edit lists with one of them ending on a B-frame correctly. +fate-mov-2elist-elist1-ends-bframe: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-2elist-elist1-ends-bframe.mov |