]> granicus.if.org Git - handbrake/log
handbrake
7 years agocontrib: Make x264 cross options valid for all cross, not just mingw.
Bradley Sepos [Thu, 28 Dec 2017 19:50:29 +0000 (14:50 -0500)]
contrib: Make x264 cross options valid for all cross, not just mingw.

Also set CONFIGURE.build to null since the configure script has no clue about --build.

7 years agobuild: Update configure.py to check for nasm >= 2.13.
Bradley Sepos [Thu, 28 Dec 2017 18:49:44 +0000 (13:49 -0500)]
build: Update configure.py to check for nasm >= 2.13.

Required for recent x264. Better to fail here than part-way through a build.

7 years agoscripts: Update mac-toolchain-build to add nasm.
Bradley Sepos [Thu, 28 Dec 2017 18:49:12 +0000 (13:49 -0500)]
scripts: Update mac-toolchain-build to add nasm.

7 years agocontrib: Remove yasm from x264 module.
Bradley Sepos [Thu, 28 Dec 2017 18:48:31 +0000 (13:48 -0500)]
contrib: Remove yasm from x264 module.

7 years agox264: bump to build 155
John Stebbins [Tue, 26 Dec 2017 20:38:21 +0000 (12:38 -0800)]
x264: bump to build 155

Requires NASM to build
Unified 8 and 10 bit library support
AVX-512 optimizations
Various other bug fixes and improvements

7 years agolibhb: Better prioritize NLMeans prefilter order.
Bradley Sepos [Tue, 9 Jan 2018 10:10:36 +0000 (05:10 -0500)]
libhb: Better prioritize NLMeans prefilter order.

7 years agolibhb: Add CSM prefilter to NLMeans.
Bradley Sepos [Tue, 9 Jan 2018 09:30:28 +0000 (04:30 -0500)]
libhb: Add CSM prefilter to NLMeans.

CSM is a Conservative Smoothing filter with Median-like tendencies.

Conservative Smoothing is a basic noise reduction method that ensures a given pixel is within the values of those around it. A value higher than all the others is clamped to the maximum value in the neighborhood. Likewise, a value lower than all the others is clamped to the minimum value in the neighborhood. Basically, pixel values that seem to "fit in" are left alone, and extreme values are brought in line.

CSM takes this a step further. A pixel not affected by the previous part of the algorithm is subjected to additional thresholding. If the pixel value is closer to the minimum or maximum neighborhood value than the median, it is clamped to the half-way point. Finally, a pixel still not affected is subjected to a third level of thresholding, clamping to the half-way point between the median and the previous half-way point. Any other pixel value is deemed close enough to its peers and left alone.

In effect, this creates a "soft" median-like filter, where relatively similar values are left alone and increasingly disparate values are nudged closer together.

Practically, CSM is the best prefilter to date for improving weight decisions with sources containing a type or amount of noise proving difficult for NLMeans to uniformly dampen or completely remove on its own. Additionally, it does not significantly alter the strength metric in most cases, so it can simply be enabled wherever desired. From what I can tell in my limited testing, the algorithm respects proper detail and edges well enough that it seems to be safe with nearly any source. Perhaps it should be the default if I ever get around to creating NLMeans 2.

Unlike the mean and median prefilters where a larger neighborhood increases the strength of the prefilter, a larger CSM neighborhood merely takes more pixels into account, theoretically decreasing the strength of the filter. In practice, the provided 3x3 and 5x5 neighborhoods typically do not produce significantly differing results.

Basic usage: Add y-prefilter=16 to your desired parameters and NLMeans will use CSM for weighting decisions. Use y-prefilter=2064 if you want to see the output of the prefilter itself—the visual effect is mild. Adjust these values to 32 and 2080 for a 5x5 neighborhood; 3x3 works well in all cases I've tried.

7 years agoQSV: fix ICQ availability detection for HEVC encoder.
Tim Walker [Thu, 4 Jan 2018 00:02:42 +0000 (01:02 +0100)]
QSV: fix ICQ availability detection for HEVC encoder.

