summaryrefslogtreecommitdiff
path: root/libavcodec/bitpacked.c
Commit message (Collapse)AuthorAge
* avcodec/bitpacked: add missing comma to codec tagsMichael Niedermayer2020-06-04
| | | | | | | | | Fixes: array end overread Fixes: 22395/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_BITPACKED_fuzzer-5760940300828672 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: James Darnley <james.darnley@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/bitpacked: Add codec_tags listMichael Niedermayer2020-05-21
| | | | | | This should improve coverage Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* bitpacked: Remove dead storeDerek Buitenhuis2017-07-07
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* avcodec/bitpacked: Fix mixed declarations and statementMichael Niedermayer2017-04-07
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* bitpacked: fix potential overflowRostislav Pehlivanov2017-04-05
| | | | | | Fixes: CID1404842 Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* codec: bitpacked: add decoderDamien Riegel2017-04-05
Add a codec capable of decoding some formats of the RFC4175. For now it's only capable of handling YCbCr-4:2:2 with 8-bit or 10-bit depth. For 8-bit it's a simple pass-through, for 10-bit it depacks the stream in the AV_PIX_FMT_YUV422P10 pixel format. Signed-off-by: Damien Riegel <damien.riegel@savoirfairelinux.com> Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>