Mercurial > mplayer.hg
annotate fmt-conversion.h @ 28588:7f03a6d3c941
Move FFmpeg #includes below all others so that they do not override
system functions and cause the warning:
In file included from libmpcodecs/vf_fspp.c:57:
libmpcodecs/mp_image.h: In function 'new_mp_image':
libmpcodecs/mp_image.h:214: warning: implicit declaration of function 'please_use_av_malloc'
libmpcodecs/mp_image.h: In function 'free_mp_image':
libmpcodecs/mp_image.h:226: warning: implicit declaration of function 'please_use_av_free'
author | diego |
---|---|
date | Tue, 17 Feb 2009 03:15:10 +0000 |
parents | 21efa4282730 |
children | 1d39794263eb |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_FMT_CONVERSION_H |
2 #define MPLAYER_FMT_CONVERSION_H | |
24156 | 3 |
26069
1318e956c092
FFmpeg now uses different (unified) #include paths.
diego
parents:
26029
diff
changeset
|
4 #include "libavutil/avutil.h" |
19872 | 5 |
28526
21efa4282730
Create a fmt-conversion.c file so fmt-conversion.h can be included by multiple files.
reimar
parents:
27601
diff
changeset
|
6 enum PixelFormat imgfmt2pixfmt(int fmt); |
21efa4282730
Create a fmt-conversion.c file so fmt-conversion.h can be included by multiple files.
reimar
parents:
27601
diff
changeset
|
7 int pixfmt2imgfmt(enum PixelFormat pix_fmt); |
24156 | 8 |
26029 | 9 #endif /* MPLAYER_FMT_CONVERSION_H */ |