comparison third_party/ffmpeg/ffmpeg.h @ 217:7ef4c9d2a72d hg-web

[DO NOT PUSH] Random values.
author MrJuneJune <me@mrjunejune.com>
date Sun, 25 Jan 2026 10:44:04 -0800
parents
children
comparison
equal deleted inserted replaced
192:b818a4561a3c 217:7ef4c9d2a72d
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