|
217
|
1 // FFmpeg library wrapper header
|
|
|
2 // This is a placeholder for projects that want to use libavcodec/libavformat directly
|
|
|
3 // Most projects should use ffmpeg_cli.h instead which shells out to the ffmpeg binary
|
|
|
4
|
|
|
5 #ifndef FFMPEG_WRAPPER_H
|
|
|
6 #define FFMPEG_WRAPPER_H
|
|
|
7
|
|
|
8 // Include FFmpeg headers when using the library directly
|
|
|
9 // Uncomment these when building with FFmpeg libraries linked
|
|
|
10 /*
|
|
|
11 #include <libavcodec/avcodec.h>
|
|
|
12 #include <libavformat/avformat.h>
|
|
|
13 #include <libavutil/avutil.h>
|
|
|
14 #include <libswscale/swscale.h>
|
|
|
15 #include <libswresample/swresample.h>
|
|
|
16 */
|
|
|
17
|
|
|
18 #endif // FFMPEG_WRAPPER_H
|