Mercurial > mplayer.hg
annotate fmt-conversion.h @ 30172:fbff89bae6a4
Remove previous failed attempt at disabling that auto-generation of some C code.
This reverts the previous buggy commit, r30094.
author | diego |
---|---|
date | Mon, 04 Jan 2010 20:53:57 +0000 |
parents | 1d39794263eb |
children | c1a3f1bbba26 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_FMT_CONVERSION_H |
2 #define MPLAYER_FMT_CONVERSION_H | |
24156 | 3 |
30166
1d39794263eb
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
28526
diff
changeset
|
4 #include "config.h" |
26069
1318e956c092
FFmpeg now uses different (unified) #include paths.
diego
parents:
26029
diff
changeset
|
5 #include "libavutil/avutil.h" |
19872 | 6 |
28526
21efa4282730
Create a fmt-conversion.c file so fmt-conversion.h can be included by multiple files.
reimar
parents:
27601
diff
changeset
|
7 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
|
8 int pixfmt2imgfmt(enum PixelFormat pix_fmt); |
24156 | 9 |
26029 | 10 #endif /* MPLAYER_FMT_CONVERSION_H */ |