Explicitly set all relevant rate control parameters when
querying for availability of a given rate control method.

I still "blame" Intel, as the existing code managed to
query ICQ availability for the H.264 encoder just fine.

7 years agoUpdate copyright dates to 2018.
Bradley Sepos [Mon, 1 Jan 2018 00:00:00 +0000 (00:00 +0000)]
Update copyright dates to 2018.

7 years agoWinGui: Tweak sizing on the Main Window, Attempt 2.
sr55 [Mon, 1 Jan 2018 20:47:25 +0000 (20:47 +0000)]
WinGui: Tweak sizing on the Main Window, Attempt 2.

7 years agoWinGui: Tweak sizing on the main window.
sr55 [Mon, 1 Jan 2018 20:46:57 +0000 (20:46 +0000)]
WinGui: Tweak sizing on the main window.

7 years agoWinGui: Update to build script.
sr55 [Sat, 30 Dec 2017 20:27:33 +0000 (20:27 +0000)]
WinGui: Update to build script.

7 years agolibhb: Fix nlmeans prefilter passthru only outputting some frames.
Bradley Sepos [Sat, 30 Dec 2017 11:23:49 +0000 (06:23 -0500)]
libhb: Fix nlmeans prefilter passthru only outputting some frames.

Closes #1088.

7 years agolibhb: Output result of nlmeans prefilter when passthru enabled.
Chris Darroch [Sat, 30 Dec 2017 08:12:57 +0000 (00:12 -0800)]
libhb: Output result of nlmeans prefilter when passthru enabled.

When the prefilter passthru flag is enabled, write the nlmeans prefilter
result into the "main" memory buffer (mem) instead of the prefilter one
(mem_pre) so that the prefilter result will be output as if it was the
result of the nlmeans filter itself.

Otherwise, when the passthru flag is enabled, the prefilter result is
lost and the filter effectively just outputs its source input without
any changes.

7 years agolibhb: Fix nlmeans prefilter passthru frame addressing.
Chris Darroch [Sat, 30 Dec 2017 07:21:24 +0000 (23:21 -0800)]
libhb: Fix nlmeans prefilter passthru frame addressing.

In commit 29a49a8, the nlmeans_prefilter() call in nlmeans_filter_thread()
was fixed, but a corresponding change was not made to the similar
call site in nlmeans_filter_flush().

7 years agoWinGui: Add combined option in the Chapter Import Open File Dialog. #1015
sr55 [Fri, 29 Dec 2017 19:51:35 +0000 (19:51 +0000)]
WinGui: Add combined option in the Chapter Import Open File Dialog. #1015

7 years agoLinGui: fix display of volume name in queue
John Stebbins [Fri, 29 Dec 2017 16:17:30 +0000 (08:17 -0800)]
LinGui: fix display of volume name in queue

Fixes https://github.com/HandBrake/HandBrake/issues/1086

7 years agoscripts: Append to log files instead of overwriting.
Bradley Sepos [Thu, 28 Dec 2017 21:04:08 +0000 (16:04 -0500)]
scripts: Append to log files instead of overwriting.

7 years agoscripts: Fix typo in Mac deps build script.
Bradley Sepos [Thu, 28 Dec 2017 17:31:16 +0000 (12:31 -0500)]
scripts: Fix typo in Mac deps build script.

7 years agographics: Add graphic assets license info.
Bradley Sepos [Thu, 28 Dec 2017 15:28:26 +0000 (10:28 -0500)]
graphics: Add graphic assets license info.

Nik confirmed licensing via Twitter, Jamie via email. I am Bradley.

7 years agocontrib: Update fribidi url to use GitHub tarball.
Bradley Sepos [Wed, 27 Dec 2017 19:03:33 +0000 (14:03 -0500)]
contrib: Update fribidi url to use GitHub tarball.

