diff options
author | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-02-14 11:37:38 +0000 |
---|---|---|
committer | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-02-14 11:37:38 +0000 |
commit | 25f37785186f9593fd9116131d91e82189cdfd5e (patch) | |
tree | 3bb6771ae8c71bd7166f31d371619abfc924a82e /DOCS/tech | |
parent | 7efba7825ee3408f0ec53e3be63a243ace6c6f93 (diff) |
subpacket_base_size isnt needed for fixed sized subpackets
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9422 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/tech')
-rw-r--r-- | DOCS/tech/mpcf.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/DOCS/tech/mpcf.txt b/DOCS/tech/mpcf.txt index c5235d206d..de4a324ed1 100644 --- a/DOCS/tech/mpcf.txt +++ b/DOCS/tech/mpcf.txt @@ -134,10 +134,10 @@ frame if(sub_packet_type==00) sub_packet[0] else{ - subpacket_base_size v subpacket_count v shuffle_type v if(subpacket_type==10){ + subpacket_base_size v for(i=0; i<subpacket_count; i++) subpacket_size_diff[i] v } @@ -295,10 +295,11 @@ subpacket_type be put in a single packet subpacket_base_size - the size of the subpackets for fixed fize subpackets an offset which should be added to the subpacket_size_diff of each subpacket to get the actual size, so its normally the size of the smallest subpacket + for fixed length subpackets, the size is calculated from the + subpacket_count subpacket_count the number of subpackets, if not pressent then 1 |