summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-01-30 00:09:57 +0000
committerRodeo <[email protected]>2013-01-30 00:09:57 +0000
commitd7e26a9c04fe2a243d38002bf5a8522ccb8beedf (patch)
tree671cd5c6613ec80cf6eb69a2f1ae4878629de689 /scripts
parent11a7f3a63bc873c07e81583c989581152d89d3f9 (diff)
x264 preset system: miscellaneous improvements.
See https://reviews.handbrake.fr/r/421/ for details. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5225 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/manicure.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb
index f0fa0d184..1b331272c 100755
--- a/scripts/manicure.rb
+++ b/scripts/manicure.rb
@@ -1282,9 +1282,9 @@ class Display
commandString << "}\n "
end
if hash["h264Profile"] != "" && hash["h264Profile"] != "auto"
- commandString << "if (x264_profile == NULL)\n "
+ commandString << "if (h264_profile == NULL)\n "
commandString << "{\n "
- commandString << " x264_profile = strdup(\""
+ commandString << " h264_profile = strdup(\""
commandString << hash["h264Profile"] << "\");\n "
commandString << "}\n "
end