fribidi.org is gone. The official release archive we were using is gone. Only release tags on GitHub remain, and they are not direct replacements for the proper release archives we were using previously.

Some changes were necessary for compilation from source, namely:

- Removal of an ugly hack that resulted in configure being run more than once. Apparently the same fix is already upstream https://github.com/fribidi/fribidi/commit/0efbaa9052320a951823a6e776b30a580e3a2b4e
- Modification of Makefile.am to avoid building the doc subdirectory, since this will fail wherever c2man isn't available such as on Mac. We don't need these docs
- Modification of gen.tab/Makefile.in to use the host compiler when cross-compiling. This cannot be done as a normal patch since Makefile.in is generated in the bootstrap phase. This is an open issue upstream: https://github.com/fribidi/fribidi/issues/7

This is all a good lesson on the importance of maintaining urls. I'm still a bit stunned a widely used GNU project would shutter its domain and release archive.

7 years agoRevert "contrib: Update fribidi download url and hash to GitHub tarball."
Bradley Sepos [Thu, 28 Dec 2017 00:13:49 +0000 (19:13 -0500)]
Revert "contrib: Update fribidi download url and hash to GitHub tarball."

This reverts commit 0097a6ef2d51d0e44f2201689f5111bdb69932dd.

7 years agoRevert "contrib: Fix issues with fribidi."
Bradley Sepos [Thu, 28 Dec 2017 00:13:28 +0000 (19:13 -0500)]
Revert "contrib: Fix issues with fribidi."

This reverts commit 97dd7d2a6830ab3cf952c308b9b1830a7c0fb5c2.

7 years agocontrib: Fix issues with fribidi.
Bradley Sepos [Wed, 27 Dec 2017 23:03:01 +0000 (18:03 -0500)]
contrib: Fix issues with fribidi.

The source tarball isn't exactly the same as the release tarball found on fribidi.org before it shuttered. Needs a little extra care and an anvil dropped on Mr. Horrible.

7 years agocontrib: Update videolan download url.
Bradley Sepos [Wed, 27 Dec 2017 19:21:07 +0000 (14:21 -0500)]
contrib: Update videolan download url.

Security certificate is missing ftp.videolan.org at the moment, so use download.videolan.org instead.

7 years agocontrib: Update fribidi download url and hash to GitHub tarball.
Bradley Sepos [Wed, 27 Dec 2017 19:03:33 +0000 (14:03 -0500)]
contrib: Update fribidi download url and hash to GitHub tarball.

fribidi.org is gone.

7 years agoscripts: Fix typo in 0a049afce. #1075
Bradley Sepos [Wed, 27 Dec 2017 18:42:57 +0000 (13:42 -0500)]
scripts: Fix typo in 0a049afce. #1075

7 years agoscripts: Export prefix bin path while building Mac deps.
Bradley Sepos [Wed, 27 Dec 2017 18:40:07 +0000 (13:40 -0500)]
scripts: Export prefix bin path while building Mac deps.

Fixes #1075.

7 years agoLinGui: remove unused icon files
John Stebbins [Tue, 26 Dec 2017 21:42:59 +0000 (13:42 -0800)]
LinGui: remove unused icon files

7 years agocontrib: Add universal archiver command for combining x265 libs.
Bradley Sepos [Tue, 26 Dec 2017 17:28:25 +0000 (12:28 -0500)]
contrib: Add universal archiver command for combining x265 libs.

Resolves an issue with GNU vs system libtool on Mac, which also does not support ar -M.

7 years agoscripts: Fix sudo invocation in mac-toolchain-build.
Bradley Sepos [Tue, 26 Dec 2017 21:17:46 +0000 (16:17 -0500)]
scripts: Fix sudo invocation in mac-toolchain-build.

7 years agoWinGui: Display Source Names in the Title Dropdown (only when open), when we are...
sr55 [Mon, 25 Dec 2017 17:01:17 +0000 (17:01 +0000)]
WinGui: Display Source Names in the Title Dropdown (only when open), when we are not scanning a DVD / Bluray.

