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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-10avcodec/hap: add "compressor" option to Hap encoder to disable secondary ↵Tom Butterworth
compression The secondary compression in Hap is optional, this change exposes that option to the user as some use-cases favour higher bitrate files to reduce workload decoding. Adds "none" or "snappy" as options for "compressor". Selecting "none" disregards "chunks" option: chunking is only of benefit decompressing Snappy. Reviewed-by: Martin Vignali <martin.vignali@gmail.com> Signed-off-by: Tom Butterworth <bangnoise@gmail.com>
2016-11-08avcodec/hap: pass texture-compression destination as argument, not in contextTom Butterworth
This allows a subsequent change to compress directly into the output packet when possible. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Tom Butterworth <bangnoise@gmail.com>
2016-11-04avcodec/hap: consistent name for codecTom Butterworth
"Vidvox Hap", not "Vidvox Hap encoder" or "Vidvox Hap decoder". Fixes bad name in "ffmpeg -codecs", matches other codec naming. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-11-02lavc/hapenc: Use the correct printf length modifier for size_t arguments.Carl Eugen Hoyos
Fixes the following warning: libavcodec/hapenc.c:122:20: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘size_t’ [-Wformat] Based on a patch by Diego Biurrun.
2015-10-23avcodec/hap: set bits_per_coded_sampleTom Butterworth
fixes issue where alpha is ignored in some players Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-08-05avcodec/hapenc: Remove use of deprecated ff_alloc_packet()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-23avcodec/hap: (trivial) rename enum values and document their meaningTom Butterworth
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-23avcodec/hap: (trivial) clarify commentTom Butterworth
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-22Support the Hap chunked frame formatTom Butterworth
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-06-22Merge commit '7ca3e5203f133eb41a0b5c3a1d753a7427ba72e7'Michael Niedermayer
* commit '7ca3e5203f133eb41a0b5c3a1d753a7427ba72e7': Hap decoder and encoder Conflicts: Changelog configure doc/general.texi libavcodec/allcodecs.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-22Hap decoder and encoderVittorio Giovara
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>