[FFmpeg-cvslog] avcodec/codec: Reorder elements to make AVCodec smaller
Andreas Rheinhardt
git at videolan.org
Thu Aug 26 02:05:35 EEST 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Wed Aug 4 16:09:24 2021 +0200| [417bd4f7dd885b3a5134eb8f86833946bf51afa7] | committer: Andreas Rheinhardt
avcodec/codec: Reorder elements to make AVCodec smaller
Reordering max_lowres is an ABI break.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=417bd4f7dd885b3a5134eb8f86833946bf51afa7
---
libavcodec/codec.h | 13 +++++++------
1 file 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
More information about the ffmpeg-cvslog
mailing list