OSDN Git Service

a little bit more bitstream syntax for the residual
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 12 Sep 2007 22:33:40 +0000 (22:33 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 12 Sep 2007 22:33:40 +0000 (22:33 +0000)
Originally committed as revision 10483 to svn://svn.ffmpeg.org/ffmpeg/trunk

doc/snow.txt

index ccea56e..eaf3407 100644 (file)
@@ -129,6 +129,20 @@ block(level):
 
 
 residual:
+    residual2(luma)
+    residual2(chroma_cr)
+    residual2(chroma_cb)
+
+residual2:
+    for(level=0; level<spatial_decomposition_count; level++){
+        if(level==0)
+            subband(LL, 0)
+        subband(HL, level)
+        subband(LH, level)
+        subband(HH, level)
+    }
+
+subband:
     FIXME