summaryrefslogtreecommitdiffstats
path: root/libhb
Commit message (Collapse)AuthorAgeFilesLines
* opencl: removit it (#777)John Stebbins2017-06-1216-3823/+57
| | | | It was only used for scaling, it fails far too often and is only faster on a limited selectoin of hardware.
* Allow audio fallback to be "None" (#623)John Stebbins2017-06-123-29/+34
| | | | | | | | | | | * Allow audio fallback to be "None" When audio fallback is "None", a failure to do passthru will result in no output audio track being added. * simplify audio autopassthru fallback logic Drop track when fallback codec is invalid instead of falling back to a default. Since all presets have a fallback set, the default fallback condition would only ever be triggered by an invalid setting.
* scan: improve support for very short source video streamsJohn Stebbins2017-06-091-55/+43
| | | | Fixes https://github.com/HandBrake/HandBrake/issues/779
* preset: fix importing some preset versions (#774)John Stebbins2017-06-071-6/+18
| | | | | If a preset file is read that has a version where no specific changes to the preset format were made, we did not perform an import even though some later preset version has changes.
* filter: add frame parallelizing filter wrapperJohn Stebbins2017-06-066-56/+403
| | | | | | | | | | | | This wrapper can be used to frame parallelize simple video filters. By simple, I mean there can be no temporal context that is shared from one frame to the next. Wrap unsharp and lapsharp filters. unsharp required a small rework to separate out temporary storage that is required when processing each frame. We now need to duplicate this storage for each thread. Closes #759.
* libhb: Fix C const issue in lapsharp.c.Bradley Sepos2017-06-041-12/+8
| | | | Simple runtime vs. compile time error, which Clang hid from me.
* sharpen: Use better tune names.Bradley Sepos2017-06-031-8/+8
|
* libhb: Cosmetics in lapsharp.c.Bradley Sepos2017-06-031-13/+21
|
* libhb: Revise sharpen presets and tunes.Bradley Sepos2017-06-011-10/+106
| | | | Adds verystrong presets to unsharp and lapsharp filters. Adds mediumfine and mediumcoarse tunes to unsharp filter. Fixes some values.
* libhb: Add Lapsharp kernel isolap and use with Grain tune.Bradley Sepos2017-06-012-9/+27
|
* nlmeans: fix prefilter passthruJohn Stebbins2017-05-311-1/+1
| | | | This is an error that crept in when making nlmeans multithreaded
* libhb: Add LapSharp sharpening filter.Bradley Sepos2017-05-306-1/+472
|
* libhb: Add Unsharp sharpening filter.Bradley Sepos2017-05-307-1/+736
| | | | Closes #525.
* stream: Improve stream type detection through probingJohn Stebbins2017-05-251-39/+21
| | | | | | If the stream is damaged, a probe can fail due to bad data at the start of the probe buffer. So try filling the probe buffer from multiple start positions in the file.
* preset: Fix surround audio bitrate for general presets.Bradley Sepos2017-05-211-9/+9
| | | | Was supposed to be 640 when converting a non-AC3 source track.
* encavcodecaudio: work around lame bugJohn Stebbins2017-05-111-11/+23
| | | | | | | | | On windows builds, there is an upstream bug in the lame encoder that causes an extra output packet that has the same timestamp as the second to last packet. This causes an error during muxing. Drop the packet with the duplicate timestamp. Fixes https://github.com/HandBrake/HandBrake/issues/726
* stream: fix chapter marker durationsJohn Stebbins2017-04-281-5/+20
| | | | | libav isn't guaranteed to set AVChapter.end. So don't use it. Use AVChapter.start instead.
* decsrt: fix p-to-p start time after seekingJohn Stebbins2017-04-155-76/+130
| | | | | | | Reader can skip data at the beginning of the file. We were not informing decsrt how much was skipped when pts_to_start caused the skip. Fixes https://forum.handbrake.fr/viewtopic.php?f=11&t=36258
* avfilter: fix handling of bad settingsJohn Stebbins2017-04-141-0/+1
| | | | | After encountering a bad setting, it was removing all filters starting with the one with bad settings.
* preset: fix audio settings when samplerate == autoDamiano Galassi2017-04-141-0/+4
|
* scan: fix very slow scanning for some filesJohn Stebbins2017-04-123-4/+6
| | | | | | | The threshold in bytes for when to give up trying to decode a frame was too big for a lot of streams. It was made large to accomodate 4K raw video. Instead of counting bytes, count frames fed to the decoder. This is more consistant regardless of video resolution and codec.
* preset: fix sanitizing audio settings when samplerate != AutoJohn Stebbins2017-04-121-2/+7
| | | | | The samplerate was incorrectly copied to the job as a string instead of an int which caused invalid sanitizing of audio settings.
* scan: enable HBTF_NO_IDR when not enough previews foundJohn Stebbins2017-04-111-0/+4
| | | | | | | | Setting this flag signals to libav to not wait for IDR or recovery points before returning frames to us. Some videos have neither IDRs or recovery points, so this fixes transcoding such video. Fixes https://github.com/HandBrake/HandBrake/issues/456
* Fix raw video timestampsJohn Stebbins2017-04-093-0/+7
| | | | | | Raw video has no timestamps. But we drop frames in sync that have no timestamps. So detect raw video and extrapolate timestamps from framerate.
* qsv: hevc10 fix for correct declaration of data/zero bitsmaxd2017-04-071-1/+1
|
* batch: fix crash when a stream scan failsJohn Stebbins2017-03-281-1/+1
|
* libhb: initialize sleep prevention reasonForActivity CFStringRef inside a ↵Damiano Galassi2017-03-151-6/+4
| | | | function, fix build with icc mac compiler. Patch by jwardnh.
* qsv: fixing variable re-use (#627)maximd332017-03-141-5/+6
| | | | Closes #625.
* opencl: cleaning more leaks (#628)maximd332017-03-141-62/+95
| | | | opencl: cleaning more leaks
* Remove Fontconfig on Windows (#610)Oleg Oshmyan2017-03-121-2/+6
| | | | | | | | | | | * Remove Fontconfig on Windows Let libass use its DirectWrite font provider backend instead of Fontconfig. This eliminates Fontconfig's font cache generation delay that occurred at the start of an encode after a system font was (un)installed or when HandBrake was installed and used to burn text subtitles for the first time. * Remove LibHB's dependency on Fontconfig when it's not used
* subtitles: simplify and shorten subtitle descriptions (#591)John Stebbins2017-03-107-81/+107
| | | | | | | | | | | | | | | | | | * subtitles: simplify and shorten subtitle descriptions Generally, it eliminates parens to make things more readable. I.e. it turns this: English (Closed Caption)(Wide Screen)(Bitmap)(VOBSUB) Into this: English, Closed Caption [Wide Screen, VOBSUB] * Revise punctuation per BradleyS request * fix subtitle description formatting * incorporate suggestions from PR
* text subs: use generic font family names (#614)John Stebbins2017-03-106-6/+15
| | | | | | | | | | | | * text subs: use generic font family names Allows the platform more flexibility in choosing the "best" font for the platform. * rendersub: make font configurable per platform Use Lucida Console for mono font on windows since it chooses ugly, difficult to read Courier New when using monospace family name.
* Fix various spelling mistakes (#613)Sebastian Ramacher2017-03-101-1/+1
| | | | | | | | | | * Fix spelling of 'source' * Fix spelling of 'specify' * Fix spelling of 'internal' * Fix spelling of 'quitting'
* opencl: fixing more resource leaksmaxd2017-03-101-15/+24
|
* opencl: Fix resource leak.maxd2017-03-081-0/+2
| | | | Closes #617 and closes #618.
* qsv: only main10 profile supported for HEVC 10b encodemaxd2017-03-052-6/+9
|
* qsv: added HEVC 10-bit as encoder, should help for GUI integrationmaxd2017-03-055-6/+27
|
* qsv: adding hevc10 support starting from KBL platformmaxd2017-03-052-14/+54
|
* qsv: adding hevc decode supportmaxd2017-03-041-0/+8
|
* sync: fix small video dejitter errorJohn Stebbins2017-03-031-0/+5
| | | | | | | | | | | | | This very small error snowballs into a crash in x264 :-p If the amount of jitter on the first frame in the queue was small (about 1 tick) then jitter would not be removed from that frame. This extra tick of jitter can appear on different frames depending on when frame arrives and how much has been queued. This very small amount of randomness lead to problems in the VFR filter. A frame duration difference as small as 1 tick can lead to an extra frame getting duplicated when doing CFR. When doing 2 pass encoding, this extra frame causes x264 to crash at the end of the 2nd pass.
* work: set orig_vrate correctlyJohn Stebbins2017-02-281-1/+3
| | | | | | | | | It was getting set to the title's rate instead of the rate that the filter chain sets. An incorrect vrate causes x265 rate control breakage. Fixes https://github.com/HandBrake/HandBrake/issues/600
* batch: Support --min-duration when doing batch scansJohn Stebbins2017-02-273-4/+11
| | | | Fixes https://github.com/HandBrake/HandBrake/issues/501
* vfr: fix invalid read/writeJohn Stebbins2017-02-261-3/+2
| | | | | | Probably the cause of crash seen in nightly builds fixes https://github.com/HandBrake/HandBrake/issues/597
* encca_aac: fix a small leakDamiano Galassi2017-02-241-0/+1
|
* encca_aac: use the libhb list helper functions to append buffersDamiano Galassi2017-02-241-34/+20
|
* encca_aac: no need to pad manually the remaining dataDamiano Galassi2017-02-241-12/+0
|
* encca_aac: flush all the remaining packets from encodersDamiano Galassi2017-02-241-17/+30
|
* audio_resample: fix mapping of mono to single channel (#593)John Stebbins2017-02-241-0/+27
| | | | | | | | | | | | | | | | | * audio_resample: fix mapping of mono to single channel libav's mixer code can't map single channel layouts to other single channel layouts. And we were asking it to map e.g. front left to front center because out MONO mixdown == libav front center. So when we request MONO and the source is any single channel, change our output layout to match the input. fixes https://forum.handbrake.fr/viewtopic.php?f=12&t=36016&sid=c5993fa7375792a940152c8adda19a54 * Incorporate Rodeo's suggestions * fix grammar
* encx265: fix compiler warningJohn Stebbins2017-02-221-1/+0
|
* encx265: fix 2 pass encoding when framerate is wrongJohn Stebbins2017-02-221-3/+2
| | | | | | x265 expects the framerate specified to be the same for both passes. So we must set the same value even when we compute that the actual framerate differs from what the file's header says.