OSDN Git Service

handbrake-jp/handbrake-jp-git.git
15 years agoMacGui: Set hud overlay controls as initially hidden in Preview Window.
dynaflash [Fri, 6 Mar 2009 15:38:11 +0000 (15:38 +0000)]
MacGui: Set hud overlay controls as initially hidden in Preview Window.
- Fixes an issue where the controls are not properly arranged and available when preview window is open and there is no source currently loaded up.

git-svn-id: svn://localhost/HandBrake/trunk@2231 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Fri, 6 Mar 2009 14:27:44 +0000 (14:27 +0000)]
WinGui:
- Add an override for the queue show method. Saves calling setQueue() before Show().
- Fix a couple of message boxes appearing behind windows.
Thanks go to: ExDeus

git-svn-id: svn://localhost/HandBrake/trunk@2230 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Picture Settings - If Preview is in full screen and pic settings are open...
dynaflash [Thu, 5 Mar 2009 23:39:13 +0000 (23:39 +0000)]
MacGui: Picture Settings - If Preview is in full screen and pic settings are open, disable the toggle effect for the settings button in preview and move the Picture Settings panel on top of the full screen preview.
- Fixes issue where going into full screen mode in preview requires two clicks on the settings button to get the inspector to show on top of the full screen preview.

git-svn-id: svn://localhost/HandBrake/trunk@2229 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Fix picture settings panel so that it stays on top when open like a true...
dynaflash [Thu, 5 Mar 2009 23:07:19 +0000 (23:07 +0000)]
MacGui: Fix picture settings panel so that it stays on top when open like a true hud inspector.
- Add "Hide On Deactivate" property to the xib so that if another app is in focus the panel properly hides.

git-svn-id: svn://localhost/HandBrake/trunk@2228 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Fix wonky tabbed view layout in picture settings at launch.
dynaflash [Thu, 5 Mar 2009 21:02:58 +0000 (21:02 +0000)]
MacGui: Fix wonky tabbed view layout in picture settings at launch.
- For whatever the reason NSTabView does not like wantsCoreAnimationLayer set in the xib. So we set it programmatically in awakeFromNib in PictureController.

git-svn-id: svn://localhost/HandBrake/trunk@2227 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Put Picture Settings and Video Filters into one inspector.
dynaflash [Thu, 5 Mar 2009 19:54:53 +0000 (19:54 +0000)]
MacGui: Put Picture Settings and Video Filters into one inspector.
- Separated in a tab view
- Move methods from PictureFilterController into PictureController
- NOTE: This layout, etc is not final as far as detail by any means, however ...  did not want to get too far out from svn due to the mods to xcode and the current development of the build system.

git-svn-id: svn://localhost/HandBrake/trunk@2226 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Thu, 5 Mar 2009 16:43:48 +0000 (16:43 +0000)]
BuildSystem:
- changed behavior (which was introduced in r2223) of what MODULE target (phase) is dirtied
  when one of the contrib modules it depends upon is changed; eg: cleaned or build:
        old: MODULE.extract
        new: MODULE.configure
- example of new (corrected) behavior:
        1. svn update brings in a new change on faad2 module which has new version (url)
        2. make
        3. result: faad2 runs the guantlet: fetch->extract->patch->configure->build->install (FXPCBI for short)
        4. result: ffmpeg has a dependency on faad2 and runs: CBI
        5. result: libhb depends on all contrib modules and recompiles all .o and creates .a
        6. result: [no xcode] HandBrakeCLI depends on libhb and recompiles all .o and relinks.
        7. result: [xcode]   HandBrakeCLI and HandBrake may need to be 'cleaned' to force them to recompile as opposed to just relinking.

git-svn-id: svn://localhost/HandBrake/trunk@2225 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Thu, 5 Mar 2009 08:58:30 +0000 (08:58 +0000)]
BuildSystem:
- fixed race condition where bzip2,xvidcore may fail on missing contrib/{lib,include} dirs.
- replaced literal command uses with var in bzip2,xvidcore .

git-svn-id: svn://localhost/HandBrake/trunk@2224 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Thu, 5 Mar 2009 06:57:31 +0000 (06:57 +0000)]
BuildSystem:
- increased inter-contrib module rebuild sanity;
  ie: if an svn update is done and a new x264 tarball is available, the system will fetch
  it and proceed to extract->patch->configure->build->install and because it is utterly
  dangerous (undefined results can easily occur) to re-extract over an existing extract,
  the appropriate steps are taken to first rm -fr the tarball extraction directory.
  This is generally good practice but I'm explaining it here in detail in case some
  developers are taking risks like editing files in the build/ tree and erroneously
  assuming they will not be overwritten by either this new build system or contrib
  (foreign) build systems.
- added contrib touch/untouch targets; see doc.
- updated docs accordingly.
- fixed typo for GCCargs.g.max which caused --debug=max to not operate properly.
- unofficial builds will no longer rebrand naming to 'NoNameBrand'

