Re: [FFmpeg-devel] [PATCH 1/7] lavc/flac_parser: use a custom FIFO implementation

2021-12-31 Thread Andreas Rheinhardt
Anton Khirnov: > FLAC parser currently uses AVFifoBuffer in a highly non-trivial manner, > modifying its "internals" (the whole struct is currently public, but no > other code touches its contents directly). E.g. it does not use any > av_fifo functions for reading the FIFO contents, but implements

[FFmpeg-devel] [PATCH 1/7] lavc/flac_parser: use a custom FIFO implementation

2021-12-31 Thread Anton Khirnov
FLAC parser currently uses AVFifoBuffer in a highly non-trivial manner, modifying its "internals" (the whole struct is currently public, but no other code touches its contents directly). E.g. it does not use any av_fifo functions for reading the FIFO contents, but implements its own. Reimplement t