summaryrefslogtreecommitdiffstats
path: root/libhb
Commit message (Collapse)AuthorAgeFilesLines
* muxavformat: fix mp4 subtitle empty packet durationJohn Stebbins2016-04-141-1/+1
|
* Merge pull request #153 from jstebbins/qsv-freeJohn Stebbins2016-04-131-39/+39
|\ | | | | qsv: fix access to freed memory when interrupting encode
| * qsv: fix access to freed memory when interrupting encodeJohn Stebbins2016-04-131-39/+39
| |
* | qsv_filter: fix crash when unpacking crop parametersJohn Stebbins2016-04-131-4/+4
|/
* bd: change angles before seekingJohn Stebbins2016-04-041-4/+4
| | | | the angle can affect the seek position
* json: fix typo.Tim Walker2016-04-031-1/+1
|
* json: fix sanitization of vqualityTim Walker2016-04-031-4/+8
| | | | …for encoders that check for a valid bitrate before quality.
* json: fix sanitization of vqualityJohn Stebbins2016-04-032-24/+35
| | | | ... and other assorted cleanups ;)
* filters: don't add disabled rotate filter to filter listJohn Stebbins2016-03-312-5/+33
| | | | | add check for settings that cause a filter to be disabled, and disable the filter in such cases before adding to the filter list.
* hb_json: sanitize JSON where both of video bitrate and quality are valid.Tim Walker2016-03-311-0/+6
| | | | Check against vbitrate since it doesn't depend on a preprocessor define.
* libhb: fix incorrect assumption that video quality is always positive.Tim Walker2016-03-3111-13/+16
|
* libhb: fix quality limits for high bit depth video encoders.Tim Walker2016-03-311-2/+25
| | | | | The lowest possible QP (and RF) depend on the bit depth and can be lower than zero.
* libhb: remove superfluous ifdefs.Tim Walker2016-03-311-4/+0
| | | | The defines always exist, so they're not actually protecting anything.
* x265: use more permissive x265_api_query instead of x265_api_getJohn Stebbins2016-03-302-3/+3
| | | | | This allows use of versions of the library that are compatible, but do not necessarily have the same build number.
* QSV: better compatibility with recent SW libmaxd2016-03-301-1/+2
| | | | | | To avoid having max_async_depth == 0 with recent MSDK SW library, this would help to allocate properly internal resources and to avoid crash during encode
* libhb: fix x265 encoding with CRF == 0.0Tim Walker2016-03-291-1/+1
| | | | We were using ABR at 0.0 Kbps instead.
* presets: fix PictureRotate importJohn Stebbins2016-03-281-1/+2
| | | | | When it's value's type is an int instead of a string, it was not imported correctly.
* muxavformat: fix muxer interleaving in mkvJohn Stebbins2016-03-271-3/+5
|
* stream: fix negative array indexJohn Stebbins2016-03-251-1/+1
|
* hb: cosmetics, removing trailing whitespaceJohn Stebbins2016-03-231-15/+15
|
* muxavformat: fix sync issue when bframes are enabledJohn Stebbins2016-03-231-19/+16
| | | | | | | libav does not permit negative dts when muxing to mkv even though it does not use dts when writing mkv. When it sees an initial negative dts, it offsets all dts and pts to make it positive. This breaks A/V sync and chapter start times.
* stream: fix potential use of uninitialized variableJohn Stebbins2016-03-231-10/+18
|
* reader: fix memory leakJohn Stebbins2016-03-231-0/+6
|
* presets: fix memory leakJohn Stebbins2016-03-231-2/+6
|
* libhb: reorder buffer type enum so uninitialized type is OTHER_BUFJohn Stebbins2016-03-231-1/+1
|
* fifo: when HB_BUFFER_DEBUG is set, memset buffers to 0John Stebbins2016-03-231-0/+6
|
* decavcodec: cosmeticsJohn Stebbins2016-03-231-9/+19
|
* scan: quit looking for audio if a preview scan reaches EOFJohn Stebbins2016-03-231-44/+58
| | | | | Also, verify that vid_info geometry matches vid_buf geometry And some cosmetic changes
* Merge pull request #114 from shakim/support_old_iso639Scott2016-03-212-6/+8
|\ | | | | Support language code changes between ISO639 and ISO639-1
| * Support language code changes between ISO639 and ISO639-1Shlomo Hakim2016-03-032-6/+8
| |
* | presets: fix import of old version-less preset filesJohn Stebbins2016-03-212-29/+44
| | | | | | | | | | The version number was not added after import causing an attempt to do import conversions twice. The second conversion breaks values.
* | Remove the CLI / LibHB Update Checker. It's been broken since we switched to ↵sr552016-03-124-293/+4
| | | | | | | | HTTPS and it's terrible code.
* | comb-detect: adjust default sensitivity and add "Less Sensitive" presetJohn Stebbins2016-03-111-8/+12
| |
* | qsv: fix buildJohn Stebbins2016-03-115-20/+43
| | | | | | | | I missed some of the qsv filter settings bits that needed changing.
* | decomb: split comb detection out into it's own filterJohn Stebbins2016-03-1114-1582/+2033
| |
* | sync: fix hang at end of p-to-p encoding with subtitlesJohn Stebbins2016-03-111-1/+8
| | | | | | | | | | If there are no more subtitles in a subtitle track after the stop time of a p-to-p encoding, the encode would never finish.
* | reader: fix p-to-p seconds for non-seekable streamsJohn Stebbins2016-03-111-1/+20
| | | | | | | | | | This broke when sync was reworked. Sync now expects job->pts_to_start to be relative to the first frame that it sees.
* | sync: fix yet another subtitle issue.John Stebbins2016-03-111-1/+2
| | | | | | | | | | | | subtitle stop time was getting incorrectly squashed when special value AV_NOPTS_VALUE. it should have been set to the next subtitles start time.
* | filters: make job filter settings an hb_dict_tJohn Stebbins2016-03-0924-916/+1946
| | | | | | | | | | | | This simplifies accessing and changing filter parameters programatically. It also changes the custom filter string format to a ':' separated list of key/value pairs.
* | hb_dict: convert json null to empty string upon string xformJohn Stebbins2016-03-091-1/+1
| |
* | sync: fix handling of end-of-subtitle markersJohn Stebbins2016-03-061-0/+4
| | | | | | | | | | Under some discontinuity cases, these markers were getting passed through to the muxer, which caused a crash.
* | libhb: fix buffer over-reads by libav get_bits()John Stebbins2016-03-061-16/+20
| |
* | libhb: fix memory leaksJohn Stebbins2016-03-062-2/+5
|/
* scan: check if the video decoder was properly initialized before decoding ↵Damiano Galassi2016-03-011-1/+10
| | | | the preview.
* decavcodec: recompute frame duration for every frameJohn Stebbins2016-02-281-2/+3
| | | | It can change mid-stream
* deinterlace: fix mapping of legacy "slow" presetJohn Stebbins2016-02-161-1/+1
|
* decomb: fix decomb checkJohn Stebbins2016-02-161-2/+1
| | | | Only the last segment's results were being checked!
* sync: improve video dejitterJohn Stebbins2016-02-151-1/+1
| | | | | Found a sample that requires 12 frames to detect and fix video jitter. So extend the minimum frame buffer from 10 to 12.
* deinterlace: add conditional deinterlacing of interlaced framesJohn Stebbins2016-02-153-5/+15
| | | | | | | | | Only deinterlace frames that are marked as interlaced when mode HB_YADIF_AUTO is set in the filter settings. Currently, this would cause no frames to be deinterlaced since all frames are marked non-interlaced. This option will become useful in a subsequent patch that splits comb detection into it's own filter.
* deinterlace: use avfilter yadif deinterlacerJohn Stebbins2016-02-156-679/+207
|