summaryrefslogtreecommitdiff
path: root/libavcodec/parsers.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec: add FTR audio decoder and parserPaul B Mahol2022-09-241-0/+1
|
* avcodec: add XWD parserPaul B Mahol2022-09-171-0/+1
|
* avcodec: add Micronas SC-4 parserPaul B Mahol2022-09-161-0/+1
|
* avcodec: add Radiance HDR image format supportPaul B Mahol2022-07-161-0/+1
|
* avcodec: add QOI decoder and demuxer and parser and encoder and muxerPaul B Mahol2022-06-051-0/+1
|
* avcodec: add amr parserPaul B Mahol2021-10-021-0/+1
|
* avcodec: Constify all the AVCodecParsersAndreas Rheinhardt2021-04-271-52/+52
| | | | | | | Possible now that the next pointer no longer exists. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec: Remove AVCodec, AVParser and AVBitStreamFilter next APIAndreas Rheinhardt2021-04-271-35/+0
| | | | | Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/avcodec: Add missing deprecation to AVCodecParser.nextAndreas Rheinhardt2021-02-251-0/+2
| | | | | | | | | | | The whole old next API has been deprecated in commit 7e8eba2d8755962d9dca5eade57bf8f591a73c0c, yet deprecating the next pointer has been forgotten (the next pointers of other structures are below the public API delimiter, but such a delimiter doesn't exist for AVCodecParser). Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* avcodec: add cri parserPaul B Mahol2021-02-091-0/+1
|
* avcodec: add xbm parserPaul B Mahol2021-02-051-0/+1
|
* avcodec/dolby_e: Add a parserNicolas Gaullier2021-01-251-0/+1
|
* avcodec/parsers: add missing FF_API_NEXT wrappersJames Almer2020-10-101-5/+8
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lavc/avs3_parser: add avs3 parserhwren2020-10-051-0/+1
| | | | | Signed-off-by: hbj <hanbj@pku.edu.cn> Signed-off-by: hwren <hwrenx@126.com>
* avcodec: add IPU Video decoder and parserPaul B Mahol2020-09-241-0/+1
|
* libavcodec/jpeg2000_parser: Add jpeg2000 parserGautam Ramakrishnan2020-06-071-0/+1
| | | | | | | | | | I have attempted to write a JPEG2000 Parser. Have tested by generating a file containing 14 frames, as mentioned by Micheal. Have also tried testing with various packet sizes by setting -frame_size option. Additionally, fixed a few formatting issues as pointed out by Micheal. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec: add a WebP parserJames Almer2020-04-161-0/+1
| | | | | | | | | Based on code from the BMP parser. Addresses ticket #8574 Reviewed-by: James Zern <jzern@google.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec: add g732_1 parserPaul B Mahol2018-12-231-0/+1
|
* avcodec: add gif parserPaul B Mahol2018-12-101-0/+1
|
* avcodec: add an AV1 parserJames Almer2018-10-031-0/+1
| | | | | | | | Simple parser to set keyframes, frame type, structure, width, height, and pixel format, plus stream profile and level. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
* lavc: add AVS2/IEEE 1857.4 parserhwren2018-07-271-0/+1
| | | | | | Tested-by: Steven Liu <lq@chinaffmpeg.org> Signed-off-by: hwren <hwrenx@126.com> Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
* avcodec/parser: move parsers list and related API to its own fileJames Almer2018-07-211-0/+106
And add it to the CONFIGURABLE_COMPONENTS list in Makefile. This way, changes to the new file will be tracked and the usual warning to suggest re-running configure will be shown. Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>