From: hui su Date: Mon, 9 May 2016 23:43:02 +0000 (-0700) Subject: Fix comment for target_bandwidth in VP9 and VP10 X-Git-Tag: v1.6.0~144^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=667f6320b03b6509365e6aa0c6b8134c2842e14c;p=libvpx 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 --- 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: