|
Revision 10053, 373 bytes
(checked in by robert, 4 years ago)
|
|
Removed #ifdef WIN32 around #include <errno.h> to fix build under Mandrake build.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | #ifndef HEADER_GUARD_FFMPEG_HEADERS_H |
|---|
| 3 | #define HEADER_GUARD_FFMPEG_HEADERS_H |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | extern "C" |
|---|
| 7 | { |
|---|
| 8 | #define __STDC_CONSTANT_MACROS |
|---|
| 9 | #include <errno.h> // for error codes defined in avformat.h |
|---|
| 10 | #include <stdint.h> |
|---|
| 11 | #include <avcodec.h> |
|---|
| 12 | #include <avformat.h> |
|---|
| 13 | #include <avdevice.h> |
|---|
| 14 | |
|---|
| 15 | #ifdef USE_SWSCALE |
|---|
| 16 | #include <swscale.h> |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | #endif // HEADER_GUARD_FFMPEG_HEADERS_H |
|---|