diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-21 18:51:52 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-22 18:41:36 -0800 |
commit | 2bef1a83d7a3ca60b161ab90bf4d4338e5def5e7 (patch) | |
tree | 06c82f880f5cb72212d469075050455f2cc1d688 | |
parent | 32ff6432284f713e9f837ee5b36fc8e9f1902836 (diff) | |
download | ffmpeg-streaming-2bef1a83d7a3ca60b161ab90bf4d4338e5def5e7.zip ffmpeg-streaming-2bef1a83d7a3ca60b161ab90bf4d4338e5def5e7.tar.gz |
dsputil: remove some never-assigned function pointers from the struct.
-rw-r--r-- | libavcodec/dsputil.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index e069ea1..f691961 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -276,7 +276,7 @@ typedef struct DSPContext { * @param line_size number of bytes in a horizontal line of block * @param h height */ - op_pixels_func put_no_rnd_pixels_tab[4][4]; + op_pixels_func put_no_rnd_pixels_tab[2][4]; /** * Halfpel motion compensation with no rounding (a+b)>>1. @@ -306,7 +306,6 @@ typedef struct DSPContext { qpel_mc_func put_qpel_pixels_tab[2][16]; qpel_mc_func avg_qpel_pixels_tab[2][16]; qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16]; - qpel_mc_func avg_no_rnd_qpel_pixels_tab[2][16]; qpel_mc_func put_mspel_pixels_tab[8]; /** @@ -316,7 +315,7 @@ typedef struct DSPContext { h264_chroma_mc_func avg_h264_chroma_pixels_tab[3]; qpel_mc_func put_h264_qpel_pixels_tab[4][16]; - qpel_mc_func avg_h264_qpel_pixels_tab[4][16]; + qpel_mc_func avg_h264_qpel_pixels_tab[3][16]; me_cmp_func pix_abs[2][4]; |