]> granicus.if.org Git - handbrake/log
handbrake
6 years agocontrib: Update to libvorbis-1.3.6
Ewout ter Hoeven [Mon, 11 Feb 2019 11:40:30 +0000 (12:40 +0100)]
contrib: Update to libvorbis-1.3.6

6 years agoLinGui: fix display of special characters in preset name
John Stebbins [Mon, 11 Feb 2019 16:26:53 +0000 (09:26 -0700)]
LinGui: fix display of special characters in preset name

6 years agonvenc: silence a compiler warning.
sr55 [Mon, 11 Feb 2019 16:13:43 +0000 (16:13 +0000)]
nvenc: silence a compiler warning.

6 years agogtk: Link to libbcrypt on mingw-w64
mwayne [Fri, 25 Jan 2019 21:47:54 +0000 (22:47 +0100)]
gtk: Link to libbcrypt on mingw-w64

6 years agonvenc_common: fix compiler warning
John Stebbins [Mon, 11 Feb 2019 15:15:18 +0000 (08:15 -0700)]
nvenc_common: fix compiler warning

6 years agoencavcodec: fix potential use of uninitialized variable
John Stebbins [Mon, 11 Feb 2019 15:12:53 +0000 (08:12 -0700)]
encavcodec: fix potential use of uninitialized variable

6 years agodvdnav: fix potentially unterminated string
John Stebbins [Mon, 11 Feb 2019 15:08:21 +0000 (08:08 -0700)]
dvdnav: fix potentially unterminated string

6 years agoscan: fix potential buffer overflow in sprintf
John Stebbins [Mon, 11 Feb 2019 15:04:24 +0000 (08:04 -0700)]
scan: fix potential buffer overflow in sprintf

Use snprintf

6 years agoFix return value of hb_blobal_init_no_hardware
John Stebbins [Mon, 11 Feb 2019 14:30:23 +0000 (07:30 -0700)]
Fix return value of hb_blobal_init_no_hardware

control reaches end of non-void function

6 years agodecavcodec: fix error when ffmpeg parser changes the codec_id
John Stebbins [Sun, 10 Feb 2019 20:04:21 +0000 (13:04 -0700)]
decavcodec: fix error when ffmpeg parser changes the codec_id

The ffmpeg mpeg2 parser changes AVCodecContext.codec_id on the fly based
on what it parses. Normally this results in correct switching of decoders
internally in ffmpeg. Due to some unfortunate ordering of how we initialize
things when HandBrake is using our own demuxers, avcodec_open gets called
with the original AVCodec and the AVCodecContext.codec_id that was changed
by the parser resulting in an error.

Further explanation... When using our own demuxers, there are some codecs that
we have to parse out the extradata for _prior_ to calling avcodec_open.
avcodec_open fails if extradata isn't initialized for these codecs prior to
the call. To initialize the extradata, we use parser->parser->split. I.e. the
parser must be initialized and used prior to calling avcodec_open. When
avcodec_open is called, it is using the original AVCodec that was used with
avcodec_alloc_context3 (it will fail if AVCodec is not the same between
avcodec_alloc_context3 and avccodec_open). The call to avcodec_open fails with
"Codec type or id mismatches" since AVCodecContext.codec_id no longer matches
AVCodec.id due to the parser changing the codec_id.

The solution is to reset AVCodec and reallocate the context when we
detect that the parser has changed codec_id on us.

6 years agodvd: Add support for MPEG-1 on DVD
John Stebbins [Sun, 10 Feb 2019 19:08:53 +0000 (12:08 -0700)]
dvd: Add support for MPEG-1 on DVD

Use video attributes from IFO file to set video stream type.

May fix https://github.com/HandBrake/HandBrake/issues/1880

6 years agostream: Improve probing of unknown streams
John Stebbins [Sun, 10 Feb 2019 18:34:33 +0000 (11:34 -0700)]
stream: Improve probing of unknown streams

Fixes detection of MPEG-1 in program streams

6 years agoWinGui: Utilise new hb_global_init_no_hardware when hb_global_init fails. The prefe...
sr55 [Mon, 11 Feb 2019 14:25:46 +0000 (14:25 +0000)]
WinGui: Utilise new hb_global_init_no_hardware when hb_global_init fails.   The preferences Video tab now notes that hardware encoding options are disabled.

6 years agoWinGui: Remove left over Advanced Tab checkbox
sr55 [Mon, 11 Feb 2019 14:05:27 +0000 (14:05 +0000)]
WinGui: Remove left over Advanced Tab checkbox

