vlc | branch: master | Francois Cartegnie <[email protected]> | 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 \ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
