1
mirror of https://github.com/mpv-player/mpv synced 2024-10-14 11:54:36 +02:00

Disable function that is only used in disabled code, fixes warning:

yuv4mpeg.c:147: warning: 'y4m_snprint_xtags' defined but not used


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24887 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-10-30 08:06:39 +00:00
parent 4f01d9c698
commit 33772c1065

View File

@ -143,6 +143,7 @@ void y4m_copy_xtag_list(y4m_xtag_list_t *dest, const y4m_xtag_list_t *src)
#if 0
static int y4m_snprint_xtags(char *s, int maxn, y4m_xtag_list_t *xtags)
{
int i, room;
@ -157,6 +158,7 @@ static int y4m_snprint_xtags(char *s, int maxn, y4m_xtag_list_t *xtags)
s[1] = '\0'; /* ...and end-of-string */
return Y4M_OK;
}
#endif
int y4m_xtag_count(const y4m_xtag_list_t *xtags)