diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 18:15:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-23 18:15:29 +0100 |
commit | 1e7a92f219a8e245128773491346d64c1e6c85fa (patch) | |
tree | 45b9df7bd1bab1b34920165d20802068d3f37bf1 /libavcodec/dsputil.h | |
parent | f900fd5d31dcabc138a0f96511ddbf8e9a279765 (diff) | |
parent | baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76 (diff) | |
download | ffmpeg-1e7a92f219a8e245128773491346d64c1e6c85fa.tar.gz |
Merge commit 'baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76'
* commit 'baf35bb4bc4fe7a2a4113c50989d11dd9ef81e76':
dsputil: remove one array dimension from avg_no_rnd_pixels_tab.
Conflicts:
libavcodec/x86/dsputil_mmx.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 8f1356eb02..952c0690ad 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -305,7 +305,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. |