summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* WinGui: Fix Denoise NlMeans Custom Option not showing.sr552015-01-303-5/+4
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6832 b64f7644-9d1e-0410-96f1-a4d463321fa5
* muxavformat: fix avformat stream time_base warningjstebbins2015-01-301-0/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6831 b64f7644-9d1e-0410-96f1-a4d463321fa5
* libhb: automatically add rendersub filter when requiredjstebbins2015-01-303-30/+51
| | | | | | | | | | | | This requires the addition of a filter->post_init function to inform filters of the final job configuration after all filters have been initialized. Rendersub needs to know cropping, but cropping isn't known till after crop_scale filter is initialized. Since crop_scale is initialized *after* rendersub is initialized, post_init is needed. Currently, rendersub is the only filter that defines post_init. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6830 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix a crash that happens when a new preset is created from a one ↵ritsuka2015-01-301-3/+8
| | | | | | that uses the advanced x264 panel. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6829 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Add a default font directory for fontconfig to use when there isn't a ↵ritsuka2015-01-301-1/+3
| | | | | | configuration file available. Move the font cache to the user directory. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6828 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: let HBAudioTrackPreset know the current container.ritsuka2015-01-305-2/+68
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6827 b64f7644-9d1e-0410-96f1-a4d463321fa5
* libhb: NLMeans x86 SSE acceleration/optimizations.bradleys2015-01-294-36/+268
| | | | | | | | Speed improvements of 1-6% seem typical. Most benefit seems to be for older hardware and/or hardware with fewer threads. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6826 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Build: fix compilation with some MinGW-w64 distributions.Rodeo2015-01-281-0/+8
| | | | | | | Some distributions provide their own strtok_r via a preprocessor directive, which conflicts with our implementation; prefer our own as it is thread-safe. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6825 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: set the paused/working state immediately, so the pause toolbar item ↵ritsuka2015-01-281-0/+2
| | | | | | will be update correctly. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6824 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: use the current settings when adding titles directly to the queue.ritsuka2015-01-281-1/+4
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6823 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: sr552015-01-276-16/+107
| | | | | | | | - Fixes to Disk logging. - Improvements to Queue Item tooltip. - Queue will no longer pause if an encode fails. It will move onto the next item and try that. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6822 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Strip out some unused code.sr552015-01-275-142/+11
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6821 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: apply auto naming when adding multiple titles to queue too.ritsuka2015-01-271-43/+54
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6820 b64f7644-9d1e-0410-96f1-a4d463321fa5
* CLI: fix turbo first pass.Rodeo2015-01-271-2/+3
| | | | | | | It was broken in revision 6738. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6819 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: disable the cancel button while the queue is scanning because there ↵ritsuka2015-01-274-24/+13
| | | | | | isn't a way to pause the scan. Use hb_state param.workdone.error to signal the result of an encode operation. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6818 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: set the right crop values in the HB_FILTER_RENDER_SUB filter.ritsuka2015-01-261-3/+3
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6817 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: add a method to return a CGImageRef for a preview in HBCore, and ↵ritsuka2015-01-267-155/+179
| | | | | | skip the alpha to use less memory. Use a dispatch_source as a timer in HBCore so we will be able to run the update loop on its own thread. Remove the pointer to hb_handle_t, no class outside HBCore uses it. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6816 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Fix a object reference issue with the ScannedSource in the QueueTask ↵sr552015-01-254-10/+10
| | | | | | object. This could lead to queue encode failures. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6815 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Add XmlIgnore attribute to the Titles collection of the ↵sr552015-01-251-0/+2
| | | | | | ScannedSource object to reduce the size of the Queue Exports. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6814 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Bring the live preview and static preview indexes into sync.sr552015-01-251-1/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6813 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui:sr552015-01-2510-652/+1660
| | | | | | | | - Change the internal presets.dat file which stores built-in presets to JSON. - Starting to remove the CLI handling code. - Some assembly info updates. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6812 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Moving the built-in preset storage over to JSON.sr552015-01-251-30/+39
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6811 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: add a "Add Titles to Queue…" menu item that let select which ↵ritsuka2015-01-256-48/+396
| | | | | | titles are added to the queue. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6810 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Handle the Logging events a bit better. This will stop some of the ↵sr552015-01-242-13/+10
| | | | | | cross scan/encode log pollution that's been occurring since libhb encode was enabled. Will need to look into a better solution as scans during an encode will still appear in the encode log and vice versa while a scan is ongoing. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6809 b64f7644-9d1e-0410-96f1-a4d463321fa5
* Remove the old Doxy files since we no longer publish doxygen.sr552015-01-244-6645/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6808 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Switch all the FileOpen / FileSave dialogs over to the native ↵sr552015-01-235-14/+11
| | | | | | windows one. There is no difference for windows 7 users and later. This was used to give XP users a better experience which is no longer relevant. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6807 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Improve the extra args tooltip.sr552015-01-233-1/+13
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6806 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Fix tune options on the video tab for x265. Hide the Level option ↵sr552015-01-233-3/+29
| | | | | | since it's not relevant. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6805 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Fix an issue with the video preset defaulting when changing the ↵sr552015-01-231-1/+1
| | | | | | video encoder. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6804 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Remove the Simple advanced options tab. sr552015-01-2311-312/+33
| | | | | | All advanced options for non-x264 encoders must now be done on the VideoTab. The x264 advanced tab can still be enabled where necessary. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6803 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix subtitles defaults window resizing and delete an empty item in ↵ritsuka2015-01-232-13/+10
| | | | | | the title popup. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6802 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: expose a isStream and a timeCode properties in HBTitle.ritsuka2015-01-234-7/+28
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6801 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix HBRangeType enum order.ritsuka2015-01-231-1/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6800 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: clean up HBCore, add a way to register a block as error handler.ritsuka2015-01-236-95/+113
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6799 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Hide the advanced tab checkbox for x265 since there isn't one.sr552015-01-221-1/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6798 b64f7644-9d1e-0410-96f1-a4d463321fa5
* libav: bump to version 11.2jstebbins2015-01-2214-1276/+58
| | | | | | | Removes several unneeded patches. Adds a new one. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6797 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Always show 1 based indexes for audio and subtitles, and give libhb ↵sr552015-01-222-4/+4
| | | | | | 0 based. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6796 b64f7644-9d1e-0410-96f1-a4d463321fa5
* json: revert last commitjstebbins2015-01-221-4/+2
| | | | | | | | made a bad assumption. internal libhb track number is not needed by the front-end git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6795 b64f7644-9d1e-0410-96f1-a4d463321fa5
* json: add "Track" to audio and subtitle in titlesjstebbins2015-01-221-2/+4
| | | | | | | | This is the track that must be passed to libhb in the job to select desired audio and subtitle tracks git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6794 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Remove bad comment.sr552015-01-221-1/+0
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6793 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Fix subtitle track index. Made both Audio and Subtitle tracks 0 based.sr552015-01-223-4/+5
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6792 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Fix a few binding errors.sr552015-01-223-12/+8
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6791 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Some minor tidy up for the last checkin.sr552015-01-223-13/+41
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6790 b64f7644-9d1e-0410-96f1-a4d463321fa5
* WinGui: Initial re-factoring of the Video Tab. Replaces encoder specific ↵sr552015-01-2235-1436/+1152
| | | | | | preset/tune/profile/level options with generic versions. This will break all existing user presets so the version number for the presets has been bumped. This should trigger the old presets to be archived. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6789 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: fix start/pause toolbar items validation.ritsuka2015-01-221-16/+8
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6788 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: add back the drawer code I accidentally removed previously.ritsuka2015-01-221-1/+7
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6787 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: center the prefs window in the showWindow: method.ritsuka2015-01-222-9/+12
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6786 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: rename HBController and HBQueueController files.ritsuka2015-01-225-13/+13
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6785 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: move the application delegate to its own class. Removed the "Open ↵ritsuka2015-01-2211-1826/+1800
| | | | | | Source (Title Specific)" menu item, now integrated in the standard open panel. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6784 b64f7644-9d1e-0410-96f1-a4d463321fa5
* MacGui: do a mutable copy instead of a copy for the masterTrackArray.ritsuka2015-01-211-1/+1
| | | | git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6783 b64f7644-9d1e-0410-96f1-a4d463321fa5