diff options
Diffstat (limited to 'contrib/ffmpeg/libavcodec/ratecontrol.h')
-rw-r--r-- | contrib/ffmpeg/libavcodec/ratecontrol.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/ffmpeg/libavcodec/ratecontrol.h b/contrib/ffmpeg/libavcodec/ratecontrol.h index c428923a5..8704b4301 100644 --- a/contrib/ffmpeg/libavcodec/ratecontrol.h +++ b/contrib/ffmpeg/libavcodec/ratecontrol.h @@ -20,14 +20,16 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_RATECONTROL_H -#define AVCODEC_RATECONTROL_H +#ifndef FFMPEG_RATECONTROL_H +#define FFMPEG_RATECONTROL_H /** * @file ratecontrol.h * ratecontrol header. */ +#include <stdio.h> +#include <stdint.h> #include "eval.h" typedef struct Predictor{ @@ -99,5 +101,5 @@ int ff_xvid_rate_control_init(struct MpegEncContext *s); void ff_xvid_rate_control_uninit(struct MpegEncContext *s); float ff_xvid_rate_estimate_qscale(struct MpegEncContext *s, int dry_run); -#endif /* AVCODEC_RATECONTROL_H */ +#endif /* FFMPEG_RATECONTROL_H */ |