diff options
author | Måns Rullgård <mans@mansr.com> | 2010-07-10 22:12:38 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-07-10 22:12:38 +0000 |
commit | 6a01eab73c297d89c7676bddfc32d5f796ae7950 (patch) | |
tree | 432d85f8bbb73da2cdcded789f8074a802fb48a2 /libswscale/rgb2rgb.c | |
parent | 8fc0162ac44f3e60798552ca6d19387be95cae4c (diff) | |
download | ffmpeg-6a01eab73c297d89c7676bddfc32d5f796ae7950.tar.gz |
Add av_ prefix to bswap macros
Originally committed as revision 31679 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb.c')
-rw-r--r-- | libswscale/rgb2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c index 983944de22..f92e165c6b 100644 --- a/libswscale/rgb2rgb.c +++ b/libswscale/rgb2rgb.c @@ -231,7 +231,7 @@ void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const ui { long i; for (i=0; i<num_pixels; i++) - ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]); + ((uint16_t *)dst)[i] = av_bswap16(((const uint16_t *)palette)[src[i]]); } #endif |