Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-13Define subtype for S302M AES3Hendrik Leppkes
This will allow decoding S302M AES3 audio from other splitters (eg. DVBViewer will export it using the FourCC in the future)
2013-06-08Use proper signature for OpenConfiguration functionHendrik Leppkes
2013-06-05Disable multi-threading for audio codecs.Hendrik Leppkes
This doesn't do anything yet, but ensures that future ffmpeg changes don't enable it.
2013-06-01Update ffmpeg for jp2k crash fixHendrik Leppkes
2013-05-25Cosmetics: Fix some typosUnderground78
Signed-off-by: Hendrik Leppkes <h.leppkes@gmail.com>
2013-05-25Support for FLICUnderground78
Signed-off-by: Hendrik Leppkes <h.leppkes@gmail.com>
2013-05-25Use av_cpu_countHendrik Leppkes
2013-05-25Enable slice threading for YADIFHendrik Leppkes
2013-05-24cuvid: activate double-rate deint for formats without header timing info as wellHendrik Leppkes
2013-05-18quicksync: activate GPU deinterlacingHendrik Leppkes
2013-05-12Move setting the delivery event into a central placeHendrik Leppkes
2013-05-12Improve behaviour when switching from non-sync to sync decoderHendrik Leppkes
This fixes a freeze when DXVA2-CB refuses a stream after playback started, and a change to avcodec is performed.
2013-05-10Add an option to configure jpeg2000 supportHendrik Leppkes
2013-05-10Add FourCC for VMWare video codec (VMnc)Hendrik Leppkes
2013-05-10Use direct plane copy for RGB48 native outputHendrik Leppkes
2013-05-10Switch the internal RGB48 format to the more common RGB component orderHendrik Leppkes
2013-05-10RGB48 output supportHendrik Leppkes
Support for native output of RGB48, however disabled by default.
2013-05-09Add more known JPEG2000 FourCCsHendrik Leppkes
2013-05-09Support JPEG2000 DCinemaHendrik Leppkes
2013-05-09Add a SSE2/C converter for RGB48->RGB32 if SSSE3 is not availableHendrik Leppkes
2013-05-09The RGB48->RGB24 converter doesn't actually use SSSE3Hendrik Leppkes
2013-05-09Restructure SSSE3 RGB48 converter for better readabilityHendrik Leppkes
2013-05-09Add SSSE3 RGB48->RGB32/RGB24 converterHendrik Leppkes
2013-05-09Rename macros to be more genericHendrik Leppkes
2013-05-09Use AVPixelFormat instead of deprecated PixelFormat and disable old namesHendrik Leppkes
2013-05-09Add mappings for new pixel formatsHendrik Leppkes
2013-05-09Use AV_PIX_FMT_* instead of the deprecated PIX_FMT_*Hendrik Leppkes
2013-05-09Add RGB48 as an internal pixel formatHendrik Leppkes
2013-05-09Prefer string type macros in external interfacesHendrik Leppkes
2013-05-04Add more DV FourCCsHendrik Leppkes
2013-05-04dxva2: ensure we sync to the process thread if requiredHendrik Leppkes
2013-05-04avcodec: sync mt decoders to the process threadHendrik Leppkes
This ensures smoother operation in real-world situations, especially transcoding or AviSynth processing.
2013-04-30Fix buildHendrik Leppkes
2013-04-30Parse FLAC extradata to extract the channel mask metadataHendrik Leppkes
Fixes the first part of issue 342
2013-04-20dxva2n: only re-create decoder if currently commitedHendrik Leppkes
2013-04-19dxva2: only re-use surfaces in native mode0.56.2Hendrik Leppkes
In Copy-Back mode, the surfaces can be safely re-created and avoids extra conditions to ensure they are not free'ed by accident.
2013-04-19Add BLZ0 (Blizzard) FourCC for MPEG4Hendrik Leppkes
2013-04-19dxva2: document the reason for the decoder re-creationHendrik Leppkes
2013-04-19dxva2: re-create decoder on seek for AMD to avoid artifactsHendrik Leppkes
2013-04-19dxva2: only count used buffers in debug modeHendrik Leppkes
Its only used to output a debug message anyway.
2013-04-19dxva2: flush display queue before counting used buffersHendrik Leppkes
2013-04-19dxva2: disable wmv3 dxva on UVD/UVD+ devicesHendrik Leppkes
This may be temporary until it can be fixed.
2013-04-19dxva2: enable h264 zigzag workaround for UVD/UVD+ cardsHendrik Leppkes
2013-04-19dxva2: fix mpeg2/vc1 image flushing and track used frames after a flushHendrik Leppkes
2013-04-19dxva2n: link AVFrames and IMediaSample directlyHendrik Leppkes
This avoids issues with the external management getting confused on (broken) flushes. This way at least playback remains stable.
2013-04-14wmv9dmo: fix disabling of the wmv9dmo integrated deinterlacer on XPHendrik Leppkes
2013-04-12avcodec: don't sync to the process thread, even if multi-threadedHendrik Leppkes
2013-04-12Remove superflous conditionHendrik Leppkes
2013-04-12Remove MT Filtering threadHendrik Leppkes
While this method does slightly increase performance, it does this at the cost of smooth playback. So instead we accept a small performance penality in benchmarks (should not affect real-world situations), but guarantee much smoother playback instead.
2013-04-12Split thread-safe buffers and syncing to the processing thread.Hendrik Leppkes
This allows a decoder to have thread-safe buffers and gain some advantages from this, while still syncing to the main thread for more consistent behaviour.