summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authortripp <eliared@yahoo.com>2008-07-21 20:52:24 +0000
committerDiego Biurrun <diego@biurrun.de>2008-07-21 20:52:24 +0000
commit662e54119c8169f4e7e76d4393c2b15628a30975 (patch)
tree383192154146ffffb7af9085b4db507012db49b9 /libavcodec/avcodec.h
parent9c56a1f9f4e2cce244d85098cf40bca70ca478f0 (diff)
Correct b_quant offset comment in avcodec.h, it is the description for
b_quant factor. patch by tripp, eliared yahoo com Originally committed as revision 14328 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 4942ab1ee1..ed267bbf0d 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -990,6 +990,8 @@ typedef struct AVCodecContext {
/**
* qscale factor between IP and B-frames
+ * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
+ * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
* - encoding: Set by user.
* - decoding: unused
*/
@@ -1135,8 +1137,6 @@ typedef struct AVCodecContext {
/**
* qscale offset between IP and B-frames
- * If > 0 then the last P-frame quantizer will be used (q= lastp_q*factor+offset).
- * If < 0 then normal ratecontrol will be done (q= -normal_q*factor+offset).
* - encoding: Set by user.
* - decoding: unused
*/