summaryrefslogtreecommitdiff
path: root/libavcodec/jpeglsenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-03 12:35:39 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-06 08:28:02 +0100
commit2b541b8c1d8b214d39c5f86fe8dc3a2aebe08f6d (patch)
treea5ae6de87a523c167a9fe5a39dfbbc7261355d43 /libavcodec/jpeglsenc.c
parente228d7b0db7d6cb02a73bee6d3bf4f6ecf92d0bf (diff)
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/jpeglsenc.c')
-rw-r--r--libavcodec/jpeglsenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jpeglsenc.c b/libavcodec/jpeglsenc.c
index beae3bb77f..83b2350a15 100644
--- a/libavcodec/jpeglsenc.c
+++ b/libavcodec/jpeglsenc.c
@@ -32,7 +32,7 @@
#include "encode.h"
#include "get_bits.h"
#include "put_bits.h"
-#include "golomb.h"
+#include "put_golomb.h"
#include "internal.h"
#include "mathops.h"
#include "mjpeg.h"