Commit 2bef1a83 authored by Ronald S. Bultje's avatar Ronald S. Bultje

dsputil: remove some never-assigned function pointers from the struct.

parent 32ff6432
...@@ -276,7 +276,7 @@ typedef struct DSPContext { ...@@ -276,7 +276,7 @@ typedef struct DSPContext {
* @param line_size number of bytes in a horizontal line of block * @param line_size number of bytes in a horizontal line of block
* @param h height * @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. * Halfpel motion compensation with no rounding (a+b)>>1.
...@@ -306,7 +306,6 @@ typedef struct DSPContext { ...@@ -306,7 +306,6 @@ typedef struct DSPContext {
qpel_mc_func put_qpel_pixels_tab[2][16]; qpel_mc_func put_qpel_pixels_tab[2][16];
qpel_mc_func avg_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 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]; qpel_mc_func put_mspel_pixels_tab[8];
/** /**
...@@ -316,7 +315,7 @@ typedef struct DSPContext { ...@@ -316,7 +315,7 @@ typedef struct DSPContext {
h264_chroma_mc_func avg_h264_chroma_pixels_tab[3]; h264_chroma_mc_func avg_h264_chroma_pixels_tab[3];
qpel_mc_func put_h264_qpel_pixels_tab[4][16]; 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]; me_cmp_func pix_abs[2][4];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment