summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4video.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-01 07:39:44 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-13 19:41:57 +0100
commit876d0afe1f220586217a56fdfb21900c7156246e (patch)
tree6b441aa872a1ba0a12e28c6dbb9eb4bea448b947 /libavcodec/mpeg4video.h
parent1187765f3b7372c6f8c2264297fded779574ad01 (diff)
avcodec/mpeg4video.h: Move encoder-only parts in a new file
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r--libavcodec/mpeg4video.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h
index bee52b2c29..ab65280756 100644
--- a/libavcodec/mpeg4video.h
+++ b/libavcodec/mpeg4video.h
@@ -25,7 +25,6 @@
#include <stdint.h>
-#include "get_bits.h"
#include "mpegvideo.h"
// shapes
@@ -70,18 +69,7 @@
/* smaller packets likely don't contain a real frame */
#define MAX_NVOP_SIZE 19
-void ff_mpeg4_encode_mb(MpegEncContext *s,
- int16_t block[6][64],
- int motion_x, int motion_y);
-void ff_set_mpeg4_time(MpegEncContext *s);
-int ff_mpeg4_encode_picture_header(MpegEncContext *s, int picture_number);
-
-void ff_mpeg4_encode_video_packet_header(MpegEncContext *s);
void ff_mpeg4_clean_buffers(MpegEncContext *s);
-void ff_mpeg4_stuffing(PutBitContext *pbc);
-void ff_mpeg4_init_partitions(MpegEncContext *s);
-void ff_mpeg4_merge_partitions(MpegEncContext *s);
-void ff_clean_mpeg4_qscales(MpegEncContext *s);
int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s);
void ff_mpeg4_init_direct_mv(MpegEncContext *s);