diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-22 23:47:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-22 23:47:59 +0000 |
commit | 6a339972af7b68708a31c1edc9050727ab0eeaf7 (patch) | |
tree | d67d3bd3b56bd5dac965647c9aa34d9a8e43532b | |
parent | 07bf0cc9cf386a622fa27c9dc82fbeb11dff7c08 (diff) | |
download | ffmpeg-6a339972af7b68708a31c1edc9050727ab0eeaf7.tar.gz |
Remove unused variables in test code.
Originally committed as revision 11599 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/snow.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index 64504fec47..eedfe12cfd 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -4883,9 +4883,8 @@ int64_t g=0; printf("};\n"); { int level=2; - int orientation=3; int w= width >> (s.spatial_decomposition_count-level); - int h= height >> (s.spatial_decomposition_count-level); + //int h= height >> (s.spatial_decomposition_count-level); int stride= width << (s.spatial_decomposition_count-level); DWTELEM *buf= buffer[0]; int64_t error=0; |