changeset 17612:99b6205ff32c

Make 'N' frame code implictly invalid
author ods15
date Sun, 12 Feb 2006 17:40:02 +0000
parents 831762e82a47
children 03a832d43fe5
files DOCS/tech/mpcf.txt
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/tech/mpcf.txt	Sun Feb 12 17:01:30 2006 +0000
+++ b/DOCS/tech/mpcf.txt	Sun Feb 12 17:40:02 2006 +0000
@@ -151,6 +151,11 @@
             tmp_reserved[i]             v
         }
         for(j=0; j<count && i<256; j++, i++){
+            if (i == 'N') {
+                flags[i]= 4;
+                j--;
+                continue;
+            }
             flags[i]= tmp_flag;
             stream_flags[i]= tmp_sflag;
             stream_id_plus1[i]= tmp_stream;
@@ -469,8 +474,6 @@
       2  more_flags       if set, stream control flags are at frame header.
       4  invalid          if set, frame_code is invalid.
 
-    frame_code=78 ('N') MUST have flags=64
-
 stream_flags
     stream_flags is "stream_flags[frame_code] ^ coded_stream_flags"