diff options
author | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-03-11 15:26:39 +0000 |
---|---|---|
committer | ods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-03-11 15:26:39 +0000 |
commit | 9dd489f4bcc5b5559e7c5f00449c3dade27ea57b (patch) | |
tree | 5b28273a2fe6ddd1c2a07a3678cfa783d0aa4b5e /DOCS/tech | |
parent | c43a1f00e90befa44fb869e47cc494232bf7b6ab (diff) | |
download | mpv-9dd489f4bcc5b5559e7c5f00449c3dade27ea57b.tar.bz2 mpv-9dd489f4bcc5b5559e7c5f00449c3dade27ea57b.tar.xz |
move bit flags to be more convinient...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17810 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/tech')
-rw-r--r-- | DOCS/tech/mpcf.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/DOCS/tech/mpcf.txt b/DOCS/tech/mpcf.txt index 7b7c0736a3..2e8ea4c690 100644 --- a/DOCS/tech/mpcf.txt +++ b/DOCS/tech/mpcf.txt @@ -497,14 +497,14 @@ frame_code flags[frame_code], frame_flags Bit Name Description - 1 FLAG_SIZE_MSB if set, data_size_msb is at frame header, - otherwise data_size_msb is 0 - 2 FLAG_CHECKSUM if set then the frame header contains a checksum - 4 FLAG_KEY if set, frame is keyframe - 8 FLAG_EOR if set, stream has no relevance on - presentation. (EOR) - 256 FLAG_CODED if set, coded_flags are stored in the frame header. - 512 FLAG_INVALID if set, frame_code is invalid. + 1 FLAG_KEY if set, frame is keyframe + 2 FLAG_EOR if set, stream has no relevance on + 32 FLAG_SIZE_MSB if set, data_size_msb is at frame header, + otherwise data_size_msb is 0 + 64 FLAG_CHECKSUM if set then the frame header contains a checksum + presentation. (EOR) + 4096 FLAG_CODED if set, coded_flags are stored in the frame header. + 8192 FLAG_INVALID if set, frame_code is invalid. EOR frames MUST be zero-length and must be set keyframe. All streams SHOULD end with EOR, where the pts of the EOR indicates the |