better max for frame code values, still allowing compact implementation

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17826 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ods15 2006-03-12 13:30:45 +00:00
parent 9d6ad5ab21
commit 20a1d14b63
1 changed files with 5 additions and 5 deletions

View File

@ -516,20 +516,20 @@ flags[frame_code], frame_flags
its pts differs by more then max_pts_distance from the last frame
stream_id_plus1[frame_code]
must be <250
MUST be <256
if it is 0, then the stream_id is coded in the frame
data_size_mul[frame_code]
must be <16384
MUST be <65536
data_size_lsb[frame_code]
must be <16384
MUST be <65536
pts_delta[frame_code]
must be <16384 and >-16384
MUST be <32768 and >-32768
reserved_count[frame_code]
must be <256
MUST be <256
data_size
data_size= data_size_lsb + data_size_msb*data_size_mul;