diff src/madplug/decoder.c @ 676:1733b12ef974 trunk

[svn] - show dynamic bitrate for vbr is off by default. now it is configurable from preferences.
author yaz
date Mon, 19 Feb 2007 19:39:42 -0800
parents fadf4c18a1cf
children 6ea974a229a8
line wrap: on
line diff
--- a/src/madplug/decoder.c	Mon Feb 19 18:53:25 2007 -0800
+++ b/src/madplug/decoder.c	Mon Feb 19 19:39:42 2007 -0800
@@ -515,7 +515,7 @@
 
             info->bitrate = frame.header.bitrate;
 
-            if (info->vbr && (iteration % 40 == 0)) {
+            if (!audmad_config.show_avg_vbr_bitrate && info->vbr && (iteration % 40 == 0)) {
                 mad_plugin->set_info(info->title,
                                      tlen == 0 ? -1 : tlen,
                                      info->bitrate, info->freq, info->channels);