6 years agolibhb: Add a hb_global_init_no_hardware that disables all the hardware encoder/decode...
sr55 [Sat, 9 Feb 2019 18:12:44 +0000 (18:12 +0000)]
libhb: Add a hb_global_init_no_hardware that disables all the hardware encoder/decode init and check code. For users where drivers or other system issues prevent HandBrake from loading.

6 years agoMacGui: fix queue table items expanded/collapsed state after an undo/redo.
Damiano Galassi [Sat, 9 Feb 2019 08:59:34 +0000 (09:59 +0100)]
MacGui: fix queue table items expanded/collapsed state after an undo/redo.

6 years agolibhb: Append input bitrate to end of audio source description. Closes #1718.
Andrew Brezovsky [Thu, 7 Feb 2019 04:47:24 +0000 (23:47 -0500)]
libhb: Append input bitrate to end of audio source description. Closes #1718.

Signed-off-by: Andrew Brezovsky <abrezovsky@gmail.com>
6 years agoMacGui: refactor some queue related properties out of HBJob to a new HBQueueItem...
Damiano Galassi [Thu, 7 Feb 2019 18:11:51 +0000 (19:11 +0100)]
MacGui: refactor some queue related properties out of HBJob to a new HBQueueItem class.

6 years agoWinGui: Change the behaviour of the destination source alert to revert to the last...
sr55 [Thu, 7 Feb 2019 16:51:51 +0000 (16:51 +0000)]
WinGui: Change the behaviour of the destination source alert to revert to the last change before the user triggered the alert.

6 years agolibhb: do not set HB_STATE_WORKDONE before all the work threads are closed.
Damiano Galassi [Sun, 3 Feb 2019 07:28:01 +0000 (08:28 +0100)]
libhb: do not set HB_STATE_WORKDONE before all the work threads are closed.

6 years agoMacGui: correct revealSelectedQueueItemsSources: action validation.
Damiano Galassi [Tue, 5 Feb 2019 14:43:26 +0000 (15:43 +0100)]
MacGui: correct revealSelectedQueueItemsSources: action validation.

6 years agoMacGui: fix subtitles tab actions.
Damiano Galassi [Tue, 5 Feb 2019 14:43:02 +0000 (15:43 +0100)]
MacGui: fix subtitles tab actions.

6 years agoMacGui: use a view-based table view in the queue window.
Damiano Galassi [Tue, 5 Feb 2019 13:03:27 +0000 (14:03 +0100)]
MacGui: use a view-based table view in the queue window.

6 years agoWinGui: Fix instance handling in Libencode.
sr55 [Sun, 3 Feb 2019 22:15:53 +0000 (22:15 +0000)]
WinGui: Fix instance handling in Libencode.

6 years agoWinGui: Make the disposal of services more aggressive. May Fix or help in #1851
sr55 [Sat, 2 Feb 2019 10:56:34 +0000 (10:56 +0000)]
WinGui: Make the disposal of services more aggressive. May Fix or help in #1851

6 years agoWinGui: Remove inline Destination check. It's more annoying than useful. Fixes #1857
sr55 [Wed, 30 Jan 2019 18:56:35 +0000 (18:56 +0000)]
WinGui: Remove inline Destination check. It's more annoying than useful. Fixes #1857

6 years agoMacGui: remove the old advanced x264 options view.
Damiano Galassi [Wed, 30 Jan 2019 10:09:02 +0000 (11:09 +0100)]
MacGui: remove the old advanced x264 options view.

6 years agoMacGui: made the preview hud a bit larger.
Damiano Galassi [Wed, 30 Jan 2019 08:55:12 +0000 (09:55 +0100)]
MacGui: made the preview hud a bit larger.

6 years agocli: Make --start-at and --stop-at strings more intuitive.
Bradley Sepos [Mon, 28 Jan 2019 03:17:56 +0000 (22:17 -0500)]
cli: Make --start-at and --stop-at strings more intuitive.

Inspired by https://github.com/HandBrake/HandBrake-docs/pull/70.

6 years agolibhb: Temporarily log out the error code for unlink to figure out why previews are...
sr55 [Mon, 28 Jan 2019 20:24:17 +0000 (20:24 +0000)]
libhb: Temporarily log out the error code for unlink to figure out why previews are not being removed for a user.  #1851

