From 8fc0162ac44f3e60798552ca6d19387be95cae4c Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sat, 10 Jul 2010 22:12:30 +0000 Subject: Add av_ prefix to bswap macros Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/alsdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/alsdec.c') diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index 7bf574a9f6..bbcbb70652 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -1464,7 +1464,7 @@ static int decode_frame(AVCodecContext *avctx, int32_t v; if (swap) - v = bswap_32(src[sample]); + v = av_bswap32(src[sample]); else v = src[sample]; if (!HAVE_BIGENDIAN) @@ -1482,7 +1482,7 @@ static int decode_frame(AVCodecContext *avctx, for (sample = 0; sample < ctx->cur_frame_length * avctx->channels; sample++) - *dest++ = bswap_16(src[sample]); + *dest++ = av_bswap16(src[sample]); } else { ctx->dsp.bswap_buf((uint32_t*)ctx->crc_buffer, data, ctx->cur_frame_length * avctx->channels); -- cgit v1.2.3