diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 19:54:25 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:56 +0200 |
commit | 17e23aed41c37e130ec38b9f682c5cde990eefcc (patch) | |
tree | 3a6fbfa135fe1e4ed0a4a7b49eb99097532356d0 /libavcodec | |
parent | 6be4b534ce83d28382209991b9441d3c64ca4472 (diff) | |
download | ffmpeg-17e23aed41c37e130ec38b9f682c5cde990eefcc.tar.gz |
avcodec/internal: Move ff_get_format() to decode.h
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/decode.h | 13 | ||||
-rw-r--r-- | libavcodec/h263dec.c | 1 | ||||
-rw-r--r-- | libavcodec/internal.h | 13 | ||||
-rw-r--r-- | libavcodec/mediacodecdec_common.c | 1 | ||||
-rw-r--r-- | libavcodec/pthread_frame.c | 1 | ||||
-rw-r--r-- | libavcodec/utils.c | 1 | ||||
-rw-r--r-- | libavcodec/vc1dec.c | 1 | ||||
-rw-r--r-- | libavcodec/vp8.c | 1 |
8 files changed, 19 insertions, 13 deletions
diff --git a/libavcodec/decode.h b/libavcodec/decode.h index f7828fbff4..81767f73fd 100644 --- a/libavcodec/decode.h +++ b/libavcodec/decode.h @@ -99,4 +99,17 @@ int ff_copy_palette(void *dst, const AVPacket *src, void *logctx); */ int ff_decode_preinit(AVCodecContext *avctx); +/** + * Select the (possibly hardware accelerated) pixel format. + * This is a wrapper around AVCodecContext.get_format() and should be used + * instead of calling get_format() directly. + * + * The list of pixel formats must contain at least one valid entry, and is + * terminated with AV_PIX_FMT_NONE. If it is possible to decode to software, + * the last entry in the list must be the most accurate software format. + * If it is not possible to decode to software, AVCodecContext.sw_pix_fmt + * must be set before calling this function. + */ +int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt); + #endif /* AVCODEC_DECODE_H */ diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 8728cfa6e9..87fbf87c8a 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -31,6 +31,7 @@ #include "avcodec.h" #include "codec_internal.h" +#include "decode.h" #include "error_resilience.h" #include "flvdec.h" #include "h263.h" diff --git a/libavcodec/internal.h b/libavcodec/internal.h index e8c24d81bd..1d80fb03dc 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -249,19 +249,6 @@ int ff_side_data_update_matrix_encoding(AVFrame *frame, enum AVMatrixEncoding matrix_encoding); /** - * Select the (possibly hardware accelerated) pixel format. - * This is a wrapper around AVCodecContext.get_format() and should be used - * instead of calling get_format() directly. - * - * The list of pixel formats must contain at least one valid entry, and is - * terminated with AV_PIX_FMT_NONE. If it is possible to decode to software, - * the last entry in the list must be the most accurate software format. - * If it is not possible to decode to software, AVCodecContext.sw_pix_fmt - * must be set before calling this function. - */ -int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt); - -/** * Add a CPB properties side data to an encoding context. */ AVCPBProperties *ff_add_cpb_side_data(AVCodecContext *avctx); diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c index cb18aed401..7952c3c34c 100644 --- a/libavcodec/mediacodecdec_common.c +++ b/libavcodec/mediacodecdec_common.c @@ -32,6 +32,7 @@ #include "libavutil/timestamp.h" #include "avcodec.h" +#include "decode.h" #include "internal.h" #include "mediacodec.h" diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 726bd1bcc7..08a6f98898 100644 --- a/libavcodec/pthread_frame.c +++ b/libavcodec/pthread_frame.c @@ -29,6 +29,7 @@ #include "avcodec.h" #include "codec_internal.h" +#include "decode.h" #include "hwconfig.h" #include "internal.h" #include "pthread_internal.h" diff --git a/libavcodec/utils.c b/libavcodec/utils.c index e73e3a7d08..2f57418ff7 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -36,6 +36,7 @@ #include "avcodec.h" #include "codec.h" #include "codec_internal.h" +#include "decode.h" #include "hwconfig.h" #include "thread.h" #include "threadframe.h" diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index b53490b3ab..065b43cb11 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -31,6 +31,7 @@ #include "avcodec.h" #include "blockdsp.h" #include "codec_internal.h" +#include "decode.h" #include "get_bits.h" #include "hwconfig.h" #include "internal.h" diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 7a151feb79..6bf846dbfe 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -31,6 +31,7 @@ #include "avcodec.h" #include "codec_internal.h" +#include "decode.h" #include "hwconfig.h" #include "internal.h" #include "mathops.h" |