6 years agocli: Clarify --start-at and --stop-at help language.
Bradley Sepos [Mon, 28 Jan 2019 02:44:48 +0000 (21:44 -0500)]
cli: Clarify --start-at and --stop-at help language.

https://github.com/HandBrake/HandBrake-docs/pull/70

6 years agoWinGui: Basic implementation of Queue Up/Down Buttons. Does not yet handle post selec...
sr55 [Sun, 27 Jan 2019 20:46:19 +0000 (20:46 +0000)]
WinGui: Basic implementation of Queue Up/Down Buttons. Does not yet handle post selection.

6 years agoWinGui: Remove incorrect declaration in the app manifest.
sr55 [Sun, 27 Jan 2019 17:12:16 +0000 (17:12 +0000)]
WinGui: Remove incorrect declaration in the app manifest.

6 years agoWinGui: Update application manifest
sr55 [Sun, 27 Jan 2019 17:06:37 +0000 (17:06 +0000)]
WinGui: Update application manifest

6 years agoWinGui: Move the Queue Recovery option from the source panel to the Queue Menu. ...
sr55 [Fri, 25 Jan 2019 21:08:39 +0000 (21:08 +0000)]
WinGui: Move the Queue Recovery option from the source panel to the Queue Menu.  It's not something that's frequently used and doesn't really belong on the Source Menu. Makes the source menu less cluttered.

6 years agoWinGui: Adding some additional validation to the destination box.
sr55 [Fri, 25 Jan 2019 20:35:43 +0000 (20:35 +0000)]
WinGui: Adding some additional validation to the destination box.

6 years agoscripts: Update to mingw-w64-build 5.0.0.
Bradley Sepos [Sat, 26 Jan 2019 03:37:49 +0000 (22:37 -0500)]
scripts: Update to mingw-w64-build 5.0.0.

Bump to mingw-w64 6.0.0, gcc 8.2.0 and friends.

6 years agoSet the right deployment target in xcconfig.
Damiano Galassi [Fri, 25 Jan 2019 10:46:58 +0000 (11:46 +0100)]
Set the right deployment target in xcconfig.

6 years agoWinGui: Updated German translation
sr55 [Thu, 24 Jan 2019 21:49:18 +0000 (21:49 +0000)]
WinGui: Updated German translation

6 years agoWinGui: Update Min Title Scan label
sr55 [Thu, 24 Jan 2019 21:47:40 +0000 (21:47 +0000)]
WinGui: Update Min Title Scan label

6 years agoWinGui: Improve Add to queue error Handling. Combine 2 Dialog prompts into one...
sr55 [Thu, 24 Jan 2019 21:42:14 +0000 (21:42 +0000)]
WinGui: Improve Add to queue error Handling.   Combine 2 Dialog prompts into one. + Allow early exit from Add Selection.
 #1833

6 years agoMacGui: set the minimum macOS version to 10.11
Damiano Galassi [Thu, 24 Jan 2019 14:54:05 +0000 (15:54 +0100)]
MacGui: set the minimum macOS version to 10.11

6 years agoFix an annoying warning in Xcode.
Damiano Galassi [Wed, 23 Jan 2019 10:55:09 +0000 (11:55 +0100)]
Fix an annoying warning in Xcode.

6 years agoFix a few warnings.
Damiano Galassi [Wed, 23 Jan 2019 10:29:45 +0000 (11:29 +0100)]
Fix a few warnings.

6 years agoencavcodec: enable "row-mt=1" for vp9
John Stebbins [Tue, 22 Jan 2019 16:48:09 +0000 (08:48 -0800)]
encavcodec: enable "row-mt=1" for vp9

Improves encoding speed by about 20% for SD content and 35% for HD
content in my testing on a 4 core 8 thread system.  CPU utilization is
around 60% as compared with 40% prior to the change.

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

6 years agoMacGui: Update min title duration preferences label.
Damiano Galassi [Tue, 22 Jan 2019 15:26:06 +0000 (16:26 +0100)]
MacGui: Update min title duration preferences label.

6 years agoscan: only apply min duration filter to BD and DVD
John Stebbins [Sat, 19 Jan 2019 00:40:14 +0000 (16:40 -0800)]
scan: only apply min duration filter to BD and DVD

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

6 years agoUpdating the steps on the pull request template.
Scott [Mon, 21 Jan 2019 18:44:45 +0000 (18:44 +0000)]
Updating the steps on the pull request template.

Try to encourage folks to talk to use before working on code!

