diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-29 19:11:47 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-01-29 19:11:47 +0000 |
commit | 800274f8716ed4254d889e7c739b45ba1940147e (patch) | |
tree | 7ad5b95d93ebb59c6fe3e4816630abfc5a06bf9e /libavcodec/vp56.h | |
parent | 5e4e9042c4e11bcf4fd1734f17e0379eab422e41 (diff) | |
download | ffmpeg-800274f8716ed4254d889e7c739b45ba1940147e.tar.gz |
Make VP5 and VP6 decoders output a qscale table to allow for more automatic
post-processing, and add a new FF_QSCALE_TYPE_VP56 for this.
Originally committed as revision 21529 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index e0dc41c4c6..fab9d1d9d1 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -110,6 +110,7 @@ struct vp56_context { int quantizer; uint16_t dequant_dc; uint16_t dequant_ac; + int8_t *qscale_table; /* DC predictors management */ VP56RefDc *above_blocks; |