diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/third_party/ffmpeg/ffmpeg.h	Sun Jan 25 10:44:04 2026 -0800
@@ -0,0 +1,18 @@
+// FFmpeg library wrapper header
+// This is a placeholder for projects that want to use libavcodec/libavformat directly
+// Most projects should use ffmpeg_cli.h instead which shells out to the ffmpeg binary
+
+#ifndef FFMPEG_WRAPPER_H
+#define FFMPEG_WRAPPER_H
+
+// Include FFmpeg headers when using the library directly
+// Uncomment these when building with FFmpeg libraries linked
+/*
+#include <libavcodec/avcodec.h>
+#include <libavformat/avformat.h>
+#include <libavutil/avutil.h>
+#include <libswscale/swscale.h>
+#include <libswresample/swresample.h>
+*/
+
+#endif // FFMPEG_WRAPPER_H