6 years agobd: Add support for UHD discs
Petri Hintukainen [Tue, 25 Dec 2018 13:06:30 +0000 (15:06 +0200)]
bd: Add support for UHD discs

Fixes #1301

6 years agoFix potential NULL pointer dereference
John Stebbins [Wed, 16 Jan 2019 00:35:27 +0000 (16:35 -0800)]
Fix potential NULL pointer dereference

6 years agoAlign data in hb_buffer_t buffers
John Stebbins [Wed, 16 Jan 2019 00:29:05 +0000 (16:29 -0800)]
Align data in hb_buffer_t buffers

Use av_malloc/av_free for hb_buffer_t buffers since av_malloc always
aligns.

6 years agolapsharp: mirror image data into stride region
John Stebbins [Sat, 19 Jan 2019 18:41:59 +0000 (10:41 -0800)]
lapsharp: mirror image data into stride region

Adds a function to mirror image data into stride region. Mirroring the
data results in a less visible artefact down the right edge of the
image. Blanking resulted in a dark edge artefact.

Keeps function that blanks stride region and improves it's speed,
although it's not currently used.

6 years agolapsharp: blank frame buffer stride region
John Stebbins [Fri, 18 Jan 2019 22:27:14 +0000 (14:27 -0800)]
lapsharp: blank frame buffer stride region

Zero is not black.  Stride is used in computations and is assumed black.

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

6 years agolibhb: Remove some NLMeans TODO comments.
Bradley Sepos [Wed, 16 Jan 2019 08:34:27 +0000 (03:34 -0500)]
libhb: Remove some NLMeans TODO comments.

NLMeans has used frame threading for years, so SIMD aside, these areas are sufficiently parallelized overall.

6 years agolibhb: Reduce the number of threads NLMeans uses with many logical cores.
Bradley Sepos [Wed, 16 Jan 2019 06:38:37 +0000 (01:38 -0500)]
libhb: Reduce the number of threads NLMeans uses with many logical cores.

Too many threads increases CPU cache pressure, reducing performance.

6 years agocontrib: Update x265 cross compilation directives.
Bradley Sepos [Tue, 8 Jan 2019 02:01:30 +0000 (21:01 -0500)]
contrib: Update x265 cross compilation directives.

Necessary for cross compiling with gcc 8.

6 years agoconfigure: fix conftest turds
John Stebbins [Sat, 19 Jan 2019 19:12:07 +0000 (11:12 -0800)]
configure: fix conftest turds

6 years agoencavcodec: improve comment about ffmpeg timestamp handling
John Stebbins [Fri, 18 Jan 2019 20:19:14 +0000 (12:19 -0800)]
encavcodec: improve comment about ffmpeg timestamp handling

6 years agoWinGui: Fix preset updates. Built in presets should now automatically update. It...
sr55 [Fri, 18 Jan 2019 20:14:44 +0000 (20:14 +0000)]
WinGui: Fix preset updates. Built in presets should now automatically update. It will try and preserve old prests but this may not always be possible.

6 years agoencavcodec: Make VCE h.265 encoder emit an IDR for every GOP
John Stebbins [Thu, 17 Jan 2019 16:51:48 +0000 (08:51 -0800)]
encavcodec: Make VCE h.265 encoder emit an IDR for every GOP

6 years agowork: fix videotoolbox encoder logging
John Stebbins [Wed, 16 Jan 2019 17:18:08 +0000 (09:18 -0800)]
work: fix videotoolbox encoder logging

Log h.264 profile and level, and h.265 profile

6 years agoencavcodec: Fix dts timestamps in VT h.265 encoding
John Stebbins [Wed, 16 Jan 2019 16:49:47 +0000 (08:49 -0800)]
encavcodec: Fix dts timestamps in VT h.265 encoding

The VT h.265 encoder appears to enable b-pyramid, but doesn't expose any
method to modify the setting or query for its value.  So we'll just
assume it's always on whenever there are b-frames.

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

6 years agoencavcodec: set frame.key_frame for AMD VCE encoder
John Stebbins [Tue, 15 Jan 2019 00:45:27 +0000 (16:45 -0800)]
encavcodec: set frame.key_frame for AMD VCE encoder

AMD VCE encoder needs this in order to force an IDR rather than an I
frame.

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

6 years agoffmpeg: enable pict_type setting in AMD VCE
John Stebbins [Tue, 15 Jan 2019 00:40:17 +0000 (16:40 -0800)]
ffmpeg: enable pict_type setting in AMD VCE

