summaryrefslogtreecommitdiff
path: root/libavformat/av1.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-08-17 15:26:05 -0300
committerJames Almer <jamrial@gmail.com>2018-08-17 15:26:05 -0300
commitf00964e2f7eacaf7350504896cf124112e401454 (patch)
tree805d9c5dd6f5ed8177c2215c64f0f5f2871b10e1 /libavformat/av1.c
parent7b5f93d4e126a67a121284892717bd901c4d63aa (diff)
downloadffmpeg-f00964e2f7eacaf7350504896cf124112e401454.tar.gz
avformat/av1: filter out tile list OBUs from samples
As per the updated spec. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/av1.c')
-rw-r--r--libavformat/av1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/av1.c b/libavformat/av1.c
index bf77fd2932..aa11bde573 100644
--- a/libavformat/av1.c
+++ b/libavformat/av1.c
@@ -43,6 +43,7 @@ int ff_av1_filter_obus(AVIOContext *pb, const uint8_t *buf, int size)
switch (type) {
case AV1_OBU_TEMPORAL_DELIMITER:
case AV1_OBU_REDUNDANT_FRAME_HEADER:
+ case AV1_OBU_TILE_LIST:
case AV1_OBU_PADDING:
break;
default: