diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-09-12 22:33:40 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-09-12 22:33:40 +0000 |
commit | 48fe9238a0aec437aa9ab9a8912191d163feb519 (patch) | |
tree | ec43ad53e68698ac682b333b59df3fbad4d60ad4 | |
parent | c3922c65b596b1f55ff3c2778843590b5974ea4d (diff) | |
download | ffmpeg-48fe9238a0aec437aa9ab9a8912191d163feb519.tar.gz |
a little bit more bitstream syntax for the residual
Originally committed as revision 10483 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/snow.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/snow.txt b/doc/snow.txt index ccea56e618..eaf34079b5 100644 --- a/doc/snow.txt +++ b/doc/snow.txt @@ -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 |