You've already forked FFmpeg
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:
@ -29,7 +29,6 @@
|
|||||||
#define AVCODEC_H261_H
|
#define AVCODEC_H261_H
|
||||||
|
|
||||||
#include "mpegutils.h"
|
#include "mpegutils.h"
|
||||||
#include "mpegvideo.h"
|
|
||||||
#include "rl.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_level[64];
|
||||||
extern const int8_t ff_h261_tcoeff_run[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 */
|
#endif /* AVCODEC_H261_H */
|
||||||
|
Reference in New Issue
Block a user