summaryrefslogtreecommitdiffstats
path: root/test/test.c
Commit message (Collapse)AuthorAgeFilesLines
* Add SSA subtitle importJohn Stebbins2019-01-141-2/+113
|
* Update copyright dates to 2019.Bradley Sepos2019-01-011-1/+1
|
* CLI: Add command line override for SubtitleBurnDVDSubJohn Stebbins2018-10-311-1/+12
| | | | | | | ... and SubtitleBurnBDSub. If these preset values were true, there was no way to encode without burning the first DVD or BD subtitle track using the CLI.
* fix race in getting sequence_id of completed jobJohn Stebbins2018-08-071-1/+1
| | | | | | | | | The sequence_id was only available for the WORKING state and not the WORKDONE state. But frontends poll for status periodically and can miss all status updates for the WORKING state if the file is very short or an error occurs early during transcoding. When WORKING status is missed, there was no way to know the sequence_id associated with the WORKDONE status.
* MacGui: set the minimum deployment target to 10.10. Remove Growl and use ↵Damiano Galassi2018-06-081-31/+9
| | | | macOS standard notifications. Remove deprecated API usage and code that doesn't compile anymore (QTKit).
* cli: Update help to list FFmpeg yadif.Bradley Sepos2018-05-291-1/+1
|
* Update copyright dates to 2018.Bradley Sepos2018-01-011-1/+1
|
* cli: Don't throttle non-tty output. #1067Bradley Sepos2017-12-241-8/+1
|
* cli: Fix typo in 6eb3ef1a.Bradley Sepos2017-12-241-2/+4
| | | | Properly fixes #1067.
* cli: Restore previous CLI progress separator.Bradley Sepos2017-12-241-4/+4
| | | | This basically reverts 7c438ad5ae81c31c660fc9a208dacd7177f54a24 and fixes #1067 for the upcoming release and until such a time as I can review further.
* Add adaptive streaming support (#972)John Stebbins2017-11-091-0/+11
| | | | | | | "Adaptive streaming" allows changing video parameters mid-stream at IDR boundaries. Such changes require new SPS and PPS NALs at the IDR. MP4 supports this with 'avc3' and 'hev1' sample entry types.
* CLI: add option to log version, title, and progress in jsonJohn Stebbins2017-11-061-5/+73
| | | This is useful for scripts and other frontends that need to parse CLI output.
* LinGui: Add "Category" dropdown to preset save dialogJohn Stebbins2017-11-061-1/+2
| | | | | | | | | | | This replaces the "New Folder" option in the presets menu. It enforces the folder structure we have agreed to and hopefully helps the user keep things organized. Note that users are allowed to save a custom preset to the same "Category" as an official preset. When they do this, a new custom category is created with the same name and the preset is saved in that folder.
* CLI: add help for --align-avJohn Stebbins2017-11-021-0/+3
|
* CLI: fix integer wrapping of p-to-p start/end timesJohn Stebbins2017-09-061-1/+1
|
* cli: Add --arate=auto to CLI help.Bradley Sepos2017-07-231-1/+1
|
* cli: Fix warning when audio sample rate is 0 or auto.Bradley Sepos2017-07-231-1/+1
|
* cli: Fix regression in a5450860.Bradley Sepos2017-06-191-0/+52
|
* cli: Fix typo in last commit.Bradley Sepos2017-06-171-1/+1
|
* cli: Fix encoding progress line breaks on Windows.Bradley Sepos2017-06-171-20/+41
|
* cli: Remove legacy BeOS code.Bradley Sepos2017-06-171-56/+1
| | | | *sniff*
* sync: work-around players with broken edit list supportJohn Stebbins2017-06-131-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | This adds a preset key AlignAVStart that enables this work-around. When enabled, blank frames are inserted or frames are dropped to force alignment of the initial timestamp of every audio and video stream. Aligning the start times minimizes the impact of broken edit list support in players. Closes #763. Squashed: sync: improve alignment when passthru audio is present presets: enable AlignAVStart for General and Gmail presets LinGui: Improve AlignAVStart tooltip sync: avoid inserting a black frame < nominal frame duration sync: fix start alignment when doing p-to-p encoding sync: add comments
* opencl: removit it (#777)John Stebbins2017-06-121-14/+0
| | | | It was only used for scaling, it fails far too often and is only faster on a limited selectoin of hardware.
* Remove the OpenCL Bicubic scaling option. Unfortunatly it's causing too many ↵sr552017-06-071-7/+0
| | | | problems and it's maximum 5% performance improvement (in ideal circumstances) doesn't justify the effort to continue with it. The OpenCL framework will remain in place in case we decide to use it for something in the future. Closes #690
* cli: add an additional null check to silence a clang static analyizer warning.Damiano Galassi2017-05-311-7/+10
|
* cli: Avoid carriage return in progress output when piping.Bradley Sepos2017-05-311-9/+31
|
* libhb: Add LapSharp sharpening filter.Bradley Sepos2017-05-301-0/+95
|
* libhb: Add Unsharp sharpening filter.Bradley Sepos2017-05-301-0/+94
| | | | Closes #525.
* CLI: don't override preset subtitle burn defaults...John Stebbins2017-03-221-21/+24
| | | | Unless user explicitly overrides with command line options
* CLI: clean up when exiting earlyJohn Stebbins2017-03-211-11/+14
| | | | "HandBrakeCLI --help" and other options didn't delete temp directories
* subtitles: simplify and shorten subtitle descriptions (#591)John Stebbins2017-03-101-5/+1
| | | | | | | | | | | | | | | | | | * 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
* Fix various spelling mistakes (#613)Sebastian Ramacher2017-03-101-4/+4
| | | | | | | | | | * Fix spelling of 'source' * Fix spelling of 'specify' * Fix spelling of 'internal' * Fix spelling of 'quitting'
* cli: Adding hb_opencl_set_enable when --use-opencl is set. #496sr552017-01-151-0/+5
|
* json: revise range "End" for time and frame rangesJohn Stebbins2017-01-111-2/+9
| | | | | "End" was a duration. It is now the actual "End" position in 90khz ticks or frames.
* Update copyright dates to 2017.Bradley Sepos2017-01-011-1/+1
|
* CLI: fix csv file chapter importJohn Stebbins2016-12-291-2/+2
|
* libhb: add new color tags for Bt 2020 and SMPTE ST 2084Damiano Galassi2016-12-211-0/+3
|
* CLI: allow overriding automatically selected "default" subtitleJohn Stebbins2016-12-151-4/+22
|
* CLI: fix --no-comb-detectJohn Stebbins2016-12-011-1/+1
|
* CLI: fix specifying audio track namesJohn Stebbins2016-11-181-1/+1
| | | | Was using codec instead of name strings. yet another cut/paste error :(
* Add new anamorphic mode "Automatic", delete "Strict" (#367)John Stebbins2016-10-311-9/+10
| | | | | | | | | * Add new anamorphic mode "Automatic", delete "Strict" Anamorphic mode automatic is added to support Bradley's new presets that are designed to pick a PAR that maximizes storage resolution. Strict is converted to Loose + mod == 2 + UsesPictureSettings == 2 when importing presets
* CLI: fix short arg optional parameter processingJohn Stebbins2016-10-101-2/+8
| | | | | | | Some short args were missing the '::' flags to indicate optional parameters. Also distinguish missing parameters from unknown options.
* cli: Add --version to help.Bradley Sepos2016-09-151-0/+1
|
* CLI: Revise CLI help.Bradley Sepos2016-09-091-240/+303
| | | | Fixes a number of typos. Better formatting in some cases. Clarifies optional parameter usage (fixes #300).
* cli: fix pad filter helpJohn Stebbins2016-08-091-6/+6
| | | | and move from "Picture Settings" to "Filters" section
* cli: include strings.h on Solaris where necessarySean McGovern2016-07-011-0/+4
|
* preset: Add CLI Default preset. (#214)Bradley Sepos2016-06-271-0/+1
|
* cli: Add --no-two-pass and --no-turbo.Bradley Sepos2016-06-251-4/+16
| | | | Closes #234.
* cli: fix initialization of SubtitleTrackSelectionBehaviorJohn Stebbins2016-06-101-1/+1
| | | | | | We should only override the original presets value when --all-subtitles, --first-subtitle, or an explicit subtitle list is specified on the command line.
* cli: Take preset frame rate / mode into account.Bradley Sepos2016-06-031-3/+13
|