7 years agoWinGui: Disable Subtitle Burn In Checkbox for PGS + MP4 #1077
sr55 [Mon, 25 Dec 2017 16:06:19 +0000 (16:06 +0000)]
WinGui: Disable Subtitle Burn In Checkbox for PGS + MP4 #1077

7 years agoWinGui: Toolbar Consistency pt2 #833
sr55 [Mon, 25 Dec 2017 16:05:52 +0000 (16:05 +0000)]
WinGui: Toolbar Consistency pt2 #833

7 years agoWinGui: Toolbar Consistency #833
sr55 [Mon, 25 Dec 2017 16:05:09 +0000 (16:05 +0000)]
WinGui: Toolbar Consistency #833

7 years agoMacGui: fix build on 10.12 sdk.
Damiano Galassi [Mon, 25 Dec 2017 08:05:58 +0000 (09:05 +0100)]
MacGui: fix build on 10.12 sdk.

7 years agocli: Don't throttle non-tty output. #1067
Bradley Sepos [Mon, 25 Dec 2017 00:02:18 +0000 (19:02 -0500)]
cli: Don't throttle non-tty output. #1067

7 years agocli: Fix typo in 6eb3ef1a.
Bradley Sepos [Sun, 24 Dec 2017 22:42:54 +0000 (17:42 -0500)]
cli: Fix typo in 6eb3ef1a.

Properly fixes #1067.

7 years agocli: Restore previous CLI progress separator.
Bradley Sepos [Sun, 24 Dec 2017 22:19:09 +0000 (17:19 -0500)]
cli: Restore previous CLI progress separator.

This basically reverts 7c438ad5ae81c31c660fc9a208dacd7177f54a24 and fixes #1067 for the upcoming release and until such a time as I can review further.

7 years agoWinGui: Consistency in the File Menu. "Open Source"
sr55 [Sun, 24 Dec 2017 21:54:01 +0000 (21:54 +0000)]
WinGui: Consistency in the File Menu. "Open Source"

7 years agoWinGui: Hide preset options inline button again.
sr55 [Sun, 24 Dec 2017 15:58:37 +0000 (15:58 +0000)]
WinGui: Hide preset options inline button again.

7 years agoLinGui: fix margins around destination file settings
John Stebbins [Sun, 24 Dec 2017 00:33:48 +0000 (16:33 -0800)]
LinGui: fix margins around destination file settings

7 years agoLinGui: remove preset options menu
John Stebbins [Sun, 24 Dec 2017 00:31:16 +0000 (16:31 -0800)]
LinGui: remove preset options menu

7 years agoLinGui: add support for alternate icons
John Stebbins [Sun, 24 Dec 2017 00:13:56 +0000 (16:13 -0800)]
LinGui: add support for alternate icons

GTK will use lower res icons if available for lower res screens.

7 years agoLinGui: update additional icons
John Stebbins [Sat, 23 Dec 2017 21:04:13 +0000 (13:04 -0800)]
LinGui: update additional icons

7 years agoLinGui: add option to make new preset default in "Save As"
John Stebbins [Sat, 23 Dec 2017 20:29:23 +0000 (12:29 -0800)]
LinGui: add option to make new preset default in "Save As"

7 years agographics: Add Illustrator and SVG versions of remaining revised v2 icons.
Bradley Sepos [Sat, 23 Dec 2017 20:26:28 +0000 (15:26 -0500)]
graphics: Add Illustrator and SVG versions of remaining revised v2 icons.

7 years agographics: Update Presets2 icon master files (close open path).
Bradley Sepos [Sat, 23 Dec 2017 20:04:28 +0000 (15:04 -0500)]
graphics: Update Presets2 icon master files (close open path).

7 years agographics: Rename logo icon files.
Bradley Sepos [Sat, 23 Dec 2017 20:02:11 +0000 (15:02 -0500)]
graphics: Rename logo icon files.

