diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-04-20 01:41:08 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-05-08 13:02:30 -0300 |
commit | 0b61ddb5766c8d5219150371db0649ff0cec730a (patch) | |
tree | 0aeaf8b807197e14a0cc2a0fa97d0655e29cb79b /tests/fate/matroska.mak | |
parent | 08f5d972994ef7160767d1bd99ef59b177db3199 (diff) | |
download | ffmpeg-0b61ddb5766c8d5219150371db0649ff0cec730a.tar.gz |
avformat/matroskaenc: Don't waste bytes writing level 1 elements
Up until now, the length field of most level 1 elements has been written
using eight bytes, although it is known in advance how much space the
content of said elements will take up so that it would be possible to
determine the minimal amount of bytes for the length field. This
commit changes this.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/fate/matroska.mak')
-rw-r--r-- | tests/fate/matroska.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate/matroska.mak b/tests/fate/matroska.mak index d1500a1aae..98a49a4d74 100644 --- a/tests/fate/matroska.mak +++ b/tests/fate/matroska.mak @@ -4,7 +4,7 @@ FATE_MATROSKA-$(call DEMMUX, MATROSKA, MATROSKA) += fate-matroska-remux fate-matroska-remux: CMD = md5pipe -i $(TARGET_SAMPLES)/vp9-test-vectors/vp90-2-2pass-akiyo.webm -color_trc 4 -c:v copy -fflags +bitexact -strict -2 -f matroska fate-matroska-remux: CMP = oneline -fate-matroska-remux: REF = 82a5beaf7a0fb5bb2970d9bba9028086 +fate-matroska-remux: REF = e5457e5fa606d564a54914bd12f426c8 FATE_MATROSKA_FFPROBE-$(call ALLYES, MATROSKA_DEMUXER) += fate-matroska-spherical-mono fate-matroska-spherical-mono: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entries stream_side_data_list -select_streams v -v 0 $(TARGET_SAMPLES)/mkv/spherical.mkv |