[FFmpeg-cvslog] avformat/av1: filter out tile list OBUs from samples

James Almer git at videolan.org
Fri Aug 17 21:29:22 EEST 2018


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Aug 17 15:26:05 2018 -0300| [f00964e2f7eacaf7350504896cf124112e401454] | committer: James Almer

avformat/av1: filter out tile list OBUs from samples

As per the updated spec.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f00964e2f7eacaf7350504896cf124112e401454
---

 libavformat/av1.c     | 1 +
 libavformat/version.h | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

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:
diff --git a/libavformat/version.h b/libavformat/version.h
index 79e94fc808..3955e09aeb 100644
--- a/libavformat/version.h
+++ b/libavformat/version.h
@@ -33,7 +33,7 @@
 // Also please add any ticket numbers that you believe might be affected here
 #define LIBAVFORMAT_VERSION_MAJOR  58
 #define LIBAVFORMAT_VERSION_MINOR  17
-#define LIBAVFORMAT_VERSION_MICRO 102
+#define LIBAVFORMAT_VERSION_MICRO 103
 
 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
                                                LIBAVFORMAT_VERSION_MINOR, \



More information about the ffmpeg-cvslog mailing list