7 years agographics: Reorganize so that v1/v2 are top level in Icons hierarchy.
Bradley Sepos [Sat, 23 Dec 2017 19:59:25 +0000 (14:59 -0500)]
graphics: Reorganize so that v1/v2 are top level in Icons hierarchy.

7 years agoLinGui: fix window size queries on wayland
John Stebbins [Sat, 23 Dec 2017 19:39:31 +0000 (11:39 -0800)]
LinGui: fix window size queries on wayland

7 years agoLinGui: update activity and add-queue icons
John Stebbins [Sat, 23 Dec 2017 19:11:53 +0000 (11:11 -0800)]
LinGui: update activity and add-queue icons

7 years agoLinGui: allow chaning description in preset rename
John Stebbins [Sat, 23 Dec 2017 18:09:24 +0000 (10:09 -0800)]
LinGui: allow chaning description in preset rename

7 years agographics: Add Illustrator and SVG versions of some revised v2 icons.
Bradley Sepos [Sat, 23 Dec 2017 13:53:24 +0000 (08:53 -0500)]
graphics: Add Illustrator and SVG versions of some revised v2 icons.

7 years agographics: Remove old graphics credits; authorship is properly tracked by git.
Bradley Sepos [Sat, 23 Dec 2017 10:46:52 +0000 (05:46 -0500)]
graphics: Remove old graphics credits; authorship is properly tracked by git.

7 years agographics: Move revised icons by Bradley to Master/v2.
Bradley Sepos [Sat, 23 Dec 2017 10:46:06 +0000 (05:46 -0500)]
graphics: Move revised icons by Bradley to Master/v2.

7 years agographics: Remove old psd.zip; recompressed assets have been relocated to v2.
Bradley Sepos [Sat, 23 Dec 2017 10:42:04 +0000 (05:42 -0500)]
graphics: Remove old psd.zip; recompressed assets have been relocated to v2.

7 years agographics: Unzip Master/psd.zip and move icons by jamiemlaw to v2.
Jamie Law [Sat, 23 Dec 2017 10:40:58 +0000 (05:40 -0500)]
graphics: Unzip Master/psd.zip and move icons by jamiemlaw to v2.

7 years agographics: Unzip Master/psd.zip and move icons by nikpawlak to v2.
Nik Pawlak [Sat, 23 Dec 2017 10:38:35 +0000 (05:38 -0500)]
graphics: Unzip Master/psd.zip and move icons by nikpawlak to v2.

7 years agographics: Move oldest icons to Master/v1.
Bradley Sepos [Sat, 23 Dec 2017 10:34:47 +0000 (05:34 -0500)]
graphics: Move oldest icons to Master/v1.

7 years agoReorganize graphics assets.
Bradley Sepos [Sat, 23 Dec 2017 09:58:00 +0000 (04:58 -0500)]
Reorganize graphics assets.

7 years agoLinGui: don't abbreviate PAR and DAR in summary
John Stebbins [Fri, 22 Dec 2017 23:53:39 +0000 (15:53 -0800)]
LinGui: don't abbreviate PAR and DAR in summary

7 years agoLinGui: improve display aspect formatting
John Stebbins [Fri, 22 Dec 2017 23:49:22 +0000 (15:49 -0800)]
LinGui: improve display aspect formatting

7 years agoLinGui: don't mark preset modified on angle change
John Stebbins [Fri, 22 Dec 2017 23:35:21 +0000 (15:35 -0800)]
LinGui: don't mark preset modified on angle change

The angle setting is not part of a preset

7 years agoLinGui: add some space to reduce clutter
John Stebbins [Fri, 22 Dec 2017 23:25:51 +0000 (15:25 -0800)]
LinGui: add some space to reduce clutter

7 years agoLinGui: append source info to source name
John Stebbins [Fri, 22 Dec 2017 23:03:52 +0000 (15:03 -0800)]
LinGui: append source info to source name

Instead of right justification

