You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/codec_internal: remove unnecessary avcodec.h include
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "libavutil/thread.h"
|
#include "libavutil/thread.h"
|
||||||
|
#include "avcodec.h"
|
||||||
#include "codec.h"
|
#include "codec.h"
|
||||||
#include "codec_id.h"
|
#include "codec_id.h"
|
||||||
#include "codec_internal.h"
|
#include "codec_internal.h"
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "libavutil/attributes.h"
|
#include "libavutil/attributes.h"
|
||||||
#include "avcodec.h"
|
|
||||||
#include "codec.h"
|
#include "codec.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
@ -102,6 +101,7 @@ typedef struct FFCodecDefault {
|
|||||||
struct AVCodecContext;
|
struct AVCodecContext;
|
||||||
struct AVSubtitle;
|
struct AVSubtitle;
|
||||||
struct AVPacket;
|
struct AVPacket;
|
||||||
|
enum AVCodecConfig;
|
||||||
|
|
||||||
enum FFCodecType {
|
enum FFCodecType {
|
||||||
/* The codec is a decoder using the decode callback;
|
/* The codec is a decoder using the decode callback;
|
||||||
@ -268,7 +268,7 @@ typedef struct FFCodec {
|
|||||||
* ff_default_get_supported_config() will be used. `out_num_configs` will
|
* ff_default_get_supported_config() will be used. `out_num_configs` will
|
||||||
* always be set to a valid pointer.
|
* always be set to a valid pointer.
|
||||||
*/
|
*/
|
||||||
int (*get_supported_config)(const AVCodecContext *avctx,
|
int (*get_supported_config)(const struct AVCodecContext *avctx,
|
||||||
const AVCodec *codec,
|
const AVCodec *codec,
|
||||||
enum AVCodecConfig config,
|
enum AVCodecConfig config,
|
||||||
unsigned flags,
|
unsigned flags,
|
||||||
@ -283,7 +283,7 @@ typedef struct FFCodec {
|
|||||||
* For AVCODEC_CONFIG_COLOR_RANGE, the output will depend on the bitmask in
|
* For AVCODEC_CONFIG_COLOR_RANGE, the output will depend on the bitmask in
|
||||||
* FFCodec.color_ranges, with a value of 0 returning NULL.
|
* FFCodec.color_ranges, with a value of 0 returning NULL.
|
||||||
*/
|
*/
|
||||||
int ff_default_get_supported_config(const AVCodecContext *avctx,
|
int ff_default_get_supported_config(const struct AVCodecContext *avctx,
|
||||||
const AVCodec *codec,
|
const AVCodec *codec,
|
||||||
enum AVCodecConfig config,
|
enum AVCodecConfig config,
|
||||||
unsigned flags,
|
unsigned flags,
|
||||||
|
Reference in New Issue
Block a user