summaryrefslogtreecommitdiff
path: root/libavcodec/vda.c
Commit message (Collapse)AuthorAge
* avcodec: add new Videotoolbox hwaccel.Sebastien Zwickert2015-08-03
|
* Merge commit 'e7c5e17d4fbd7c83fb331bf327e25ebd8e6a8623'Michael Niedermayer2015-05-13
|\ | | | | | | | | | | | | | | | | | | | | * commit 'e7c5e17d4fbd7c83fb331bf327e25ebd8e6a8623': vda: Make output CVPixelBuffer format configurable Conflicts: doc/APIchanges libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vda: Make output CVPixelBuffer format configurableStefano Pigozzi2015-05-13
| | | | | | | | | | | | | | 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>
* | Merge commit '67afcefb35932b420998f6f3fda46c7c85848a3f'Michael Niedermayer2014-05-12
|\| | | | | | | | | | | | | | | | | | | | | | | * commit '67afcefb35932b420998f6f3fda46c7c85848a3f': lavc: Add new VDA hwaccel Conflicts: configure libavcodec/vda.h libavcodec/vda_h264.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavc: Add new VDA hwaccelAnton Khirnov2014-05-11
| | | | | | | | | | | | | | | | | | 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>
| * vda: Merge implementation into one fileSebastien Zwickert2012-08-14
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * vda: support synchronous decodingSebastien Zwickert2012-08-14
| | | | | | | | | | | | | | 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>
| * vda: Reuse the bitstream buffer and reallocate it only if neededSebastien Zwickert2012-08-14
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | vda: merge implementation into one file.Sebastien Zwickert2012-08-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vda: support synchronous decoding.Sebastien Zwickert2012-08-14
| | | | | | | | | | | | | | 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>
* | cosmetics: minor libavcodec spelling errorsLou Logan2012-06-29
| | | | | | | | | | | | Also update some common misspelled words in patcheck Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vda: try to fix compileMichael Niedermayer2012-04-10
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-04-10
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| * vda: Signal 4 byte NAL headers to the decoder regardless of what's in the ↵Sebastien Zwickert2012-04-10
| | | | | | | | | | | | extradata Signed-off-by: Martin Storsjö <martin@martin.st>
| * hwaccel: OS X Video Decoder Acceleration (VDA) support.Sebastien Zwickert2011-11-14
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* vda: removes useless doxygen command.Sebastien Zwickert2012-01-08
|
* vda: uses pthreads directly.Sebastien Zwickert2012-01-08
|
* vda: convert 3 byte NAL sizes to 4 byte.Sebastien Zwickert2012-01-08
|
* vda: use K&R style.Clément Bœsch2011-11-15
|
* vda: check allocation result.Sebastien Zwickert2011-11-14
|
* vda: removes useless casts.Sebastien Zwickert2011-11-14
|
* vda: cosmetic.Sebastien Zwickert2011-11-14
|
* vda: reordering headers inclusion.Sebastien Zwickert2011-11-14
|
* vda: use fast reallocation.Sebastien Zwickert2011-11-11
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vda: set destination image buffer attributes.Sebastien Zwickert2011-11-09
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* HWAccel: adds Video Decoder Acceleration (VDA) module for Mac OS X.Sebastien Zwickert2011-11-02
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>