diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-03 12:35:39 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-06 08:28:02 +0100 |
commit | 2b541b8c1d8b214d39c5f86fe8dc3a2aebe08f6d (patch) | |
tree | a5ae6de87a523c167a9fe5a39dfbbc7261355d43 /libavcodec/ffv1enc.c | |
parent | e228d7b0db7d6cb02a73bee6d3bf4f6ecf92d0bf (diff) | |
download | ffmpeg-2b541b8c1d8b214d39c5f86fe8dc3a2aebe08f6d.tar.gz |
avcodec/golomb: Factor writing golomb codes out
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>
Diffstat (limited to 'libavcodec/ffv1enc.c')
-rw-r--r-- | libavcodec/ffv1enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c index 69b9065343..d29f62bf56 100644 --- a/libavcodec/ffv1enc.c +++ b/libavcodec/ffv1enc.c @@ -36,8 +36,8 @@ #include "encode.h" #include "internal.h" #include "put_bits.h" +#include "put_golomb.h" #include "rangecoder.h" -#include "golomb.h" #include "mathops.h" #include "ffv1.h" |