Scott [Sun, 27 Dec 2015 20:15:22 +0000 (20:15 +0000)]
WinGui: Couple of fixes for the Edit Queue feature. (Video Tune, Video Bitrate, Video Preset and Framerate) options were not setting correctly.
In addition, if the app recovers the queue, it will by default enable the whole UI now. This is needed particularly with the in-line queue when enabled.
Scott [Sat, 12 Dec 2015 21:07:26 +0000 (21:07 +0000)]
WinGui: Fix an issue where presets crop settings could be incorrectly stored for fresh installs of the app until the user reset built-in presets manually.
Scott [Sat, 12 Dec 2015 14:01:01 +0000 (14:01 +0000)]
WinGui: Cosmetic fixes on the Video and Audio Tabs. Bug fix with the Fast Decode checkbox not setting correctly all the time. Improved scan cancel handling.
Tim Walker [Sat, 21 Nov 2015 23:26:54 +0000 (00:26 +0100)]
libav: remove a pointless check in the DTS decoder.
The check resulted in an error with many real-world streams,
which are otherwise perfectly valid. The auxiliary data length
is not reliable and/or the ETSI DTS specification is incorrect.
Fixing importing and exporting of chapters via CSV files. Adding proper handling of escape characters, handling of most common alternative value separators. Fixing resource leakage via undisposed FileDialogs.
John Stebbins [Fri, 13 Nov 2015 18:01:23 +0000 (10:01 -0800)]
reader: remove track count limitation
Don't use hard coded 100 fifo array, allocate what is needed.
We probably just crashed if the number of tracks was > 99 since the
limit of 100 fifos was not universally checked.
schrotthaufen [Fri, 13 Nov 2015 16:11:28 +0000 (17:11 +0100)]
Added missing NULL pointer check in encx265Close
pv was never checked to be NULL, which would lead to a NULL pointer
dereference in the pv->delayed_chapters != NULL check, when
w->private_data is NULL.
John Stebbins [Thu, 12 Nov 2015 17:31:19 +0000 (09:31 -0800)]
bd: fix discontinuity handling
Tag only one buffer with discontinuity flag, not multiple.
Flush pre-discontinuity buffers before signaling the discontinuity, not
after.
Make sure discontinuity flag is on the buffer with the PCR change
when possible.
Scott [Tue, 10 Nov 2015 23:21:57 +0000 (23:21 +0000)]
WinGui: Add warning dialog on Destination Browse Button if disk space is low. Added new Advanced Option in preferences that will force the queue to check for low disk space before starting each job and pause if necessary.
Low Disk Space level is currently set at 10GB. Will add a preference to adjust this at a later point
John Stebbins [Tue, 10 Nov 2015 20:40:54 +0000 (12:40 -0800)]
libhb: repair split packets in reader
We split PES packets when there is a PCR change in the middle of the
packet. This works fine for audio and video where the decoder parses
the ES to find frame boundaries. But it does not work for some decoders
such as PGS subtitles. So mark split buffers and reassemble them in
reader after processing the PCR change.
John Stebbins [Wed, 28 Oct 2015 18:30:02 +0000 (11:30 -0700)]
scan: increase sensitivity to video flags
We were mis-detecting framerate often because we did not see enough
samples of various video flags while scanning previews. So move
sampling of these flags into the inner video decode loop and collect
more samples.
John Stebbins [Tue, 3 Nov 2015 17:46:28 +0000 (09:46 -0800)]
libhb: make muxer, sync, and reader behave like other work objects
simplify job initialization sequence, clean up code, and document
dependencies in the sequence better.
Make hb_add set job->sequence_id. It is no longer necessary for the
frontend to do this. If the frontend needs the sequence_id, it is
returned by hb_add().
Clean up use of interjob. do_job() now uses sequence_id to detect when
a new sequence of related jobs is running and automatically clears
interjob.
John Stebbins [Mon, 9 Nov 2015 18:11:55 +0000 (10:11 -0800)]
LinGui: Force override ubuntu package versions
Idiot ubuntu packagers add a suffix to the "upstream" version number
that causes their handbrake packages to be seen as "more recent"
than our packages. So add "zhb" suffix to our version number to
force our packages to be seen a "more recent".