Bug 344 - formats disabled even after lame installation
: formats disabled even after lame installation
Status: CLOSED FIXED
Product: Logitech Media Server
Classification: Unclassified
Component: Audio
: 5.x or older
: PC All
: P2 normal (vote)
: ---
Assigned To: KDF
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2004-06-04 07:36 UTC by Vidur Apparao
Modified: 2009-09-08 09:18 UTC (History)
0 users

See Also:
Category: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Vidur Apparao 2004-06-04 07:36:18 UTC
We aggressively disable conversions that require transcoding to MP3 if lame is
not installed. If lame is installed subsequently, these conversions remain
disabled. I'm not sure if we can distinguish between a disabled conversion
specified by the user vs. one done by us in Source.pm::checkBin, but it's a
problem that I believe will come up for our users.
Comment 1 Vidur Apparao 2004-06-04 07:36:43 UTC
Cc:ing dean and marking this as a 5.2 requirement.
Comment 2 KDF 2004-06-04 09:48:33 UTC
this is a known issue, that I believe I had mentioned.  Unless there is some way
to actually tell the difference between disabled by server and disabled by user,
this cannot be solved without a rather large rework of the whole setup.  It
could, however, be solved one way, by a FAQ answer.
I'll see if I can think of anything else during the next week when I will have
the time.
Comment 3 KDF 2004-06-07 12:50:32 UTC
here is one idea....
I'm not sure how to implement it yet, since I DID try something like this before
and it just made the code really ugly.  For the file types setting, I can set
them to show disabled, but not be added to the disabled formats.  This will
depend on being able to tell which setting the users change, and will take some
time to implement.
Comment 4 Vidur Apparao 2004-06-07 14:32:33 UTC
Maybe this is what you're suggesting...it seems like Source.pm::checkBin() is
setting the 'disabledformats' pref if it doesn't find the required binary.
Rather than setting the persisted pref, maybe it can just manage a separate
session-specific disabled list. That way, the next time SlimServer is launched
with the binary installed, we're good to go. What do you think of this patch?

Index: Slim/Player/Source.pm
===================================================================
RCS file: /home/cvs/cvsroot/slim/server/Slim/Player/Source.pm,v
retrieving revision 1.98
diff -u -r1.98 Source.pm
--- Slim/Player/Source.pm	2 Jun 2004 01:50:53 -0000	1.98
+++ Slim/Player/Source.pm	7 Jun 2004 21:30:23 -0000
@@ -38,6 +38,7 @@
 my $FADEVOLUME         = 0.3125;
 
 my %commandTable = ();
+my @sessionDisabledFormats = ();
 
 sub systell {
 	sysseek($_[0], 0, SEEK_CUR)
@@ -999,6 +1000,13 @@
 	
 	$::d_source && msg("Checking to see if $profile is enabled\n");
 	
+	for my $format (@sessionDisabledFormats) {
+		if ($format eq $profile) {
+			$::d_source && msg("!! $profile Disabled for this session!!\n");
+			return 0;
+		}
+	}
+
 	my $count = Slim::Utils::Prefs::getArrayMax('disabledformats');
 	
 	return 1 if !defined($count) || $count < 0;
@@ -1043,7 +1051,7 @@
 		if (!Slim::Utils::Misc::findbin($1)) {
 			$command = undef;
 			$::d_source && msg("   drat, missing binary $1\n");
-			unless ($profile eq 'mp3-lame-*-*')
{Slim::Utils::Prefs::push('disabledformats',$profile);}
+			unless ($profile eq 'mp3-lame-*-*') {push(@sessionDisabledFormats,$profile);}
 		}
 	}
 			
Comment 5 Vidur Apparao 2004-06-08 15:26:15 UTC
Dean brought up a good point. Why even worry about the disabling part? We're
going though checkBin at the start of every song anyway. Getting rid of the line
that starts with "unless ($profile eq 'mp3-lame-*-*')" will still do the right
thing, just not touch the disabledformats pref. The efficiency in disabling the
format conversion before the findbin check is not that significant, is it?
Comment 6 KDF 2004-06-09 02:33:05 UTC
marking conversion as disabled is intended for use in the server settings.  When
a user views the file types list, the conversions that are unavailable due to
missing binaries, etc shoudl be shown as disabled.  However, maybe the settings
section can also make use of @sessionDisabled.
Comment 7 Vidur Apparao 2004-06-10 16:40:03 UTC
Fix checked in on 6/10/2004.
Comment 8 Chris Owens 2007-05-24 15:54:09 UTC
This Slimserver bug was fixed a very long time ago, and is now being marked as Closed.  If you're still experiencing this issue, please verify you are running a current version of Slimserver and re-open the bug.
Comment 9 Chris Owens 2008-12-18 11:55:20 UTC
Routine bug db maintenance; removing old versions which cause confusion.  I apologize for the inconvenience.