diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 13:49:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 13:49:15 +0000 |
commit | 96711ecff9ccfe9d124548416394a86902fdc90e (patch) | |
tree | cfb1d919382af85ac743417b6277eaec95880b49 /libavcodec/dsputil.h | |
parent | 2ec38612383389fbd73267297002ff927af60f2a (diff) | |
download | ffmpeg-96711ecff9ccfe9d124548416394a86902fdc90e.tar.gz |
const src for bswap
Originally committed as revision 11732 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 c13943580a..ec0b500d0a 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -310,7 +310,7 @@ typedef struct DSPContext { * note, this might read from src1[-1], src2[-1] */ void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top); - void (*bswap_buf)(uint32_t *dst, uint32_t *src, int w); + void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w); void (*h264_v_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0); void (*h264_h_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0); |