1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

Add multiple inclusion guards.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24176 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-08-25 13:18:29 +00:00
parent 6c2ee72a4c
commit ea338264f4

View File

@ -1,3 +1,6 @@
#ifndef FMT_CONVERSION_H
#define FMT_CONVERSION_H
#ifdef USE_LIBAVUTIL_SO
#include <ffmpeg/avutil.h>
#else
@ -68,3 +71,5 @@ enum PixelFormat imgfmt2pixfmt(int fmt)
return PIX_FMT_NONE;
}
#endif /* FMT_CONVERSION_H */