about summary refs log tree commit homepage
path: root/lib/dtas/rg_state.rb
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-01-04 09:51:41 +0000
committerEric Wong <e@80x24.org>2016-01-04 09:51:41 +0000
commit83ab812ea560f5f327ea2df00f8f0292d96b1795 (patch)
treee24674b974fc184368a6f1bf8711b5ab98a3352e /lib/dtas/rg_state.rb
parent176e3cf0d82e24b5f019a4ed0ac4f56f62edd5e6 (diff)
downloaddtas-83ab812ea560f5f327ea2df00f8f0292d96b1795.tar.gz
It is possible for a file to only have one of the ReplayGain
tags we need and not the previous-required REPLAYGAIN_TRACK_GAIN
tag.  So do not reject the entire series of tags if a file has
the one we want.
Diffstat (limited to 'lib/dtas/rg_state.rb')
-rw-r--r--lib/dtas/rg_state.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dtas/rg_state.rb b/lib/dtas/rg_state.rb
index 883515d..d6f8d81 100644
--- a/lib/dtas/rg_state.rb
+++ b/lib/dtas/rg_state.rb
@@ -111,8 +111,8 @@ class DTAS::RGState # :nodoc:
     unless @mode
       return @volume == 1.0 ? nil : to_sox_gain(vol_db)
     end
-    rg = source.replaygain or
-      return rg_fallback_effect("ReplayGain tags missing")
+    rg = source.replaygain(@mode) or
+      return rg_fallback_effect("ReplayGain tags missing for #@mode")
     val = rg.__send__(@mode)
     if ! val && @fallback_track && @mode =~ /\Aalbum_(\w+)/
       tag = "track_#$1"