mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
095290f9a4
AVOptions were moved to libavutil only recently.
17 lines
247 B
C
17 lines
247 B
C
/**
|
|
* @file
|
|
* This header is provided for compatibility only and will be removed
|
|
* on next major bump
|
|
*/
|
|
|
|
#ifndef AVCODEC_OPT_H
|
|
#define AVCODEC_OPT_H
|
|
|
|
#include "libavcodec/version.h"
|
|
|
|
#if FF_API_OPT_H
|
|
#include "libavutil/opt.h"
|
|
#endif
|
|
|
|
#endif
|