summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264_picture.c
Commit message (Collapse)AuthorAgeFilesLines
* h264: postpone generating the implicit MMCOsAnton Khirnov2016-06-121-1/+1
| | | | | | Do it right before the MMCOs are applied to the DPB. This will allow moving the frame_start() call out of the slice header parsing, since generating the implicit MMCOs needs to be done after frame_start().
* h264: rename mmco_index to nb_mmcoAnton Khirnov2016-06-121-1/+1
| | | | | The variable stores the number of mmco entries, so the current name is misleading.
* Drop unnecessary golomb.h #includesDiego Biurrun2016-06-081-1/+0
|
* cosmetics: Fix spelling mistakesVittorio Giovara2016-05-041-1/+1
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h264: factor out calculating the POC count into a separate fileAnton Khirnov2016-04-241-4/+4
| | | | This will allow decoupling the parser from the decoder.
* h264: use properly allocated AVFramesAnton Khirnov2015-04-291-6/+6
|
* h264: drop H264Context.ouputed_pocAnton Khirnov2015-04-291-1/+0
| | | | It is only set, but never used for anything.
* h264: drop needs_reallocAnton Khirnov2015-04-291-1/+0
| | | | It is not needed anymore since switching to refcounted frames.
* h264: disable ER by defaultAnton Khirnov2015-04-031-1/+1
| | | | | The way it is currently designed is fundamentally unsafe and cannot be reasonably fixed without completely rewriting it.
* h264: use a smaller struct for the ref listsAnton Khirnov2015-03-211-2/+2
| | | | | | There is no need to store a whole H264Picture, with a full AVFrame embedded in it. This should allow getting rid of the embedded AVFrame later.
* h264: move remaining ER stuff into the per-slice contextAnton Khirnov2015-03-211-4/+4
|
* h264: move the ref lists variables into the per-slice contextAnton Khirnov2015-03-211-3/+3
|
* h264: fix build when error resilience is disabledVittorio Giovara2014-06-201-1/+4
|
* h264_picture: Remove pointless dsputil.h #includeDiego Biurrun2014-05-271-1/+0
|
* h264: Split h264 slice decoding from nal decodingLuca Barbato2014-03-231-0/+200
OpenPOWER on IntegriCloud