git-svn-id: svn://localhost/HandBrake/trunk@2223 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoreorder some calculations in hb_set_anamorphic_size so that the height
jstebbins [Wed, 4 Mar 2009 23:31:54 +0000 (23:31 +0000)]
reorder some calculations in hb_set_anamorphic_size so that the height
calculated after all adjustments have been made to the width.

git-svn-id: svn://localhost/HandBrake/trunk@2222 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Wed, 4 Mar 2009 21:28:47 +0000 (21:28 +0000)]
BuildSystem:
- added new target: make report.help (for cvk_b).
- updated doc accordingly.
- updated doc QuickStart chapter to be clearer for novices.
- added wiki auto-posting targets which are work-in-progress

git-svn-id: svn://localhost/HandBrake/trunk@2221 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui:
jstebbins [Wed, 4 Mar 2009 17:17:41 +0000 (17:17 +0000)]
LinGui:
add chapter duration display to chapter tab

git-svn-id: svn://localhost/HandBrake/trunk@2216 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBump x264 to r1119
dynaflash [Wed, 4 Mar 2009 09:38:07 +0000 (09:38 +0000)]
Bump x264 to r1119
- http://git.videolan.org/gitweb.cgi?p=x264.git;a=commit;h=6f0b2a9b18f3af3fd7e495640756e1d5e43343e1

git-svn-id: svn://localhost/HandBrake/trunk@2215 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem: darwin
konablend [Wed, 4 Mar 2009 00:54:53 +0000 (00:54 +0000)]
BuildSystem: darwin
- made Xcode external targets consistent for each configuration.
- shunted terminal NAME=VALUE vars through xcodebuild.
- folded macosx/module.xcode shunt functions into single.
- added new report target to show a single var; eg: make report.var NAME=GCC.gcc .

BuildSystem: darwin ppc
- fixed configure on ppc host: correctly identify native architecture.
- fixed configure to be more resilient when svn probes fail.
- fixed configure to show error output for svn probes.

BuildSystme: xcode
- added external target 'external' to represent 'all things in external system'
  which is slight more than what 'libhb' might represent.
- added doc section Building.osx: External Targets .

git-svn-id: svn://localhost/HandBrake/trunk@2214 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: link gtk.uninstall to uninstall target
jstebbins [Tue, 3 Mar 2009 21:21:04 +0000 (21:21 +0000)]
LinGui: link gtk.uninstall to uninstall target

git-svn-id: svn://localhost/HandBrake/trunk@2213 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Tue, 3 Mar 2009 18:34:20 +0000 (18:34 +0000)]
BuildSystem:
- added global uninstall target; the inverse of install
- $PREFIX/bin/HandBrakeCLI longer paritipates in clean
- added target test.uninstall to remove $PREFIX/bin/HandBrakeCLI

git-svn-id: svn://localhost/HandBrake/trunk@2212 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui:
jstebbins [Tue, 3 Mar 2009 18:09:17 +0000 (18:09 +0000)]
LinGui:
- fix picture preview scaling problem
- change how contrib libs are referenced in gtk build system

git-svn-id: svn://localhost/HandBrake/trunk@2211 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMac: Suppress IB warnings and notices when building HandBrake.app
dynaflash [Tue, 3 Mar 2009 17:47:30 +0000 (17:47 +0000)]
Mac: Suppress IB warnings and notices when building HandBrake.app

git-svn-id: svn://localhost/HandBrake/trunk@2210 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Report the svn version and arch in the session activity log and the individua...
dynaflash [Tue, 3 Mar 2009 17:26:47 +0000 (17:26 +0000)]
MacGui: Report the svn version and arch in the session activity log and the individual encode log.
- ie. [11:25:22] macgui: Handbrake Version: svn2207 x86_64 (2009030301)

git-svn-id: svn://localhost/HandBrake/trunk@2209 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Tue, 3 Mar 2009 17:04:25 +0000 (17:04 +0000)]
BuildSystem:
- OSX fix: when in terminal 'xclean' needs to also trigger 'clean' allowing
  Xcode to cleanup HandBrakeCLI and HandBrake products.

git-svn-id: svn://localhost/HandBrake/trunk@2208 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Tue, 3 Mar 2009 07:20:19 +0000 (07:20 +0000)]
BuildSystem:
- minor fix for report targets; aggregates were not included after splitting to rules file
- fixed bug where non-darwin platforms caused all rules to be disabled because FEATURE.xcode was erroneously set to 1

git-svn-id: svn://localhost/HandBrake/trunk@2207 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Tue, 3 Mar 2009 05:14:54 +0000 (05:14 +0000)]
BuildSystem:
- fixed ppc bug: scanning DVD does not pick up audio tracks
- libdvdread headers require WORD_BIGENDIAN to be defined on BIGENDIAN systems
- solution is to defined WORD_BIGENDIAN for libhb on ppc/ppc64 platforms

