summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* WinGui: Refix styling and layout on the Drive Listbox so it scrolls ↵sr552016-07-302-54/+85
| | | | correctly. Fixes #263
* MacGui: realign AddPreset.xib UI with Auto LayoutDamiano Galassi2016-07-301-61/+102
|
* scripts: Update to mingw-w64-build 2.2.0.Bradley Sepos2016-07-291-4/+4
|
* WinGui: Enhance the security of our update checker. It can no longer access ↵sr552016-07-291-5/+18
| | | | URL's that are not *.handbrake.fr if served with a compromised appcast.
* scripts: Update to mingw-w64-build 2.1.0.Bradley Sepos2016-07-291-39/+58
|
* MacGui: update the UI after a failed queue scan.Damiano Galassi2016-07-291-8/+20
|
* gtk: Revise Russian translation of pop-up comment.maxd2016-07-281-1/+1
|
* gtk: Add Russian translation for pop-up comment.TotalCaesar6592016-07-281-1/+2
|
* libhb: make hb_ps_read_packet() more robustSean McGovern2016-07-281-6/+13
|
* libhb: make encavcodecInit() more robustSean McGovern2016-07-281-5/+41
|
* qsv: Fix crash attempting to destroy mutex.maxd2016-07-281-35/+38
| | | | | | | | Removal of address-of operator made necessary by newer pthreads implementation. Also adds some return value checking and error reporting. Resolves #258.
* MacGui: update the drc value immediately when the slider is moved.Damiano Galassi2016-07-271-35/+17
|
* MacGui: use CQ label in the constant quality slider for VP9.Damiano Galassi2016-07-271-1/+2
|
* preset: Use Main profile for Android 1080p30 and use fast combing detection ↵Bradley Sepos2016-07-263-12/+12
| | | | for Very Fast presets.
* MacGui: fix subtitles offset undo and add kvp dependencies for the ↵Damiano Galassi2016-07-251-3/+3
| | | | 'isForcedSupported' method.
* WinGui: Add a tooltip to display the preset description. Initial delay ↵sr552016-07-251-0/+15
| | | | before appearing is 1.5 seconds to avoid annoying the user.
* WinGui: Lay the foundation for editing presets with a simple rename window.sr552016-07-2513-0/+386
|
* WinGui: Allow the preset slider for VP8 and VP9sr552016-07-252-5/+38
|
* WinGui: Stubbing out some meta data code.sr552016-07-2313-2/+396
|
* WinGui: Fix Quality slider for VP9sr552016-07-231-0/+3
|
* MacGui: made the framerate radio button strings localizable.Damiano Galassi2016-07-211-2/+2
|
* MacGui: disable the 'forced' checkbox for subtitles track if forced is not ↵Damiano Galassi2016-07-213-30/+11
| | | | supported.
* WinGui: Show Queue button can now maximise a minimised window. Fixes #262sr552016-07-161-0/+5
|
* MacGui: fix the label color of two text labels in the preview HUD on 10.9 ↵Damiano Galassi2016-07-162-3/+19
| | | | and earlier.
* MacGui: fix the audio defaults tracks delete button, the selection index was ↵Damiano Galassi2016-07-161-5/+4
| | | | not set and the button deleted the wrong track.
* WinGui: Remove another exception for queue handling and just handle the ↵sr552016-07-151-1/+1
| | | | condition appropriately #211
* WinGui: Change the handling of "Already Processing" dialog that can appear ↵sr552016-07-151-2/+2
| | | | when pressing Start Encode if the events run out of sequence. The GUI just handles it appropiatly now. Should fix #211
* WinGui: Case sensitivity fix for checking queue duplicatessr552016-07-151-1/+13
|
* WinGui: Change the Add to queue split button so that it's styling behaves a ↵sr552016-07-152-55/+51
| | | | bit better. Fixes #99
* LinGui: Fix icon_res.h build dependencyJohn Stebbins2016-07-141-0/+1
|
* libhb: make preview reader and writer both more robustSean McGovern2016-07-111-4/+42
|
* libhb: add an implementation of strerror_r()Sean McGovern2016-07-112-0/+47
|
* configure: check for strerror_r()Sean McGovern2016-07-102-0/+25
|
* contrib: libass: specify path to local YASM.Tim Walker2016-07-081-0/+7
|
* contrib: libass: cosmetics.Tim Walker2016-07-081-3/+3
|
* Revert "libhb: don't ignore the return result from fread()"Bradley Sepos2016-07-073-24/+9
| | | | | | Broke image previews on Linux and Windows (mingw). This reverts commit b7645e7842703d52c44feaa85cfb3c490e09c8dc.
* libhb: Replace PTW32_STATIC_LIB with PTW32_VERSION.Bradley Sepos2016-07-071-1/+1
| | | | For consistency with 36c415e. In practice the include this encapsulates is already included elsewhere, so no underlying change takes place; <pthread.h> is already included.
* contrib: Fix typo in harfbuzz mingw configuration.Bradley Sepos2016-07-071-1/+1
| | | | Hat-tip @Rodeo314 for the catch.
* scripts: Update to mingw-w64-build 2.0.0.Bradley Sepos2016-07-071-31/+14
|
* Merge pull request #253 from Rodeo314/pthreaddBradley Sepos2016-07-071-1/+4
|\ | | | | contrib: fix PTHREADW32 dependency condition for libav.
| * contrib: fix PTHREADW32 dependency condition for libav.Tim Walker2016-07-071-1/+4
| |
* | Merge pull request #252 from Rodeo314/pthread2Bradley Sepos2016-07-071-5/+8
|\ \ | |/ |/| | | contrib: add a couple changes missed in previous commits. pthreadw32: module.defs fixes.
| * pthreadw32: module.defs fixes.Tim Walker2016-07-071-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove libpthread.a symlink during UNINSTALL; its our responsibility since we create it at the INSTALL stage. Don't add build targets to both BUILD.extra and BUILD.ntargets; since both fields are added to BUILD.args, this was resulting in duplicate targets being passed to make. Move (real)clean target from BUILD to CLEAN, as this is where it belongs; note that CLEAN is automatically called by the build system as part as the BUILD stage. Previously, parallel builds could call the (real)clean target after GC-static, resulting in a build failure during the INSTALL stage.
| * contrib: add a couple changes missed in previous commits.Tim Walker2016-07-071-3/+3
| |
* | contrib: Fix bzip2 for old releases.Bradley Sepos2016-07-071-1/+3
|/ | | | We recently updated bzip2-1.0.6.tar.gz to the official tarball, which extracts to a different directory (bzip2-1.0.6 instead of bzip2). Unfortunately, this breaks older commits/releases that depend on the old behavior. So restore the old tarball, and use a different name for the official tarball.
* contrib: Re-enable multithreading for libvpx.Bradley Sepos2016-07-071-2/+8
|
* contrib: Threading fixes in pthreads-w32 and libav.Bradley Sepos2016-07-072-10/+7
|
* contrib: Explicitly disable vp10, cosmetics.Bradley Sepos2016-07-051-1/+2
|
* contrib: Disable vpx threading on mingw.Bradley Sepos2016-07-051-6/+6
| | | | VP9 has problems with newer pthreads-win32. No easy way to disable threading for VP9 only.
* libhb: Move ogg in link order.Bradley Sepos2016-07-011-2/+2
| | | | For consistency with test/module.defs.