Skip to content

Commit ec13606

Browse files
committed
spacing/wording fix
1 parent 77762ea commit ec13606

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

trunk/mythtv/nuvinfo.pm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ package mythtv::nuvinfo;
174174
# First, we check for the existence of an mpeg info program
175175
my $program = find_program('mplayer');
176176
# Nothing found? Die
177-
die "You need mplayer to use this script on mpeg-based nuv files.\n\n" unless ($program);
177+
die "You need mplayer to use this script on mpeg-based files.\n\n" unless ($program);
178178
# Set the is_mpeg flag
179179
$info{'is_mpeg'} = 1;
180180
# Grab the info we want from mplayer (go uber-verbose to override --really-quiet)
@@ -248,10 +248,10 @@ package mythtv::nuvinfo;
248248
# European decimals...
249249
$aspect =~ s/\,/\./;
250250
# Parse out decimal formats
251-
if ($aspect == 1) { return '1:1'; }
252-
elsif ($aspect =~ m/^1.3/) { return '4:3'; }
253-
elsif ($aspect =~ m/^1.7/) { return '16:9'; }
254-
elsif ($aspect == 2.21) { return '2.21:1'; }
251+
if ($aspect == 1) { return '1:1'; }
252+
elsif ($aspect =~ m/^1.3/) { return '4:3'; }
253+
elsif ($aspect =~ m/^1.7/) { return '16:9'; }
254+
elsif ($aspect == 2.21) { return '2.21:1'; }
255255
# Unknown aspect
256256
print STDERR "Unknown aspect ratio: $aspect\n";
257257
return $aspect.':1';

0 commit comments

Comments
 (0)