summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-04 16:09:24 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-25 23:01:53 +0200
commit417bd4f7dd885b3a5134eb8f86833946bf51afa7 (patch)
treedd115b88a7e56a9cdbf9e838385698c973aad2aa /libavcodec
parent9677053884066f07821bba57a4eb0436cfec0905 (diff)
avcodec/codec: Reorder elements to make AVCodec smaller
Reordering max_lowres is an ABI break. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/codec.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/libavcodec/codec.h b/libavcodec/codec.h
index cedd106953..8f12705066 100644
--- a/libavcodec/codec.h
+++ b/libavcodec/codec.h
@@ -214,12 +214,12 @@ typedef struct AVCodec {
* see AV_CODEC_CAP_*
*/
int capabilities;
+ uint8_t max_lowres; ///< maximum value for lowres supported by the decoder
const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
const enum AVPixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
const int *supported_samplerates; ///< array of supported audio samplerates, or NULL if unknown, array is terminated by 0
const enum AVSampleFormat *sample_fmts; ///< array of supported sample formats, or NULL if unknown, array is terminated by -1
const uint64_t *channel_layouts; ///< array of support channel layouts, or NULL if unknown. array is terminated by 0
- uint8_t max_lowres; ///< maximum value for lowres supported by the decoder
const AVClass *priv_class; ///< AVClass for the private context
const AVProfile *profiles; ///< array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN}
@@ -242,6 +242,12 @@ typedef struct AVCodec {
* New public fields should be added right above.
*****************************************************************
*/
+ /**
+ * Internal codec capabilities.
+ * See FF_CODEC_CAP_* in internal.h
+ */
+ int caps_internal;
+
int priv_data_size;
/**
* @name Frame-level threading support functions
@@ -323,11 +329,6 @@ typedef struct AVCodec {
* Will be called when seeking
*/
void (*flush)(struct AVCodecContext *);
- /**
- * Internal codec capabilities.
- * See FF_CODEC_CAP_* in internal.h
- */
- int caps_internal;
/**
* Decoding only, a comma-separated list of bitstream filters to apply to