diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-03-26 17:00:21 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-04-19 23:29:22 +0300 |
commit | c443117f25e034c1e3ef35334b61b937e1e208ff (patch) | |
tree | 4f5856e6a47c58687cbe08863ea4486f313e7ad0 /libavcodec/dsputil.h | |
parent | 54cd5e4f92de6bd0fb8e24069153b0156c8136bc (diff) | |
download | ffmpeg-c443117f25e034c1e3ef35334b61b937e1e208ff.tar.gz |
dsputil: Remove dct_bits
dct_bits is never set except in h264, where it is never used,
thus remove it.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 105305664e..029591b171 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -125,11 +125,6 @@ void ff_init_scantable_permutation(uint8_t *idct_permutation, * DSPContext. */ typedef struct DSPContext { - /** - * Size of DCT coefficients. - */ - int dct_bits; - /* pixel ops : interface with DCT */ void (*get_pixels)(int16_t *block/*align 16*/, const uint8_t *pixels/*align 8*/, int line_size); void (*diff_pixels)(int16_t *block/*align 16*/, const uint8_t *s1/*align 8*/, const uint8_t *s2/*align 8*/, int stride); |