From 667f6320b03b6509365e6aa0c6b8134c2842e14c Mon Sep 17 00:00:00 2001 From: hui su Date: Mon, 9 May 2016 16:43:02 -0700 Subject: [PATCH] Fix comment for target_bandwidth in VP9 and VP10 Unlike in VP8, it is in units of bits per second in VP9 and VP10. Change-Id: Iee1936cc58cdfaff205624c2fe87cecdf7eda123 --- vp10/encoder/encoder.h | 2 +- vp9/encoder/vp9_encoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vp10/encoder/encoder.h b/vp10/encoder/encoder.h index bd6a00932..2cd1d3c4f 100644 --- a/vp10/encoder/encoder.h +++ b/vp10/encoder/encoder.h @@ -129,7 +129,7 @@ typedef struct VP10EncoderConfig { int height; // height of data passed to the compressor unsigned int input_bit_depth; // Input bit depth. double init_framerate; // set to passed in framerate - int64_t target_bandwidth; // bandwidth to be used in kilobits per second + int64_t target_bandwidth; // bandwidth to be used in bits per second int noise_sensitivity; // pre processing blur: recommendation 0 int sharpness; // sharpening output: recommendation 0: diff --git a/vp9/encoder/vp9_encoder.h b/vp9/encoder/vp9_encoder.h index 8a5c4f40b..add4102d6 100644 --- a/vp9/encoder/vp9_encoder.h +++ b/vp9/encoder/vp9_encoder.h @@ -129,7 +129,7 @@ typedef struct VP9EncoderConfig { int height; // height of data passed to the compressor unsigned int input_bit_depth; // Input bit depth. double init_framerate; // set to passed in framerate - int64_t target_bandwidth; // bandwidth to be used in kilobits per second + int64_t target_bandwidth; // bandwidth to be used in bits per second int noise_sensitivity; // pre processing blur: recommendation 0 int sharpness; // sharpening output: recommendation 0: