summaryrefslogtreecommitdiff
path: root/libavcodec/wmv2.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-01 06:59:11 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-13 15:28:17 +0100
commit78087da47c6715602e60949e0004d3c1b5f95039 (patch)
tree6f492f130a439e224c71242861742877599d515b /libavcodec/wmv2.h
parentcc90478967431d046b2d930a60be15e81c7d0e12 (diff)
avcodec/wmv2.h: Move encoder- and decoder-only parts to new headers
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/wmv2.h')
-rw-r--r--libavcodec/wmv2.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/wmv2.h b/libavcodec/wmv2.h
index 4001093881..cdd58cf011 100644
--- a/libavcodec/wmv2.h
+++ b/libavcodec/wmv2.h
@@ -37,15 +37,6 @@ typedef struct WMV2Context {
void ff_wmv2_common_init(MpegEncContext *s);
-int ff_wmv2_decode_mb(MpegEncContext *s, int16_t block[6][64]);
-int ff_wmv2_encode_picture_header(MpegEncContext * s, int picture_number);
-void ff_wmv2_encode_mb(MpegEncContext * s, int16_t block[6][64],
- int motion_x, int motion_y);
-int ff_wmv2_decode_picture_header(MpegEncContext * s);
-int ff_wmv2_decode_secondary_picture_header(MpegEncContext * s);
-void ff_wmv2_add_mb(MpegEncContext *s, int16_t block[6][64],
- uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr);
-
void ff_mspel_motion(MpegEncContext *s,
uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
uint8_t **ref_picture, op_pixels_func (*pix_op)[4],