git-svn-id: svn://localhost/HandBrake/trunk@2206 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Tue, 3 Mar 2009 02:49:54 +0000 (02:49 +0000)]
BuildSystem:
- fixed OSX + Xcode to support parallel builds
- enhanced OSX + Xcode to use proper pass-thru for all make targets
- added global target --> install
- added install: test.install
- added install: gtk.install
- updated pre-generated building guides (these will go away when wiki is updated)
- updated xml2wiki script to spit out heading

git-svn-id: svn://localhost/HandBrake/trunk@2205 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoPrevent Theora and Vorbis from using a system (e.g. fink) pkg-config which
eddyg [Tue, 3 Mar 2009 01:16:09 +0000 (01:16 +0000)]
Prevent Theora and Vorbis from using a system (e.g. fink) pkg-config which
they then allow to override HBs paths for other libs. Thanks to KonaBlend
and saintdev for identying the issue.

git-svn-id: svn://localhost/HandBrake/trunk@2204 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui:
jstebbins [Mon, 2 Mar 2009 22:47:44 +0000 (22:47 +0000)]
LinGui:
fix gtk.xclean failure, rm with no arguments
because GTK.BUILD.stamp is no longer used defined

git-svn-id: svn://localhost/HandBrake/trunk@2203 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: another typo
jstebbins [Mon, 2 Mar 2009 19:14:19 +0000 (19:14 +0000)]
LinGui: another typo

git-svn-id: svn://localhost/HandBrake/trunk@2202 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Mon, 2 Mar 2009 18:07:36 +0000 (18:07 +0000)]
WinGui:
Patch from ExDeus - Thanks.
- Show Queue button now activates the queue window on launch.
- Code clean-up for the auto naming function.

git-svn-id: svn://localhost/HandBrake/trunk@2201 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
jstebbins [Mon, 2 Mar 2009 16:35:31 +0000 (16:35 +0000)]
BuildSystem:
update linux build documentation with additional package details

git-svn-id: svn://localhost/HandBrake/trunk@2200 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui:
ritsuka [Mon, 2 Mar 2009 11:42:11 +0000 (11:42 +0000)]
MacGui:
- Switched some float to CGFloat and int to NSInteger.
- Fixed a warning in writeToActivityLog: when compiling with gcc-4.2
- Fixed an issue when dragging items in the queue if the item was not already selected.

git-svn-id: svn://localhost/HandBrake/trunk@2199 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Removed some unused call to fProgressIndicator that may break the progresso...
ritsuka [Mon, 2 Mar 2009 10:17:00 +0000 (10:17 +0000)]
MacGui: Removed some unused call to fProgressIndicator that may break the progresso bar.

git-svn-id: svn://localhost/HandBrake/trunk@2198 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Mon, 2 Mar 2009 07:55:35 +0000 (07:55 +0000)]
BuildSystem:
- added x264 configure argument: --disable-mp4-output
- this prevents x264 from finding gpac externally if it happens to be on host which causes grief with linking

git-svn-id: svn://localhost/HandBrake/trunk@2197 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui:
ritsuka [Mon, 2 Mar 2009 07:41:45 +0000 (07:41 +0000)]
MacGui:
- Limited the handbrake dock icon refresh to a maximum of 20 for encode. It was a bit pointless to update it two times a second.
- Another try at fixing the main window progress indicator.

git-svn-id: svn://localhost/HandBrake/trunk@2196 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Mon, 2 Mar 2009 07:30:13 +0000 (07:30 +0000)]
BuildSystem:
- split build guide into 3 articles, one for each platform
- populated root of tree with 3 platform Building guides: osx, cygwin, linux for convenience
- added python script (needs python3.0) to optionally generate wiki from .texi articles

git-svn-id: svn://localhost/HandBrake/trunk@2195 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Fix main window progress indicators for scan and encode for x86_64
dynaflash [Mon, 2 Mar 2009 05:58:27 +0000 (05:58 +0000)]
MacGui: Fix main window progress indicators for scan and encode for x86_64

git-svn-id: svn://localhost/HandBrake/trunk@2194 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: update log and about dialog with update version strings
jstebbins [Mon, 2 Mar 2009 04:06:38 +0000 (04:06 +0000)]
LinGui: update log and about dialog with update version strings
also, make hb home web link on about dialog spawn a browser

git-svn-id: svn://localhost/HandBrake/trunk@2193 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Mon, 2 Mar 2009 03:35:10 +0000 (03:35 +0000)]
BuildSystem:
- changed HandBrakeCLI to use project.h when showing version in hblog
- changed macosx/Info.h.m4 to supply correct version; eg: MacGUI about-panel
- HandBrakeCLI hblog now displays architecture; eg: Darwin i386
- HandBrake.app about-panel now displays architecture; eg: i386
- updated all versioning to reflect project policies:
    a. HB_PROJECT_VERSION now behave as old HB_VERSION
    b. HB_PROJECT_BUILD now behaves as old HB_BUILD
    c. dropped HB_PROJECT_VERSION_FORMAL as it is no longer referenced
- renamed HOST.proc  -> HOST.machine for clarity
- renamed BUILD.proc -> BUILD.machine for clarity

