1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 08:37:59 +00:00

vd_ffmpeg: add av_unused attribute to swap_palette()

Only used on bigendian machines.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31586 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-06-29 12:13:57 +00:00 committed by Uoti Urpala
parent d4aefd6d74
commit e2dea75e4a

View File

@ -707,7 +707,7 @@ typedef struct dp_hdr_s {
uint32_t chunktab; // offset to chunk offset array
} dp_hdr_t;
static void swap_palette(void *pal)
static av_unused void swap_palette(void *pal)
{
int i;
uint32_t *p = pal;