This is required by HandBrake in order to place IDR frames
at chapter boundaries

6 years agomuxavformat: use better approximation for duration of last video frame
John Stebbins [Wed, 16 Jan 2019 18:25:47 +0000 (10:25 -0800)]
muxavformat: use better approximation for duration of last video frame

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

6 years agoMacGui: support SSA file import.
Damiano Galassi [Tue, 15 Jan 2019 13:26:33 +0000 (14:26 +0100)]
MacGui: support SSA file import.

6 years agoWinGui: Update EncoderHelpers for Subtitle changes
sr55 [Mon, 14 Jan 2019 22:21:54 +0000 (22:21 +0000)]
WinGui: Update EncoderHelpers for Subtitle changes

6 years agoWinGui: Initial support for SSA file import.
sr55 [Mon, 14 Jan 2019 22:17:45 +0000 (22:17 +0000)]
WinGui: Initial support for SSA file import.

6 years agoLinGui: remove unused 'active' variable
John Stebbins [Mon, 14 Jan 2019 21:42:10 +0000 (13:42 -0800)]
LinGui: remove unused 'active' variable

6 years agoencavcodec: remove unused 'job' variable
John Stebbins [Mon, 14 Jan 2019 21:40:22 +0000 (13:40 -0800)]
encavcodec: remove unused 'job' variable

6 years agoencavcodec: respect inline_parameter_sets setting
John Stebbins [Mon, 14 Jan 2019 21:38:10 +0000 (13:38 -0800)]
encavcodec: respect inline_parameter_sets setting

6 years agossautil: fix strndup on mingw
John Stebbins [Mon, 7 Jan 2019 19:34:29 +0000 (12:34 -0700)]
ssautil: fix strndup on mingw

6 years agossautil: remove debug printf
John Stebbins [Mon, 7 Jan 2019 19:34:13 +0000 (12:34 -0700)]
ssautil: remove debug printf

6 years agossa: improve SSA to TX3G conversion
John Stebbins [Mon, 7 Jan 2019 17:52:28 +0000 (10:52 -0700)]
ssa: improve SSA to TX3G conversion

We were only applying SSA inline override tags.  With this patch we now
parse SSA style descritions in the SSA header and apply them per event.

6 years agoports: fix memory corruption in hb_getline
John Stebbins [Sun, 6 Jan 2019 20:03:41 +0000 (13:03 -0700)]
ports: fix memory corruption in hb_getline

6 years agoLinGui: fix position of subtitle radio buttons
John Stebbins [Sun, 6 Jan 2019 18:41:18 +0000 (11:41 -0700)]
LinGui: fix position of subtitle radio buttons

6 years agoports: move hb_getline to ports.c where it belongs
John Stebbins [Sun, 6 Jan 2019 17:57:49 +0000 (10:57 -0700)]
ports: move hb_getline to ports.c where it belongs

6 years agoAdd hb_getline since mingw doesn't have getline function
John Stebbins [Sun, 6 Jan 2019 17:53:55 +0000 (10:53 -0700)]
Add hb_getline since mingw doesn't have getline function

6 years agoLinGui: add SSA import
John Stebbins [Sun, 6 Jan 2019 17:33:11 +0000 (10:33 -0700)]
LinGui: add SSA import

6 years agodecssasub: fix crash when filename is invalid
John Stebbins [Sun, 6 Jan 2019 17:31:44 +0000 (10:31 -0700)]
decssasub: fix crash when filename is invalid

6 years agodecssasub: fix subtitle start/stop time offset
John Stebbins [Sun, 6 Jan 2019 15:52:19 +0000 (08:52 -0700)]
decssasub: fix subtitle start/stop time offset

6 years agoAdd SSA subtitle import
John Stebbins [Sat, 5 Jan 2019 23:53:50 +0000 (16:53 -0700)]
Add SSA subtitle import

6 years agoWinGui: Make the toolbar customisation options more discoverable by making them prefe...
sr55 [Mon, 14 Jan 2019 21:18:29 +0000 (21:18 +0000)]
WinGui: Make the toolbar customisation options more discoverable by making them preferences in the options screen.

6 years agoWinGui: Removing a miss remnant of the old advanced tab.
sr55 [Mon, 14 Jan 2019 21:04:05 +0000 (21:04 +0000)]
WinGui: Removing a miss remnant of the old advanced tab.

