diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-03 12:04:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-03 12:04:37 +0200 |
commit | 5a63fb66936a2732b9d59edf3cebc4b6291f5d08 (patch) | |
tree | 97184fab232f0f86119a32b79c625e1b4f1df358 /libavcodec/avcodec.h | |
parent | c4f3b55f507955a5db45802b09a1a38ff7f8bb8d (diff) | |
parent | 451606f7ce7e22aef989da3af49c48b663065d70 (diff) | |
download | ffmpeg-5a63fb66936a2732b9d59edf3cebc4b6291f5d08.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
lavc: mark deprecated AVCodec.max_lowres for removal on next bump
Conflicts:
libavcodec/avcodec.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 1ae89d5aed..2cf30dd92a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2932,7 +2932,9 @@ typedef struct AVCodec { 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 +#if FF_API_LOWRES uint8_t max_lowres; ///< maximum value for lowres supported by the decoder +#endif 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} |