summaryrefslogtreecommitdiff
path: root/libavcodec/put_golomb.h
Commit message (Collapse)AuthorAgeFilesLines
* libavcodec/flacenc: Implement encoding of 32 bit-per-sample PCMMartijn van Beurden2022-12-261-14/+0
| | | | | | Add encoding of 32 bit-per-sample PCM to FLAC files to libavcodec. Coding to this format is at this point considered experimental and -strict experimental is needed to get ffmpeg to encode such files.
* avcodec/golomb: Factor writing golomb codes outAndreas Rheinhardt2022-01-061-0/+168
Most users only want to either read or write golomb codes, not both. By splitting these headers one avoids having unnecesssary (get|put)_hits.h inclusions. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>