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
2015-08-03avcodec: add new Videotoolbox hwaccel.Sebastien Zwickert
2015-05-13Merge commit 'e7c5e17d4fbd7c83fb331bf327e25ebd8e6a8623'Michael Niedermayer
* commit 'e7c5e17d4fbd7c83fb331bf327e25ebd8e6a8623': vda: Make output CVPixelBuffer format configurable Conflicts: doc/APIchanges libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-05-13vda: Make output CVPixelBuffer format configurableStefano Pigozzi
This is useful for client programs to ask for nv12 surfaces instead of the current default (uyvy), since those are more efficient to decode to. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2014-05-12Merge commit '67afcefb35932b420998f6f3fda46c7c85848a3f'Michael Niedermayer
* commit '67afcefb35932b420998f6f3fda46c7c85848a3f': lavc: Add new VDA hwaccel Conflicts: configure libavcodec/vda.h libavcodec/vda_h264.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-11lavc: Add new VDA hwaccelAnton Khirnov
It leverages the new hwaccel 1.2 features: - get_buffer2 is never called - the internal context is automatically initialized/deinitialized Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-08-14vda: merge implementation into one file.Sebastien Zwickert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-14vda: support synchronous decoding.Sebastien Zwickert
Note that the symbols used to run the hardware decoder in asynchronous mode has been marked as deprecated and will be dropped at a future version dump. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-29cosmetics: minor libavcodec spelling errorsLou Logan
Also update some common misspelled words in patcheck Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-11vda: try to fix compileMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-11Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (22 commits) rv40dsp x86: use only one register, for both increment and loop counter rv40dsp: implement prescaled versions for biweight. avconv: use default channel layouts when they are unknown avconv: parse channel layout string nutdec: K&R formatting cosmetics vda: Signal 4 byte NAL headers to the decoder regardless of what's in the extradata mem: Consistently return NULL for av_malloc(0) vf_overlay: implement poll_frame() vf_scale: support named constants for sws flags. lavc doxy: add all installed headers to doxy groups. lavc doxy: add avfft to the main lavc group. lavc doxy: add remaining avcodec.h functions to a misc doxygen group. lavc doxy: add AVPicture functions to a doxy group. lavc doxy: add resampling functions to a doxy group. lavc doxy: replace \ with / lavc doxy: add encoding functions to a doxy group. lavc doxy: add decoding functions to a doxy group. lavc doxy: fix formatting of AV_PKT_DATA_{PARAM_CHANGE,H263_MB_INFO} lavc doxy: add AVPacket-related stuff to a separate doxy group. lavc doxy: add core functions/definitions to a doxy group. ... Conflicts: ffmpeg.c libavcodec/avcodec.h libavcodec/vda.c libavcodec/x86/rv40dsp.asm libavfilter/vf_scale.c libavformat/nutdec.c libavutil/mem.c tests/ref/acodec/pcm_s24daud Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-10vda: Signal 4 byte NAL headers to the decoder regardless of what's in the ↵Sebastien Zwickert
extradata Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-08vda: removes useless doxygen command.Sebastien Zwickert
2012-01-08vda: uses pthreads directly.Sebastien Zwickert
2012-01-08vda: convert 3 byte NAL sizes to 4 byte.Sebastien Zwickert
2011-11-15vda: use K&R style.Clément Bœsch
2011-11-15vda: check allocation result.Sebastien Zwickert
2011-11-15vda: removes useless casts.Sebastien Zwickert
2011-11-15vda: cosmetic.Sebastien Zwickert
2011-11-15vda: reordering headers inclusion.Sebastien Zwickert
2011-11-14hwaccel: OS X Video Decoder Acceleration (VDA) support.Sebastien Zwickert
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-11-11vda: use fast reallocation.Sebastien Zwickert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-10vda: set destination image buffer attributes.Sebastien Zwickert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-02HWAccel: adds Video Decoder Acceleration (VDA) module for Mac OS X.Sebastien Zwickert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-14vda: Merge implementation into one fileSebastien Zwickert
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-08-14vda: support synchronous decodingSebastien Zwickert
Note that the symbols used to run the hardware decoder in asynchronous mode have been marked deprecated and will be dropped at a future version bump. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-08-14vda: Reuse the bitstream buffer and reallocate it only if neededSebastien Zwickert
Signed-off-by: Diego Biurrun <diego@biurrun.de>