summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* macgui: Revise subtitles tab tooltips.Bradley Sepos2016-12-201-25/+27
|
* macgui: Revise audio defaults tooltips.Bradley Sepos2016-12-201-11/+34
|
* macgui: Revise quality and bitrate mode tooltips on main window.Bradley Sepos2016-12-201-3/+6
|
* macgui: Revise audio tab tooltips.Bradley Sepos2016-12-201-13/+30
|
* WinGui: Improve many tooltips for 1.0 #426sr552016-12-206-60/+392
|
* macgui: Revise Open Source toolbar button tooltip.Bradley Sepos2016-12-201-1/+1
| | | | Was also being set dynamically.
* macgui: Revise Picture tab tooltips.Bradley Sepos2016-12-201-52/+106
|
* macgui: Revise Add Preset dialog tooltips.Bradley Sepos2016-12-201-14/+16
|
* macgui: Revise presets drawer tooltips.Bradley Sepos2016-12-201-20/+11
|
* macgui: Revise main window tooltips.Bradley Sepos2016-12-201-30/+34
| | | | Change Output Settings label to Preset.
* macgui: Revise main menu.Bradley Sepos2016-12-201-9/+9
|
* MacGui: do not display pass info if pass_count is -1. Start the HBCore ↵Damiano Galassi2016-12-202-9/+11
| | | | update timer only after starting a scan/job.
* libhb: immediately set hb_state_t pass and pass_count to -1 in hb_start(), ↵Damiano Galassi2016-12-201-0/+2
| | | | so a UI can check if pass_count has been set or not yet, to avoid displaying a random value for half a second if it tries to display the pass state before the work thread has been initialized.
* MacGui: return 'und' is the language is unknown.Damiano Galassi2016-12-201-1/+1
|
* MacGui: restore the NSGraphicsContext after it has been used.Damiano Galassi2016-12-201-0/+2
|
* Add Maxym Dm to authors.Bradley Sepos2016-12-191-0/+5
| | | | Thanks for your contributions!
* macgui: Revise Video tab tooltips.Bradley Sepos2016-12-191-27/+36
|
* build: Update Sparkle minimum Mac system version to 10.7.0.Bradley Sepos2016-12-181-1/+1
|
* WinGui: Update the VersionUtility class to work for official releases that ↵sr552016-12-187-158/+9
| | | | are not from subversion.
* scripts: Print usage and exit when release tag not specified to tag-release.sh.Bradley Sepos2016-12-181-1/+6
|
* build: Really ensure tag suffix is not None in configure.py.Bradley Sepos2016-12-181-2/+1
|
* build: Ensure tag suffix is not None in configure.py.Bradley Sepos2016-12-181-1/+2
|
* build: Update Mac release package name.Bradley Sepos2016-12-181-6/+4
|
* WinGui: Set QSV Decode to false if the hardware isn't available for use.sr552016-12-181-1/+3
|
* contrib: Disable libva for libmfx.Bradley Sepos2016-12-171-0/+2
| | | | Should be automatic, but it seems libmfx's configure script sometimes assumes libva is present. Hopefully this fixes Jenkins.
* contrib: Disable libav vaapi.Bradley Sepos2016-12-171-0/+1
| | | | We're not using it (yet) and it seems to be causing build problems with Jenkins.
* fix memory leaksJohn Stebbins2016-12-173-2/+3
| | | | | | The series of commits starting with Tim's "libav: remove our custom QSV wrapper." Closes #46, closes #276, and closes #416.
* stream: fix SRT detectionJohn Stebbins2016-12-171-0/+1
| | | | libav changed the codec id they use for SRT in mkv
* unref AVPackets, fix merge issuesJohn Stebbins2016-12-172-3/+6
|
* qsv: rename av_qsv* to hb_qsv*John Stebbins2016-12-1715-435/+435
|
* qsv: fix more compiler warningsJohn Stebbins2016-12-174-6/+6
|
* qsv_memory: fix compiler warningsJohn Stebbins2016-12-171-4/+4
|
* qsv_libav: silence compiler warningJohn Stebbins2016-12-171-1/+1
| | | | | warning: "/*" within comment It's very noisy since this header gets pulled into everything.
* encavcodecaudio: fix use of deprecated libav interfacesJohn Stebbins2016-12-171-111/+100
| | | | | avcodec_encode_audio2 is deprecated, use avcodec_send_frame and avcodec_receive_packet
* encavcodec: fix use of deprecated libav interfacesJohn Stebbins2016-12-171-141/+136
| | | | | | | AVCodecContext.coded_frame is deprecated. We didn't really need it. avcodec_encode_video2 is deprecated, use avcodec_send_frame and avcodec_receive_packet
* decavcodec: fix use of deprecated libav interfacesJohn Stebbins2016-12-171-164/+222
| | | | | | | avcodec_decode_audio4 is deprecated, use avcodec_send_packet and avcodec_receive_frame av_bitstream_filter is deprecated, use av_bsf
* stream: fix use of deprecated libav interfacesJohn Stebbins2016-12-171-91/+87
| | | | AVStream.codec is deprecated, use AVStream.codecpar
* muxavformat: fix use of deprecated libav interfacesJohn Stebbins2016-12-171-90/+106
| | | | | AVStream.codec is deprecated, use AVStream.codecpar av_bitstream_filter is deprecated, use av_bsf
* decpgssub: fix use of deprecated rect->pictJohn Stebbins2016-12-171-2/+2
|
* fix chapter markers when encoding with libav video encoderJohn Stebbins2016-12-171-1/+1
| | | | | | encavcodec saved the chapter mark and set the buffers new_chap to 0. Then work copied the zero'd new_chap over the good mark that encavcodec set.
* potential fix for hard to reproduce crashJohn Stebbins2016-12-171-3/+12
|
* contrib: Add libav colr patch to support new color signaling in mov.Bradley Sepos2016-12-171-0/+57
| | | | Needed for BT.2020, etc.
* qsv: Update condition under which context is closed.Tim Walker2016-12-171-2/+6
|
* decavcodec: enable QSV-accelerated H.264 decoding with libavcodec.Tim Walker2016-12-174-43/+51
| | | | | | Videos get decoded to NV12 in system memory and converted to our internal colorspace via libswscale. It should be noted that QSV- accelerated decoding now works with all our videos encoders :-)
* contrib: enable avcodec's libmfx (Intel QSV) support when applicable.Tim Walker2016-12-171-4/+3
|
* qsv: Fix crash attempting to destroy mutex.Tim Walker2016-12-171-2/+6
| | | | Originally part of a2d31ec1c6109424d193832aa83db6958292d797.
* contrib: Update to Libav 12.Bradley Sepos2016-12-1716-2887/+3
|
* libhb: don't use av_log.Tim Walker2016-12-172-18/+16
| | | | qsv_libav.[ch] was previosuly use from libavcodec.
* libhb: fix build with --enable-qsvTim Walker2016-12-1710-75/+30
| | | | | | | | | | Convert qsv_livav.[ch] to be built within libhb. Convert other files to use qsv_libav.h in place of libavcodec/qsv.h Don't attempt to build libav with QSV support (not available in unpatched release/11 branch). QSV-accelerated decoding is broken, so disable it for the time being.
* libhb: add code to support our QSV-accelerated encoder.Tim Walker2016-12-172-0/+1140
| | | | | | The files are copied verbatim from the patch we just removed, where they were known as: libavcodec/qsv.h libavcodec/qsv.c