git-svn-id: svn://localhost/HandBrake/trunk@2192 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoRe-enable libswscale accurate rounding on x86_64.
saintdev [Mon, 2 Mar 2009 02:30:10 +0000 (02:30 +0000)]
Re-enable libswscale accurate rounding on x86_64.
The libswscale bug causing crashes was fixed a while ago.

git-svn-id: svn://localhost/HandBrake/trunk@2191 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Mon, 2 Mar 2009 00:15:16 +0000 (00:15 +0000)]
BuildSystem:
- exposed HB_PROJECT_BUILD_ARCH to <hb.h> space.

git-svn-id: svn://localhost/HandBrake/trunk@2190 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Sun, 1 Mar 2009 23:47:12 +0000 (23:47 +0000)]
BuildSystem:
- propagate debug and optimize flags to libmp4v2 module

git-svn-id: svn://localhost/HandBrake/trunk@2189 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: fix a dependency problem in gtk/module.rules
jstebbins [Sun, 1 Mar 2009 23:07:39 +0000 (23:07 +0000)]
LinGui: fix a dependency problem in gtk/module.rules
fix another typo

git-svn-id: svn://localhost/HandBrake/trunk@2188 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: fix another typo
jstebbins [Sun, 1 Mar 2009 20:57:20 +0000 (20:57 +0000)]
LinGui: fix another typo

git-svn-id: svn://localhost/HandBrake/trunk@2187 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: force invocation of gtk.build for every build so gtk make
jstebbins [Sun, 1 Mar 2009 20:49:30 +0000 (20:49 +0000)]
LinGui: force invocation of gtk.build for every build so gtk make
can check all its dependencies
fix typo in about dialog

git-svn-id: svn://localhost/HandBrake/trunk@2186 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Sun, 1 Mar 2009 20:29:06 +0000 (20:29 +0000)]
BuildSystem:
- added configure --prefix to specify an install location
- propagated prefix to gtk's aggregated build
- value is exposed to make as two variables, use either depending on if ending slash is desired
    $(INSTALL.prefix)
    $(INSTALL.prefix/)

git-svn-id: svn://localhost/HandBrake/trunk@2185 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: remove extraneous files dist files like AUTHORS etc.
jstebbins [Sun, 1 Mar 2009 19:40:56 +0000 (19:40 +0000)]
LinGui: remove extraneous files dist files like AUTHORS etc.
add distclean to xclean rules
link gtk.xclean to top xclean
use hb build systems CFLAGS and LDFLAGS

git-svn-id: svn://localhost/HandBrake/trunk@2184 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui; fixed warnings related to 64bit cocoa.
ritsuka [Sun, 1 Mar 2009 18:00:26 +0000 (18:00 +0000)]
MacGui; fixed warnings related to 64bit cocoa.

git-svn-id: svn://localhost/HandBrake/trunk@2183 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem:
konablend [Sun, 1 Mar 2009 17:36:51 +0000 (17:36 +0000)]
BuildSystem:
- trivial fix to allow make/include/PLATFORM.rules to be optional
- this glitch resulted from adding darwin.rules for UB fat binary targets

git-svn-id: svn://localhost/HandBrake/trunk@2182 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years ago- svn properties corrections
konablend [Sun, 1 Mar 2009 17:28:24 +0000 (17:28 +0000)]
- svn properties corrections
- removed svn:ignore from { . libhb contrib } directories since we have buid/ containment w/ new build system
- added svn:eol-style LF to all added text files for new build system
- added svn:executable to configure

git-svn-id: svn://localhost/HandBrake/trunk@2181 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoBuildSystem: conversion from jam-based to make-based system.
konablend [Sun, 1 Mar 2009 17:03:11 +0000 (17:03 +0000)]
BuildSystem: conversion from jam-based to make-based system.

KNOWN ISSUES:
    1. OSX + Xcode builds do not support parallel builds; attempting to
       use them may cause unbounded number of jobs. However, disabling
       via configure --disable-xcode avoids the issue.
    2. OSX ppc binary produces binary which has audio-scan problems.
    3. OSX ppc64 binary has not been runtime tested.

