summaryrefslogtreecommitdiffstats
path: root/libavcodec/qsvenc.c
Commit message (Collapse)AuthorAgeFilesLines
* qsvenc: export CPB props side dataAnton Khirnov2015-12-061-0/+10
|
* qsvenc: expose additional encoding optionsAnton Khirnov2015-11-201-1/+51
|
* qsvenc: support more RC methodsAnton Khirnov2015-11-201-17/+119
|
* qsvenc: fix setting maxrate for VBRAnton Khirnov2015-11-201-1/+1
|
* qsvenc: print the actual video parameters used by MSDKAnton Khirnov2015-11-201-0/+255
|
* qsvenc: add an API for allocating opaque surfacesAnton Khirnov2015-10-161-4/+53
|
* qsvenc: cosmetics, reindentAnton Khirnov2015-10-161-33/+33
|
* qsvenc: set the timestamp for PIX_FMT_QSV frames as wellAnton Khirnov2015-10-161-5/+4
|
* qsvenc: support passing arbitrary external buffers to the encoderAnton Khirnov2015-10-161-4/+32
|
* qsvenc: do not try to close the encoder if the session is NULLAnton Khirnov2015-09-281-1/+2
|
* lavc: Consistently prefix input buffer definesVittorio Giovara2015-07-271-2/+2
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* lavc: AV-prefix all codec flagsVittorio Giovara2015-07-271-2/+2
| | | | | | Convert doxygen to multiline and express bitfields more simply. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* Deprecate avctx.coded_frameVittorio Giovara2015-07-201-0/+4
| | | | | | | | | | | | | | | | | The rationale is that coded_frame was only used to communicate key_frame, pict_type and quality to the caller, as well as a few other random fields, in a non predictable, let alone consistent way. There was agreement that there was no use case for coded_frame, as it is a full-sized AVFrame container used for just 2-3 int-sized properties, which shouldn't even belong into the AVCodecContext in the first place. The appropriate AVPacket flag can be used instead of key_frame, while quality is exported with the new AVPacketSideData quality factor. There is no replacement for the other fields as they were unreliable, mishandled or just not used at all. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* Gather all coded_frame allocations and free functions to a single placeVittorio Giovara2015-07-201-6/+0
| | | | | | | | | | | | | | Allocating coded_frame is what most encoders do anyway, so it makes sense to always allocate and free it in a single place. Moreover a lot of encoders freed the frame with av_freep() instead of the correct API av_frame_free(). This bring uniformity to encoder behaviour and prevents applications from erroneusly accessing this field when not allocated. Additionally this helps isolating encoders that export information with coded_frame, and heavily simplifies its deprecation. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* qsvenc: properly handle asynchronous encodingAnton Khirnov2015-07-191-15/+79
| | | | Wait for async_depth frames before syncing.
* lavc: add Intel libmfx-based HEVC encoderAnton Khirnov2015-07-081-11/+18
|
* lavc: add Intel libmfx-based MPEG2 encoderAnton Khirnov2015-07-081-4/+6
|
* lavc: add Intel libmfx-based H.264 encoderAnton Khirnov2015-03-271-0/+444
OpenPOWER on IntegriCloud