mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '66ac3dbf1e60c27d0f1d779a424c0b33b7ca3780'
* commit '66ac3dbf1e60c27d0f1d779a424c0b33b7ca3780': h261: Move function declarations to h261.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
e7c801d9d3
|
@ -50,4 +50,13 @@ typedef struct H261Context{
|
|||
|
||||
extern uint8_t ff_h261_rl_table_store[2][2*MAX_RUN + MAX_LEVEL + 3];
|
||||
|
||||
void ff_h261_loop_filter(MpegEncContext *s);
|
||||
|
||||
int ff_h261_get_picture_format(int width, int height);
|
||||
void ff_h261_reorder_mb_index(MpegEncContext *s);
|
||||
void ff_h261_encode_mb(MpegEncContext *s, int16_t block[6][64],
|
||||
int motion_x, int motion_y);
|
||||
void ff_h261_encode_picture_header(MpegEncContext *s, int picture_number);
|
||||
void ff_h261_encode_init(MpegEncContext *s);
|
||||
|
||||
#endif /* AVCODEC_H261_H */
|
||||
|
|
|
@ -921,17 +921,6 @@ extern const uint8_t ff_aic_dc_scale_table[32];
|
|||
extern const uint8_t ff_h263_chroma_qscale_table[32];
|
||||
extern const uint8_t ff_h263_loop_filter_strength[32];
|
||||
|
||||
/* h261.c */
|
||||
void ff_h261_loop_filter(MpegEncContext *s);
|
||||
void ff_h261_reorder_mb_index(MpegEncContext* s);
|
||||
void ff_h261_encode_mb(MpegEncContext *s,
|
||||
int16_t block[6][64],
|
||||
int motion_x, int motion_y);
|
||||
void ff_h261_encode_picture_header(MpegEncContext * s, int picture_number);
|
||||
void ff_h261_encode_init(MpegEncContext *s);
|
||||
int ff_h261_get_picture_format(int width, int height);
|
||||
|
||||
|
||||
/* rv10.c */
|
||||
void ff_rv10_encode_picture_header(MpegEncContext *s, int picture_number);
|
||||
int ff_rv_decode_dc(MpegEncContext *s, int n);
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include "dsputil.h"
|
||||
#include "mpeg12.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "h261.h"
|
||||
#include "h263.h"
|
||||
#include "mathops.h"
|
||||
#include "mjpegenc.h"
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "libavutil/internal.h"
|
||||
#include "avcodec.h"
|
||||
#include "dsputil.h"
|
||||
#include "h261.h"
|
||||
#include "mpegvideo.h"
|
||||
#include "mjpegenc.h"
|
||||
#include "msmpeg4.h"
|
||||
|
|
Loading…
Reference in New Issue