7 years agoLinGui: remove bold attribut from some labels
John Stebbins [Fri, 22 Dec 2017 22:54:11 +0000 (14:54 -0800)]
LinGui: remove bold attribut from some labels

7 years agoLinGui: make all the preset menus consistent
John Stebbins [Fri, 22 Dec 2017 22:49:28 +0000 (14:49 -0800)]
LinGui: make all the preset menus consistent

7 years agoWinGui Put preset options menu back for now.
sr55 [Fri, 22 Dec 2017 22:36:55 +0000 (22:36 +0000)]
WinGui Put preset options menu back for now.

7 years agoQSV: adding HEVC10b decode support
maxim_d33 [Thu, 21 Dec 2017 20:34:57 +0000 (21:34 +0100)]
QSV: adding HEVC10b decode support

7 years agoLinGui: rename "Dimensions:" to "Size:" and move...
John Stebbins [Fri, 22 Dec 2017 22:19:03 +0000 (14:19 -0800)]
LinGui: rename "Dimensions:" to "Size:" and move...

Move under Filters

7 years agoLinGui: add preset options inline menu
John Stebbins [Fri, 22 Dec 2017 22:04:15 +0000 (14:04 -0800)]
LinGui: add preset options inline menu

7 years agoLinGui: add preset "Save As" option
John Stebbins [Fri, 22 Dec 2017 18:13:21 +0000 (10:13 -0800)]
LinGui: add preset "Save As" option

Adds "Save As" menu option and "Save New Preset" button.
Preset "Save" menu option behaviour changes to to only allow updating
the current preset.

7 years agoLinGui: Add "To:" before destination directory chooser
John Stebbins [Fri, 22 Dec 2017 17:38:37 +0000 (09:38 -0800)]
LinGui: Add "To:" before destination directory chooser

7 years agoLinGui: Some GUI consistency changes
John Stebbins [Fri, 22 Dec 2017 17:13:25 +0000 (09:13 -0800)]
LinGui: Some GUI consistency changes

Bold "Title:", "Angle:", "Duration:"
Add "Range:"
Change "through" to "-"

7 years agoWinGui: Further UI consistency tweaks to the main window. Made the layout a bit...
sr55 [Thu, 21 Dec 2017 22:05:51 +0000 (22:05 +0000)]
WinGui: Further UI consistency tweaks to the main window.  Made the layout a bit more compact. #833

7 years agoMacGui: fix a typo and the progress bar that was already hidden after the last VoiceO...
Damiano Galassi [Wed, 20 Dec 2017 21:34:30 +0000 (22:34 +0100)]
MacGui: fix a typo and the progress bar that was already hidden after the last VoiceOver improvements.

7 years agoWinGui: Few small bug fixes. AutoName All Caps, Layout on the main window.
sr55 [Wed, 20 Dec 2017 21:26:38 +0000 (21:26 +0000)]
WinGui: Few small bug fixes.  AutoName All Caps, Layout on the main window.

7 years agoMacGui: update preset when navigating with the keyboard arrows, fix #452
Damiano Galassi [Wed, 20 Dec 2017 21:06:38 +0000 (22:06 +0100)]
MacGui: update preset when navigating with the keyboard arrows, fix #452

7 years agoLinGui: Don't show presets window by default
John Stebbins [Wed, 20 Dec 2017 19:01:25 +0000 (11:01 -0800)]
LinGui: Don't show presets window by default

7 years agoLinGui: fix a main window resizing issue
John Stebbins [Wed, 20 Dec 2017 18:59:59 +0000 (10:59 -0800)]
LinGui: fix a main window resizing issue

7 years agoLinGui: remove "Reset All Titles" button
John Stebbins [Wed, 20 Dec 2017 17:53:43 +0000 (09:53 -0800)]
LinGui: remove "Reset All Titles" button

Replace with a preference option that synchronizes all title settings by
default.  This makes the linux gui behaviour consistant with the other
guis by default.  Titles can have independent settings by unchecking the
preference option.

