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
2017-10-17hevc: Improve stream constraint values in common headerMark Thompson
Add comments to describe the sources of the constraint values expressed here, and add some more related values which will be used in following patches. Fix the incorrect values for SPS and PPS count (they are not the same as those used for H.264), and remove HEVC_MAX_CU_SIZE because it is not used anywhere. (cherry picked from commit b88da98b34809dedf8882d43ed543632ed233538)
2017-08-28hevc: Add names for reserved NAL unit typesMark Thompson
While not yet used, these NAL units do already have some defined semantics and are referred to elsewhere. (cherry picked from commit 3daaa4417317ca732fb00476fdb3308d784f87e4)
2017-03-24Merge commit '0bfdcce4d42a6e654c00ea5f9237dc987626457f'James Almer
* commit '0bfdcce4d42a6e654c00ea5f9237dc987626457f': hevc: move the SliceType enum to hevc.h Merged-by: James Almer <jamrial@gmail.com>
2017-03-23Merge commit 'f6e2f8a9ffda2247bffba991450990d075ea68e3'James Almer
* commit 'f6e2f8a9ffda2247bffba991450990d075ea68e3': hevcdec: move parameter set parsing into a separate header Merged-by: James Almer <jamrial@gmail.com>
2017-03-23avcodec/hevc: add missing hevc.h headerJames Almer
It was lost as part of a merge in 6397815be0bee10948387fcb90ead36ec2834ef7.
2016-10-21hevc: move the SliceType enum to hevc.hAnton Khirnov
Those values are decoder-independent and are also use by the VA-API encoder.
2016-10-16hevcdec: move parameter set parsing into a separate headerAnton Khirnov
This code is independent from the decoder, so it makes more sense for it to to have its own header.
2016-10-16hevcdec: move decoder-independent declarations into a separate headerAnton Khirnov
This way they can be reused by other code without including the whole decoder-specific hevcdec.h Also, add the HEVC_ prefix to them, since similarly named values exist for H.264 as well and are sometimes used in the same code.
2016-10-16hevc: rename hevc.[ch] to hevcdec.[ch]Anton Khirnov
This is more consistent with the rest of libav and frees up the hevc.h name for decoder-independent shared declarations.
2016-03-28hevc_parse: rename into h2645_parseAnton Khirnov
This code will be shared with h264.
2016-02-13hevc: Track long and short term RPS size for VDPAUPhilip Langdale
Today, we track the short term RPS size for DXVA, but only if the SliceHeader RPS is being used. Otherwise it's left uninitialized. NVIDIA's VDPAU implementation requires that the size be accurately tracked even if an SPS RPS is being used. In this case, it's really counting the size of the RPS idx information, but you end up with mangled output if the value is not accurate. VDPAU also needs the size of the long term RPS. Signed-off-by: Philip Langdale <philipl@overt.org> Signed-off-by: Rémi Denis-Courmont <remi@remlab.net> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2016-02-13dxva2_hevc: properly signal the num_delta_pocs from the SPS RPSHendrik Leppkes
ucNumDeltaPocsOfRefRpsIdx needs to contain the flat value from the SPS RPS, and not the final computed value from the slice header RPS, as this calculation is done internally by the driver again. Sample-Id: http://trailers.divx.com/hevc/Sintel_4k_27qp_24fps_1aud_9subs.mkvi Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
2015-12-05hevcdsp: add x86 SIMD for MCAnton Khirnov
2015-07-12hevc: move splitting the packet into NALUs into a separate functionAnton Khirnov
This function is independent of the decoding context, so we'll be able to use it in the parser.
2015-07-12hevc: eliminate the second call to hls_nal_unit()Anton Khirnov
Also, make hls_nal_unit() work only on the provided NAL unit, without requiring a whole decoding context. This will allow splitting this code for reuse by the parser.
2015-07-12hevc: remove HEVCContext usage from hevc_psAnton Khirnov
Factor out the parameter sets into a separate struct and use it instead. This will allow us to reuse this code in the parser.
2015-07-09lavc: add Intel libmfx-based HEVC encoderAnton Khirnov
2015-07-09hevc: split bitstream unescaping to a separate fileAnton Khirnov
It will be useful in the QSV HEVC encoder.
2015-07-09hevc_ps: split the code for parsing the SPS and exporting it into the contextAnton Khirnov
This will be useful in the later commits, where we want to parse an SPS without having a whole decoding context.
2015-03-21hevc: make the crop sizes unsignedAnton Khirnov
2015-01-27hevc: add hwaccel hooksHendrik Leppkes
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2015-01-27hevc: store the short term rps flag and size in the contextHendrik Leppkes
For future use by hardware accelerators. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2015-01-27hevc: store the escaped/raw bitstream in HEVCNALHendrik Leppkes
Hardware Accelerators require access to the escaped bitstream. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-11-17hevc: do not store rqt_root_cbf in the contextAnton Khirnov
It does not need to be accessed outside of hls_coding_unit().
2014-11-17hevc: do not store pcm_flag in the contextAnton Khirnov
It does not need to be accessed outside of hls_coding_unit().
2014-08-12hevc: use intreadwriteChristophe Gisquet
When dealing with MVs, both components may be processed at a time. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-08-09hevc: deobfuscate slice/tile boundary handling for DBFAnton Khirnov
Use named constants instead of magic numbers, avoid using variables with inverse meaning from what their name implies.
2014-07-28hevc: eliminate the last element from TransformTreeAnton Khirnov
Replace it by passing an additional parameter to transform_unit()
2014-07-28hevc: eliminate unnecessary cbf_c{b,r} arraysAnton Khirnov
They are replaced by passing additional parameters to the transform functions.
2014-07-28hevc: do not store the transform inter_split flag in the contextAnton Khirnov
It does not need to be preserved.
2014-07-28hevc: eliminate an unnecessary arrayAnton Khirnov
We do not need to store the value of the split flag.
2014-07-09hevc: parse display orientation SEI messageVittorio Giovara
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2014-06-26hevc: remove unused array min_cb_addr_zsGildas Cocherel
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-06-23dsputil: Split bswap*_buf() off into a separate contextDiego Biurrun
2014-05-19hevc: templatize intra_predAnton Khirnov
2014-03-09hevc: make pps/sps ids unsigned where necessaryVittorio Giovara
Fixes integer overflow and out of array accesses. Found-by: Mateusz j00ru Jurczyk and Gynvael Coldwind
2014-02-04hevc: check that the VCL NAL types are the same for all slice segments of a ↵Anton Khirnov
frame Fixes possible invalid memory access for mismatching skipped/non-skipped slice segments. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Sample-Id: 00001533-google
2014-01-21hevc: Prevent some integer overflowsLuca Barbato
get_ue_golomb_long() returns an unsigned. Sample-Id: 00001541-google Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2014-01-21hevc: Use uint64 to check for tile dimensionsLuca Barbato
And use unsigned datatypes. Otherwise it would overflow. Sample-Id: 00001315-google Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2014-01-21hevc: Fix modulo operationsMichael Niedermayer
Keep qp fields within the range. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2014-01-09hevc: fix decoding of one PU wide filesGuillaume Martres
For those the block size may be larger than the source linesize (if the edges are not allocated). Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-12-22hevc: move DSP declarations from hevc.h into hevcdsp.hGuillaume Martres
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-12-20hevc: support luma bit depth != chroma bit depth for PCM coding unitsMickaël Raulet
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-12-20hevc: refactor Profile Tier LevelGildas Cocherel
Also store a few PTL flags which were skipped before Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-12-11hevc: store the VPS list as an AVBufferRef, just like the others *PSGildas Cocherel
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-12-09hevc: parse frame packing arrangement SEI messages and save relevant ↵Vittorio Giovara
stereo3d information
2013-10-31Add HEVC decoderGuillaume Martres
Initially written by Guillaume Martres <smarter@ubuntu.com> as a GSoC project. Further contributions by the OpenHEVC project and other developers, namely: Mickaël Raulet <mraulet@insa-rennes.fr> Seppo Tomperi <seppo.tomperi@vtt.fi> Gildas Cocherel <gildas.cocherel@laposte.net> Khaled Jerbi <khaled_jerbi@yahoo.fr> Wassim Hamidouche <wassim.hamidouche@insa-rennes.fr> Vittorio Giovara <vittorio.giovara@gmail.com> Jan Ekström <jeebjp@gmail.com> Anton Khirnov <anton@khirnov.net> Martin Storsjö <martin@martin.st> Luca Barbato <lu_zero@gentoo.org> Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> Reimar Döffinger <Reimar.Doeffinger@gmx.de> Diego Biurrun <diego@biurrun.de> Signed-off-by: Anton Khirnov <anton@khirnov.net>