[vlc-commits] vlc_block: add AU_END flag
Francois Cartegnie
git at videolan.org
Thu Mar 7 17:29:26 CET 2019
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Aug 21 14:19:25 2018 +0200| [dfa342ba79fcc95bc239fa0438e5782a4fe147be] | committer: Francois Cartegnie
vlc_block: add AU_END flag
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dfa342ba79fcc95bc239fa0438e5782a4fe147be
---
include/vlc_block.h | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/include/vlc_block.h b/include/vlc_block.h
index 18e1e11514..1b47e7329f 100644
--- a/include/vlc_block.h
+++ b/include/vlc_block.h
@@ -84,12 +84,14 @@
#define BLOCK_FLAG_PREROLL 0x0200
/** This block is corrupted and/or there is data loss */
#define BLOCK_FLAG_CORRUPTED 0x0400
+/** This block is last of its access unit */
+#define BLOCK_FLAG_AU_END 0x0800
/** This block contains an interlaced picture with top field stored first */
-#define BLOCK_FLAG_TOP_FIELD_FIRST 0x0800
+#define BLOCK_FLAG_TOP_FIELD_FIRST 0x1000
/** This block contains an interlaced picture with bottom field stored first */
-#define BLOCK_FLAG_BOTTOM_FIELD_FIRST 0x1000
+#define BLOCK_FLAG_BOTTOM_FIELD_FIRST 0x2000
/** This block contains a single field from interlaced picture. */
-#define BLOCK_FLAG_SINGLE_FIELD 0x2000
+#define BLOCK_FLAG_SINGLE_FIELD 0x4000
/** This block contains an interlaced picture */
#define BLOCK_FLAG_INTERLACED_MASK \
More information about the vlc-commits
mailing list