Merge commit 'eee2000b41
'
* commit 'eee2000b41
':
mpeg12: Move some ff_mpeg1_* function declarations to a more suitable place
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
385ffc7650
4 changed files with 4 additions and 3 deletions
|
@ -72,5 +72,7 @@ static inline int decode_dc(GetBitContext *gb, int component)
|
||||||
}
|
}
|
||||||
|
|
||||||
int ff_mpeg1_decode_block_intra(MpegEncContext *s, int16_t *block, int n);
|
int ff_mpeg1_decode_block_intra(MpegEncContext *s, int16_t *block, int n);
|
||||||
|
void ff_mpeg1_clean_buffers(MpegEncContext *s);
|
||||||
|
int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s);
|
||||||
|
|
||||||
#endif /* AVCODEC_MPEG12_H */
|
#endif /* AVCODEC_MPEG12_H */
|
||||||
|
|
|
@ -913,8 +913,6 @@ void ff_mpeg1_encode_mb(MpegEncContext *s,
|
||||||
int motion_x, int motion_y);
|
int motion_x, int motion_y);
|
||||||
void ff_mpeg1_encode_init(MpegEncContext *s);
|
void ff_mpeg1_encode_init(MpegEncContext *s);
|
||||||
void ff_mpeg1_encode_slice_header(MpegEncContext *s);
|
void ff_mpeg1_encode_slice_header(MpegEncContext *s);
|
||||||
void ff_mpeg1_clean_buffers(MpegEncContext *s);
|
|
||||||
int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s);
|
|
||||||
|
|
||||||
extern const uint8_t ff_aic_dc_scale_table[32];
|
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_chroma_qscale_table[32];
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "dct.h"
|
#include "dct.h"
|
||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
|
#include "mpeg12.h"
|
||||||
#include "mpegvideo.h"
|
#include "mpegvideo.h"
|
||||||
#include "h263.h"
|
#include "h263.h"
|
||||||
#include "mathops.h"
|
#include "mathops.h"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
#include "mpegvideo.h"
|
#include "mpeg12.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
struct MpvParseContext {
|
struct MpvParseContext {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue