Browse code

avfilter/internal: add fixme to ff_norm_qscale() to document obvious scaling issue

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2015/01/10 10:27:49
Showing 1 changed files
... ...
@@ -377,6 +377,8 @@ void ff_filter_graph_remove_filter(AVFilterGraph *graph, AVFilterContext *filter
377 377
 
378 378
 /**
379 379
  * Normalize the qscale factor
380
+ * FIXME the H264 qscale is a log based scale, mpeg1/2 is not, the code below
381
+ *       cannot be optimal
380 382
  */
381 383
 static inline int ff_norm_qscale(int qscale, int type)
382 384
 {