diff options
author | Rodeo <[email protected]> | 2013-01-30 00:09:57 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2013-01-30 00:09:57 +0000 |
commit | d7e26a9c04fe2a243d38002bf5a8522ccb8beedf (patch) | |
tree | 671cd5c6613ec80cf6eb69a2f1ae4878629de689 /scripts | |
parent | 11a7f3a63bc873c07e81583c989581152d89d3f9 (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-x | scripts/manicure.rb | 4 |
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 |