diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-08-05 13:15:04 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-08-26 18:34:28 +0200 |
commit | 0249478756091ab62f2d68f4d25f6b095f6723d8 (patch) | |
tree | f3128133ceb7ccaf2b4bb7d6093f7dffdb003699 /libavcodec/snow.c | |
parent | 0138a8dead3d4874aa9c6f60f64423586c69f4d4 (diff) | |
download | ffmpeg-0249478756091ab62f2d68f4d25f6b095f6723d8.tar.gz |
doxygen: fix wrong comment syntax, //< vs. ///<
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r-- | libavcodec/snow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c index b87d8285f6..2af5d234d7 100644 --- a/libavcodec/snow.c +++ b/libavcodec/snow.c @@ -3306,7 +3306,7 @@ static void update_last_header_values(SnowContext *s){ static int qscale2qlog(int qscale){ return rint(QROOT*log(qscale / (float)FF_QP2LAMBDA)/log(2)) - + 61*QROOT/8; //<64 >60 + + 61*QROOT/8; ///< 64 > 60 } static int ratecontrol_1pass(SnowContext *s, AVFrame *pict) |