aboutsummaryrefslogtreecommitdiffstats
path: root/tools/target_bsf_fuzzer.c
Commit message (Collapse)AuthorAgeFilesLines
* avutil/common: Don't auto-include mem.hAndreas Rheinhardt2024-03-311-0/+1
| | | | | | | | | | | There are lots of files that don't need it: The number of object files that actually need it went down from 2011 to 884 here. Keep it for external users in order to not cause breakages. Also improve the other headers a bit while just at it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* tools/target_bsf_fuzzer: fix some filter namesJames Almer2023-06-291-2/+2
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_bsf_fuzzer: set aud option on h266_metadata bsfJames Almer2023-06-291-1/+2
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_{bsf,dec}_fuzzer: convert to new channel layout-APIJames Almer2022-03-151-1/+1
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_bsf_fuzzer: simplify the loop feeding packets to the filterJames Almer2022-02-281-25/+16
| | | | | | | And use a single AVPacket for the entire process. This more closely follows the suggested API usage in the doxy. Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_bsf_fuzzer: Make it const-correctAndreas Rheinhardt2021-09-141-2/+2
| | | | Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* configure: Remove null_bsf dependencyAndreas Rheinhardt2021-09-141-4/+2
| | | | | | | Unneeded since c96904f525afcaba756a5ce8511a3ee1aa9fd2d7 (a bsf-list with zero bsfs is used since that commit). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec/avcodec: Stop including bsf.h in avcodec.hAndreas Rheinhardt2021-07-221-0/+1
| | | | | | Also include bsf.h directly wherever it is used. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* tools/target_bsf_fuzzer: use av_packet_alloc() to allocate packetsJames Almer2021-03-171-15/+18
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_bsf_fuzzer: set bitstream filter optionsJames Almer2020-11-201-0/+12
| | | | | | Should increase coverage with some bitstream filters Signed-off-by: James Almer <jamrial@gmail.com>
* tools/target_bsf_fuzzer: Call av_bsf_flush() in a fuzzer choosen patternJames Almer2020-11-201-0/+6
| | | | | | | | This should increase coverage. Based on a commit by Michael Niedermayer Signed-off-by: James Almer <jamrial@gmail.com>
* lavc: rename bsf.h to bsf_internal.hAnton Khirnov2020-05-221-1/+1
| | | | This will allow adding a public header named bsf.h
* tools: add a fuzzer tool for bitstream filtersJames Almer2019-12-051-0/+153
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>