X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Favcodec.h;h=4414853e8450eec6acb1673a2f78076205f7f3dc;hb=2e8b0446c6798947dac77fee4a06f9c4e8131ab5;hp=92567ec6d0bc94139841e650b7afe0c5a6b40a90;hpb=90ab9a58ff697e0a7bfd89715cba5a8fb4074b35;p=ffmpeg diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 92567ec6d0b..4414853e845 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1118,17 +1118,29 @@ typedef struct AVCPBProperties { * Maximum bitrate of the stream, in bits per second. * Zero if unknown or unspecified. */ +#if FF_API_UNSANITIZED_BITRATES int max_bitrate; +#else + int64_t max_bitrate; +#endif /** * Minimum bitrate of the stream, in bits per second. * Zero if unknown or unspecified. */ +#if FF_API_UNSANITIZED_BITRATES int min_bitrate; +#else + int64_t min_bitrate; +#endif /** * Average bitrate of the stream, in bits per second. * Zero if unknown or unspecified. */ +#if FF_API_UNSANITIZED_BITRATES int avg_bitrate; +#else + int64_t avg_bitrate; +#endif /** * The size of the buffer to which the ratecontrol is applied, in bits.