diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-22 11:27:57 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-22 18:41:36 -0800 |
commit | baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76 (patch) | |
tree | c010430f64be0e74aa1d5e552ee75a70b87de8d0 /libavcodec/dsputil.h | |
parent | 2612c4dc78e1750c4653bf5a9f2cbe95f7b4ed6e (diff) | |
download | ffmpeg-baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76.tar.gz |
dsputil: remove one array dimension from avg_no_rnd_pixels_tab.
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index f69196143c..96ee5887fc 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -288,7 +288,7 @@ typedef struct DSPContext { * @param line_size number of bytes in a horizontal line of block * @param h height */ - op_pixels_func avg_no_rnd_pixels_tab[1][4]; + op_pixels_func avg_no_rnd_pixels_tab[4]; /** * Thirdpel motion compensation with rounding (a+b+1)>>1. |