6 years agoWinGui: Make the MRU feature more useful. If the directory is not found, check to...
sr55 [Sat, 12 Jan 2019 19:56:08 +0000 (19:56 +0000)]
WinGui: Make the MRU feature more useful. If the directory is not found, check to see if the Parent directory exists.  #1795

6 years agoWinGui: Minor tidyup in MVM.
sr55 [Sat, 12 Jan 2019 19:48:22 +0000 (19:48 +0000)]
WinGui: Minor tidyup in MVM.

6 years agoWinGui: Strip out some legacy code for x264 options handling.
sr55 [Sat, 12 Jan 2019 19:41:52 +0000 (19:41 +0000)]
WinGui: Strip out some legacy code for x264 options handling.

6 years agoWinGui: Improve the quality of text rendering on the installer on high DPI displays.
sr55 [Fri, 11 Jan 2019 21:59:32 +0000 (21:59 +0000)]
WinGui: Improve the quality of text rendering on the installer on high DPI displays.

6 years agoWinGui: Improvements to the installer. Fixed the issue where the uninstaller could...
sr55 [Fri, 11 Jan 2019 21:26:10 +0000 (21:26 +0000)]
WinGui: Improvements to the installer.  Fixed the issue where the uninstaller could appear behind the installer.  Updated the Background Image on the installer to the project logo.

6 years agodecavcodec: fix more potential uses of uninitialized variables
Tim Walker [Tue, 8 Jan 2019 17:57:40 +0000 (18:57 +0100)]
decavcodec: fix more potential uses of uninitialized variables

Fixes a crash I experienced locally following 76f14dad963db46961ce3d425a102ac3d898ce10

Inspired by 3c95342a8cdf5b3b03d8b5e94ec099b0bc6a4f35

6 years agocontrib: Revert libvpx clang patch added in e3817b13cfebce6f7542be6761bd9fa8b51e1005.
Bradley Sepos [Tue, 8 Jan 2019 13:46:43 +0000 (08:46 -0500)]
contrib: Revert libvpx clang patch added in e3817b13cfebce6f7542be6761bd9fa8b51e1005.

I must have forgotten to `make libvpx.xclean` before building.

6 years agocontrib: Fix potential assembly issues with libvpx and AVX-512.
Bradley Sepos [Tue, 8 Jan 2019 00:08:48 +0000 (19:08 -0500)]
contrib: Fix potential assembly issues with libvpx and AVX-512.

Fixes cross compilation with gcc 8 and where clang is acting weird.

6 years agofix missing frames when transcoding m2ts files
John Stebbins [Mon, 7 Jan 2019 22:30:05 +0000 (15:30 -0700)]
fix missing frames when transcoding m2ts files

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

6 years agoscripts: Update to mingw-w64-build 4.1.1.
Bradley Sepos [Mon, 7 Jan 2019 21:43:15 +0000 (16:43 -0500)]
scripts: Update to mingw-w64-build 4.1.1.

Improves error reporting and allows use of sha256sum on systems without shasum.

6 years agoLinGui: update ubuntu package build dependencies
John Stebbins [Mon, 7 Jan 2019 13:14:34 +0000 (06:14 -0700)]
LinGui: update ubuntu package build dependencies

6 years agoflatpak: remove unnecessary dependencies
John Stebbins [Sun, 6 Jan 2019 20:41:23 +0000 (13:41 -0700)]
flatpak: remove unnecessary dependencies

6 years agoconfigure: fix LDProbe cleanup on mingw
John Stebbins [Sun, 6 Jan 2019 20:10:30 +0000 (12:10 -0800)]
configure: fix LDProbe cleanup on mingw

LDProbe tries to delete conftest, but should delete conftest.exe on
mingw.  So delete *both* in a try-catch block.

6 years agodecavcodec: fix potential use of uninitialized variables
John Stebbins [Sat, 5 Jan 2019 18:58:38 +0000 (11:58 -0700)]
decavcodec: fix potential use of uninitialized variables

6 years agoflatpak: update to freedesktop 18.08 platform/sdk
John Stebbins [Sat, 5 Jan 2019 16:35:53 +0000 (09:35 -0700)]
flatpak: update to freedesktop 18.08 platform/sdk

6 years agoflatpak: fix x264 link errors in latest flatpak Sdk
John Stebbins [Fri, 4 Jan 2019 21:58:11 +0000 (14:58 -0700)]
flatpak: fix x264 link errors in latest flatpak Sdk

Latest flatpak freedesktop Sdk gcc uses PIE by default which requires
that we build x264 with PIC