|
|
@@ -2933,7 +2933,7 @@ typedef struct AVCodec { |
|
|
|
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 |
|
|
|
uint8_t max_lowres; ///< maximum value for lowres supported by the decoder, no direct access, use av_codec_get_max_lowres() |
|
|
|
#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} |
|
|
@@ -3001,6 +3001,8 @@ typedef struct AVCodec { |
|
|
|
void (*flush)(AVCodecContext *); |
|
|
|
} AVCodec; |
|
|
|
|
|
|
|
int av_codec_get_max_lowres(const AVCodec *codec); |
|
|
|
|
|
|
|
/** |
|
|
|
* AVHWAccel. |
|
|
|
*/ |
|
|
|