view 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 source

// 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