1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-17 05:01:41 +02:00

vlc_block.h: Clarify usage of BLOCK_FLAG_DISCONTINUITY

The BLOCK_FLAG_DISCONTINUITY signals timeline changes from the source content or due to seeking.
BLOCK_FLAG_CORRUPTION signals data corruption due to corrupted or dropped packets, this includes
transport stream continuity counter mismatches.

Signed-off-by: Ilkka Ollakka <ileoo@videolan.org>
This commit is contained in:
Jean-Paul Saman 2015-09-20 10:37:57 +02:00 committed by Ilkka Ollakka
parent 36cacea667
commit de4be0a450

View File

@ -51,7 +51,8 @@
* optimised for preheader/postdatas increase)
****************************************************************************/
/** The content doesn't follow the last block, or is probably broken */
/** The content doesn't follow the last block and indicates a timeline change
* without data loss or corruption */
#define BLOCK_FLAG_DISCONTINUITY 0x0001
/** Intra frame */
#define BLOCK_FLAG_TYPE_I 0x0002