summaryrefslogtreecommitdiff
path: root/libavcodec/h261enc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-28 01:14:42 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-13 19:49:29 +0100
commit746e7102be97fd15c7d084f434835497e5c81e63 (patch)
tree219d4b9f282456071af7e6f2e9b807bf4003612d /libavcodec/h261enc.c
parent9fa4e0e555ea5d484bf6038ebb0d39a7bf86fb71 (diff)
avcodec/mpegvideo: Move encoder-only stuff to a new header
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/h261enc.c')
-rw-r--r--libavcodec/h261enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h261enc.c b/libavcodec/h261enc.c
index 66b7cc18fd..7d6a559f46 100644
--- a/libavcodec/h261enc.c
+++ b/libavcodec/h261enc.c
@@ -34,6 +34,7 @@
#include "h261.h"
#include "h261enc.h"
#include "mpegvideodata.h"
+#include "mpegvideoenc.h"
static uint8_t uni_h261_rl_len [64*64*2*2];
#define UNI_ENC_INDEX(last,run,level) ((last)*128*64 + (run)*128 + (level))