1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/h261: Use forward-declaration for MpegEncContext

Avoids an indirect inclusion of mpegvideo.h in h261data.c.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-02-28 18:13:59 +01:00
parent 7abc9c5e3d
commit a02fb1a4f4

View File

@ -29,7 +29,6 @@
#define AVCODEC_H261_H
#include "mpegutils.h"
#include "mpegvideo.h"
#include "rl.h"
/**
@ -54,6 +53,7 @@ extern const uint16_t ff_h261_tcoeff_vlc[65][2];
extern const int8_t ff_h261_tcoeff_level[64];
extern const int8_t ff_h261_tcoeff_run[64];
void ff_h261_loop_filter(MpegEncContext *s);
struct MpegEncContext;
void ff_h261_loop_filter(struct MpegEncContext *s);
#endif /* AVCODEC_H261_H */