ADDED:
    00-BuildUserGuide.txt
    contrib/*/module.*
    doc/
    make/

    libhb/module.*
    test/module.*
    macos/module.*
    gtk/module.*

DROPPED:
    BUILD
    BuildContribDarwin.sh
    DownloadMacOsXContribBinaries.sh
    Jamfile
    Jamrules
    MacOsXContribBinariesVersion.txt
    Makefile
    Makefile.config
    jam
    libhb/Jamefile
    libhb/Makefile
    test/BUILDSHARED
    test/Makefile
    contrib/Jamfile
    contrib/Makefile
    contrib/patch-ffmpeg.patch
    contrib/patch-x264-idr.patch
    contrib/patch-x264-linux.patch

RENAMED:
    contrib/*.patch -> contrib/MODULE/[AP]??-*.patch
    macosx/HandBrake.plist -> macosx/Info.plist

MODIFIED: libhb/decavcodec.c
    Patched to use cleaner include "libavcodec/audioconvert".
    Second part to support this cleanup is ffmpeg A02-audioconvert.patch .

MODIFIED: libhb/hb.c
MODIFIED: libhb/hb.h
MODIFIED: libhb/muxmkv.c
MODIFIED: libhb/muxmp4.c
MODIFIED: libhb/update.c
    Patched to use "project.h" for project metadata.
    Renamed HB_BUILD -> HB_PROJECT_BUILD.
    Renamed HB_VERSION -> HB_PROJECT_VERSION.

MODIFIED: test/test.c:
    Patched HandBrakeCLI to support I/O on Mac OS X ZFS filesystems.
    Reference r1803 as similar patch for HandBrake.app .
    Unpatched behavior is crash/buserror when using ZFS.

MODIFIED: macosx/Growl.framework/
    Upgraded 0.7.6 (i386,ppc) -> 1.1.2 (i386,x86_64,ppc,ppc64).
    New architectures facilitate x86_64 and ppc64 builds.

MODIFIED: macosx/HandBrake.xcodeproj/
    Bumped compatibilty mode from 2.4 -> 3.1 .
    Dumped old configurations Deployment, Developer.
    Added configurations standard, sebug as replacements.
    Added standard.i386, standard.x86_64, standard.ppc, standard.ppc64 .
    for explicit architecture build.
    All configurations settings cleaned up and normalized.
    Build output directories adjusted to support new build system.

git-svn-id: svn://localhost/HandBrake/trunk@2180 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: make it possible to build outside srcdir
jstebbins [Sat, 28 Feb 2009 19:10:07 +0000 (19:10 +0000)]
LinGui: make it possible to build outside srcdir

git-svn-id: svn://localhost/HandBrake/trunk@2179 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Replaced a quicktime call with a 64bit compatible one.
ritsuka [Sat, 28 Feb 2009 16:49:21 +0000 (16:49 +0000)]
MacGui: Replaced a quicktime call with a 64bit compatible one.

git-svn-id: svn://localhost/HandBrake/trunk@2178 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: clean up my improper use of HB_VERSION and HB_BUILD.
jstebbins [Fri, 27 Feb 2009 01:11:58 +0000 (01:11 +0000)]
LinGui: clean up my improper use of HB_VERSION and HB_BUILD.
replace with hb_get_version and hb_get_build.
this fixes a difficulty with compiling using KonaB1end's shiny new build system.

git-svn-id: svn://localhost/HandBrake/trunk@2177 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Wed, 25 Feb 2009 20:50:49 +0000 (20:50 +0000)]
WinGui:
- Fixes an issue where the preview window would not appear and display an error if QT7 is not installed. Error message is disabled, window will now appear correctly but with QT functionality disabled.

git-svn-id: svn://localhost/HandBrake/trunk@2176 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoDon't truncate RF/QP values down to integers when displaying job config. Still needs...
jbrjake [Mon, 23 Feb 2009 17:07:25 +0000 (17:07 +0000)]
Don't truncate RF/QP values down to integers when displaying job config. Still needs to be restructured for encoders other than x264, but I wanted to get this minor change in now so I don't forget and because it won't break any patches to work.c.

git-svn-id: svn://localhost/HandBrake/trunk@2175 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Sun, 22 Feb 2009 19:48:14 +0000 (19:48 +0000)]
WinGui:
- Fixes culture issue in the Query Generator and Preset loader. Same issue as previous checkin. Thanks to zhango for pointing this code out with a fix.

git-svn-id: svn://localhost/HandBrake/trunk@2174 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agogit-svn-id: svn://localhost/HandBrake/trunk@2173 b64f7644-9d1e-0410-96f1-a4d463321fa5
sr55 [Sun, 22 Feb 2009 17:49:11 +0000 (17:49 +0000)]
git-svn-id: svn://localhost/HandBrake/trunk@2173 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoremove .contrib on make clean for cygwin. This allows libraries to rebuild when their...
sr55 [Sat, 21 Feb 2009 00:03:28 +0000 (00:03 +0000)]
remove .contrib on make clean for cygwin. This allows libraries to rebuild when their version file changes.

git-svn-id: svn://localhost/HandBrake/trunk@2172 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoCygwin building changed slightly.
sr55 [Fri, 20 Feb 2009 23:43:54 +0000 (23:43 +0000)]
Cygwin building changed slightly.
"make snapshot" and "make official" not longer create the packages.
"make snapshot-release" and "make official-release" will build full zip packages.
Now runs clean before each build.

git-svn-id: svn://localhost/HandBrake/trunk@2171 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Fri, 20 Feb 2009 12:52:45 +0000 (12:52 +0000)]
WinGui:
- Forgot to actually check in the x264 panel control with

git-svn-id: svn://localhost/HandBrake/trunk@2170 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Thu, 19 Feb 2009 21:43:03 +0000 (21:43 +0000)]
WinGui:
- Code tweaks to x264Panel animate function.
- Picture Settings: Added text labal which indicates when max width / height is used.

git-svn-id: svn://localhost/HandBrake/trunk@2169 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Thu, 19 Feb 2009 20:48:16 +0000 (20:48 +0000)]
WinGui:
- Fixed a bug in the preset update function.

git-svn-id: svn://localhost/HandBrake/trunk@2168 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Thu, 19 Feb 2009 18:30:32 +0000 (18:30 +0000)]
WinGui:
- Re-add all the x264 tooltips.
- Combines the 2 Preview windows for VLC and QT into one.

git-svn-id: svn://localhost/HandBrake/trunk@2167 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Mon, 16 Feb 2009 23:14:36 +0000 (23:14 +0000)]
WinGui:
- Moved the x264 panel onto it's own panel. This cleans up frmMain significantly and makes it a tad easier to maintain. Started to clean up the code a bit.
- Reworded the b-adapt pop up menu items: "Off", "Fast", "Optimal" as per 2162

git-svn-id: svn://localhost/HandBrake/trunk@2166 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agochange my email addy in the authors file
dynaflash [Mon, 16 Feb 2009 16:20:03 +0000 (16:20 +0000)]
change my email addy in the authors file

git-svn-id: svn://localhost/HandBrake/trunk@2165 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Moves the tooltips for the x264 advanced tab from the .xib file to the source...
jbrjake [Sat, 14 Feb 2009 15:45:43 +0000 (15:45 +0000)]
MacGui: Moves the tooltips for the x264 advanced tab from the .xib file to the source code, for easier updating.

git-svn-id: svn://localhost/HandBrake/trunk@2164 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: add single title scan option to file menu
jstebbins [Sat, 14 Feb 2009 00:11:58 +0000 (00:11 +0000)]
LinGui: add single title scan option to file menu

git-svn-id: svn://localhost/HandBrake/trunk@2163 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Yet another x264 advanced controller change...rewording the b-adapt pop up...
jbrjake [Fri, 13 Feb 2009 22:58:09 +0000 (22:58 +0000)]
MacGui: Yet another x264 advanced controller change...rewording the b-adapt pop up menu items to read "Off", "Fast", "Optimal" instead of 0, 1, 2. The whole "optimal gets progressively slower as you increase the max permitted length of b-frame chains" part will be explained in the tool tip, when those all get moved from xib to code.

git-svn-id: svn://localhost/HandBrake/trunk@2162 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Removes a bunch of redundant code from the x264 advanced option controller.
jbrjake [Fri, 13 Feb 2009 22:38:09 +0000 (22:38 +0000)]
MacGui: Removes a bunch of redundant code from the x264 advanced option controller.

git-svn-id: svn://localhost/HandBrake/trunk@2161 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Hopefully this time the option hiding code for the advanced x264 tab actually...
jbrjake [Fri, 13 Feb 2009 19:53:37 +0000 (19:53 +0000)]
MacGui: Hopefully this time the option hiding code for the advanced x264 tab actually works properly, but no promises. Fixes an issue with it ignoring changes coming from the presets or text field.

git-svn-id: svn://localhost/HandBrake/trunk@2160 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Restructures that x264 advanced option widget hiding method so it sucks a...
jbrjake [Fri, 13 Feb 2009 16:20:18 +0000 (16:20 +0000)]
MacGui: Restructures that x264 advanced option widget hiding method so it sucks a bit less, is easier to read, and has a lower potential for nasty looping.

git-svn-id: svn://localhost/HandBrake/trunk@2159 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Fri, 13 Feb 2009 14:06:29 +0000 (14:06 +0000)]
WinGui:
- Fixes a small issue with folder and file dialog browsers. Clicking cancel would still result in a rescan.

git-svn-id: svn://localhost/HandBrake/trunk@2158 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: change buttons in hud overlays to "round textured" (which are not really...
dynaflash [Fri, 13 Feb 2009 05:38:36 +0000 (05:38 +0000)]
MacGui: change buttons in hud overlays to "round textured" (which are not really round, but whatever) to help go with the hud style controls.

git-svn-id: svn://localhost/HandBrake/trunk@2157 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Picture Preview - fix full screen mode on multi-display systems.
dynaflash [Fri, 13 Feb 2009 05:26:29 +0000 (05:26 +0000)]
MacGui: Picture Preview - fix full screen mode on multi-display systems.
- Full Screen mode now applies to whichever screen the preview window is on in windowed mode on multi-display systems.

git-svn-id: svn://localhost/HandBrake/trunk@2156 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Fix crash when trying to quit with preview in full screen mode.
dynaflash [Fri, 13 Feb 2009 01:23:27 +0000 (01:23 +0000)]
MacGui: Fix crash when trying to quit with preview in full screen mode.

git-svn-id: svn://localhost/HandBrake/trunk@2155 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: add video quality slider granularity preference.
jstebbins [Thu, 12 Feb 2009 22:15:31 +0000 (22:15 +0000)]
LinGui: add video quality slider granularity preference.
I didn't have an easy way to stash doubles in a combo box,
so this was more invasive that planned. But now I have
some additional flexibitlity.

git-svn-id: svn://localhost/HandBrake/trunk@2154 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Being lazy and copying and pasting code never pays. Fixes an issue with the...
jbrjake [Thu, 12 Feb 2009 21:44:02 +0000 (21:44 +0000)]
MacGui: Being lazy and copying and pasting code never pays. Fixes an issue with the b-adapt widget not resetting to a default value when it was hidden. Thanks for catching this and the last bug, Scott.

git-svn-id: svn://localhost/HandBrake/trunk@2153 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Thu, 12 Feb 2009 21:42:59 +0000 (21:42 +0000)]
WinGui:
- PSY Rate Distortion, PSY Trellis, Adaptive B-Frames added to the advanced tab.
- Advanced tag re-arranged to match the macgui. Entire GUI window enlarged to make room for new widgets.

git-svn-id: svn://localhost/HandBrake/trunk@2152 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Queue -Stop animating currently encoding job icon when paused, restart animat...
dynaflash [Thu, 12 Feb 2009 21:08:41 +0000 (21:08 +0000)]
MacGui: Queue -Stop animating currently encoding job icon when paused, restart animation upon resume.

git-svn-id: svn://localhost/HandBrake/trunk@2151 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Oops, only trellis can hide psy-trellis now so it has to hide when sender...
jbrjake [Thu, 12 Feb 2009 19:33:11 +0000 (19:33 +0000)]
MacGui: Oops, only trellis can hide psy-trellis now so it has to hide when sender is trellis.

git-svn-id: svn://localhost/HandBrake/trunk@2150 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Thu, 12 Feb 2009 17:49:21 +0000 (17:49 +0000)]
WinGui:
- Removes 0.33 from x264 granularity slider.
- Fixes some rounding issues

git-svn-id: svn://localhost/HandBrake/trunk@2149 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Remove ".33" from Preferences > Advanced > x264 quality slider granularity.
dynaflash [Thu, 12 Feb 2009 17:47:43 +0000 (17:47 +0000)]
MacGui: Remove ".33" from Preferences > Advanced > x264 quality slider granularity.
- This change leaves 1.0, .50,.25 and .20 as slider granularity choices.

git-svn-id: svn://localhost/HandBrake/trunk@2148 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: add b-adapt combo box to x264 tab
jstebbins [Wed, 11 Feb 2009 23:53:48 +0000 (23:53 +0000)]
LinGui: add b-adapt combo box to x264 tab

git-svn-id: svn://localhost/HandBrake/trunk@2147 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoWinGui:
sr55 [Wed, 11 Feb 2009 23:33:19 +0000 (23:33 +0000)]
WinGui:
- Constant Quality Slider now QP/RF based.
- Nearest percentage is also shown for reference.
- Preset system also updated to handle new CP/RF values

git-svn-id: svn://localhost/HandBrake/trunk@2146 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Constant Quality slider, fix percentage readouts for ffmpeg, xvid and theora...
dynaflash [Wed, 11 Feb 2009 23:03:21 +0000 (23:03 +0000)]
MacGui: Constant Quality slider, fix percentage readouts for ffmpeg, xvid and theora. Thanks J45.

git-svn-id: svn://localhost/HandBrake/trunk@2145 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Adds a widget for adaptive b-frames to the x264 advanced tab.
jbrjake [Wed, 11 Feb 2009 22:56:00 +0000 (22:56 +0000)]
MacGui: Adds a widget for adaptive b-frames to the x264 advanced tab.

git-svn-id: svn://localhost/HandBrake/trunk@2144 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Some changes to the method that fades in and out different widgets, to avoid...
jbrjake [Wed, 11 Feb 2009 22:46:30 +0000 (22:46 +0000)]
MacGui: Some changes to the method that fades in and out different widgets, to avoid looping on invalid input. It's still really messy, though, and needs a real reworking.

git-svn-id: svn://localhost/HandBrake/trunk@2143 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: fix a window resize problem when app is first started
jstebbins [Wed, 11 Feb 2009 22:44:13 +0000 (22:44 +0000)]
LinGui: fix a window resize problem when app is first started
some widgets were getting negative size requests

git-svn-id: svn://localhost/HandBrake/trunk@2142 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: add sliders for psy-rd and psy-trellis
jstebbins [Wed, 11 Feb 2009 17:51:04 +0000 (17:51 +0000)]
LinGui: add sliders for psy-rd and psy-trellis

git-svn-id: svn://localhost/HandBrake/trunk@2141 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Adds slider widgets for Psy-RD and Psy-Trellis to the x264 advanced tab,...
jbrjake [Wed, 11 Feb 2009 15:57:19 +0000 (15:57 +0000)]
MacGui: Adds slider widgets for Psy-RD and Psy-Trellis to the x264 advanced tab, and rearranges the layout to fit them.

git-svn-id: svn://localhost/HandBrake/trunk@2140 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Constant Quality Slider - theora's qp goes up as the quality goes up.
dynaflash [Wed, 11 Feb 2009 04:16:52 +0000 (04:16 +0000)]
MacGui: Constant Quality Slider - theora's qp goes up as the quality goes up.

git-svn-id: svn://localhost/HandBrake/trunk@2139 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: Constant Quality Slider now QP/RF based
jstebbins [Wed, 11 Feb 2009 01:22:50 +0000 (01:22 +0000)]
LinGui: Constant Quality Slider now QP/RF based
Nearest percentage is also shown for reference

git-svn-id: svn://localhost/HandBrake/trunk@2138 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: fix problem with writing null values to presets file
jstebbins [Wed, 11 Feb 2009 00:34:03 +0000 (00:34 +0000)]
LinGui: fix problem with writing null values to presets file

git-svn-id: svn://localhost/HandBrake/trunk@2137 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoAllows direct setting of job->vquality from interfaces in the native QP scales used...
jbrjake [Tue, 10 Feb 2009 22:57:21 +0000 (22:57 +0000)]
Allows direct setting of job->vquality from interfaces in the native QP scales used by XviD and Theora instead of requiring conversion to a percentage.

git-svn-id: svn://localhost/HandBrake/trunk@2136 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Constant Quality Slider now QP/RF based.
dynaflash [Tue, 10 Feb 2009 22:31:26 +0000 (22:31 +0000)]
MacGui: Constant Quality Slider now QP/RF based.
- Constant Quality Slider now uses QP/RF values instead of the long maligned % scale.
- Nearest percentage is also shown for reference.
-- For reference, PercentRFConversion on the wiki is a table of corresponding values for the old and new scales.
- Slider changes scale base on the chosen encoder.
-- x264: 0-51
-- FFmpeg and Xvid: 1-31
-- Theora: 0-63
- x264 Specific - Slider allows for fractional granularity (other encoders just whole ints).
-- Advanced Preference to adjust the granularity from 1.0,0.50,0.33,0.25,0.20 with a default of 0.25.
- Existing presets using the % based values converted to the nearest QP/RF value (within the granularity of the slider).
-- Example: A current preset using x264 at 62% will now actually use 61.76% since the nearest RF value converted to 62% is 19.50 with the slider set to 0.25 granularity.
-- New presets created will store the QP/RF value instead of the % value.

git-svn-id: svn://localhost/HandBrake/trunk@2135 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Hides the merange widget on the advanced tab when the motion estimation metho...
jbrjake [Tue, 10 Feb 2009 20:48:44 +0000 (20:48 +0000)]
MacGui: Hides the merange widget on the advanced tab when the motion estimation method is hex or dia.

git-svn-id: svn://localhost/HandBrake/trunk@2134 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Adds a popup menu item for Hadamard-transformed exhaustive motion estimation...
jbrjake [Tue, 10 Feb 2009 19:17:19 +0000 (19:17 +0000)]
MacGui: Adds a popup menu item for Hadamard-transformed exhaustive motion estimation (me=tesa) to the advanced x264 tab.

git-svn-id: svn://localhost/HandBrake/trunk@2133 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Bump x264 to r1109
dynaflash [Tue, 10 Feb 2009 05:51:38 +0000 (05:51 +0000)]
MacGui: Bump x264 to r1109
- Assorted speedups since last bump
- http://git.videolan.org/gitweb.cgi?p=x264.git;a=commit;h=75b495f2723fcb77fe7d5c92511136d3fea4cf13

git-svn-id: svn://localhost/HandBrake/trunk@2132 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoMacGui: Disable the toolbar hide button in the pref window, it was looking at me...
ritsuka [Sun, 8 Feb 2009 08:58:33 +0000 (08:58 +0000)]
MacGui: Disable the toolbar hide button in the pref window, it was looking at me oddly.

git-svn-id: svn://localhost/HandBrake/trunk@2131 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: fix stupid limit on number of subtitle and audio tracks.
jstebbins [Sun, 8 Feb 2009 05:26:25 +0000 (05:26 +0000)]
LinGui: fix stupid limit on number of subtitle and audio tracks.

git-svn-id: svn://localhost/HandBrake/trunk@2130 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoonly mark first audio track as default in mkv.
jstebbins [Sat, 7 Feb 2009 20:51:56 +0000 (20:51 +0000)]
only mark first audio track as default in mkv.
all tracks were getting marked which caused the last
track to be chosen for playback by popcorn hour a-100

git-svn-id: svn://localhost/HandBrake/trunk@2129 b64f7644-9d1e-0410-96f1-a4d463321fa5

15 years agoLinGui: make drc slider jump from 0 to 1, skipping intermediate values
jstebbins [Fri, 6 Feb 2009 22:48:51 +0000 (22:48 +0000)]
LinGui: make drc slider jump from 0 to 1, skipping intermediate values

git-svn-id: svn://localhost/HandBrake/trunk@2128 b64f7644-9d1e-0410-96f1-a4d463321fa5