7 years agobuild: Force HFS+ for Mac CLI package.
Bradley Sepos [Wed, 20 Dec 2017 09:14:09 +0000 (04:14 -0500)]
build: Force HFS+ for Mac CLI package.

7 years agoMacGui: improve VoiceOver navigation.
Damiano Galassi [Tue, 19 Dec 2017 13:20:45 +0000 (14:20 +0100)]
MacGui: improve VoiceOver navigation.

7 years agoMacGui: append "(Modified)" to the preset name.
Damiano Galassi [Tue, 19 Dec 2017 11:20:43 +0000 (12:20 +0100)]
MacGui: append "(Modified)" to the preset name.

7 years agoMacGui: make a copy of a job when sending it back to the main window.
Damiano Galassi [Tue, 19 Dec 2017 11:19:33 +0000 (12:19 +0100)]
MacGui: make a copy of a job when sending it back to the main window.

7 years agocontrib: Update to libass 0.14.0.
Bradley Sepos [Thu, 14 Dec 2017 09:31:34 +0000 (04:31 -0500)]
contrib: Update to libass 0.14.0.

7 years agocontrib: Update to LAME 3.100.
Bradley Sepos [Thu, 14 Dec 2017 08:38:49 +0000 (03:38 -0500)]
contrib: Update to LAME 3.100.

7 years agocontrib: Update to HarfBuzz 1.7.2.
Bradley Sepos [Thu, 14 Dec 2017 08:21:34 +0000 (03:21 -0500)]
contrib: Update to HarfBuzz 1.7.2.

7 years agocontrib: Update to freetype 2.8.1.
Bradley Sepos [Thu, 14 Dec 2017 08:19:50 +0000 (03:19 -0500)]
contrib: Update to freetype 2.8.1.

7 years agocontrib: Update to CMake 3.9.6.
Bradley Sepos [Thu, 14 Dec 2017 08:13:14 +0000 (03:13 -0500)]
contrib: Update to CMake 3.9.6.

7 years agocontrib: Update to libbluray 1.0.2.
Bradley Sepos [Wed, 6 Dec 2017 23:16:20 +0000 (18:16 -0500)]
contrib: Update to libbluray 1.0.2.

7 years agotheora: fix a crash when enctheoraClose is called and pv is NULL.
Damiano Galassi [Sat, 16 Dec 2017 08:49:38 +0000 (09:49 +0100)]
theora: fix a crash when enctheoraClose is called and pv is NULL.

7 years agoMacGui: fix preview window scale factor on retina displays.
Damiano Galassi [Sat, 16 Dec 2017 07:35:06 +0000 (08:35 +0100)]
MacGui: fix preview window scale factor on retina displays.

7 years agoAdd multi-resolution assets for new preview toolbar icon.
Bradley Sepos [Sat, 16 Dec 2017 04:02:25 +0000 (23:02 -0500)]
Add multi-resolution assets for new preview toolbar icon.

7 years agoWinGui: Use the Lower res assets for now until we implement low/high res icon support.
sr55 [Fri, 15 Dec 2017 23:18:54 +0000 (23:18 +0000)]
WinGui: Use the Lower res assets for now until we implement low/high res icon support.

7 years agoWinGui: Fix a bug in preview scaling.
sr55 [Fri, 15 Dec 2017 23:05:51 +0000 (23:05 +0000)]
WinGui: Fix a bug in preview scaling.

7 years agoWinGui: Updating Used Icons.
sr55 [Fri, 15 Dec 2017 23:03:38 +0000 (23:03 +0000)]
WinGui: Updating Used Icons.

7 years agoWinGui: Language Changes around preset buttons on the main view.
sr55 [Fri, 15 Dec 2017 22:47:20 +0000 (22:47 +0000)]
WinGui: Language Changes around preset buttons on the main view.

7 years agoWinGui: Add % Actual Size to the static preview window title.
sr55 [Fri, 15 Dec 2017 22:40:06 +0000 (22:40 +0000)]
WinGui: Add % Actual Size to the static preview window title.