[FFmpeg-cvslog] dct-test: fix incompatible pointer types warning

Michael Niedermayer git at videolan.org
Mon Apr 2 23:11:42 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Apr  2 21:26:08 2012 +0200| [e0541c7b5ef787aad4bada0a56bae4b136899baf] | committer: Michael Niedermayer

dct-test: fix incompatible pointer types warning

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e0541c7b5ef787aad4bada0a56bae4b136899baf
---

 libavcodec/dct-test.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 16b32ca..9e023ab 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -103,7 +103,7 @@ static const struct algo fdct_tab[] = {
 void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
                                 DCTELEM *block, int16_t *qmat);
 
-static void ff_prores_idct_put_10_sse2_wrap(uint16_t *dst){
+static void ff_prores_idct_put_10_sse2_wrap(DCTELEM *dst){
     int16_t qmat[64]; int i;
     int16_t tmp[64];
 



More information about the ffmpeg-cvslog mailing list