mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
/* align 16 */
Originally committed as revision 1454 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9214855006
commit
67309e49c0
@ -544,14 +544,14 @@ typedef struct MpegEncContext {
|
||||
#define SLICE_NOEND -3 //no end marker or error found but mb count exceeded
|
||||
|
||||
void (*dct_unquantize_mpeg1)(struct MpegEncContext *s,
|
||||
DCTELEM *block, int n, int qscale);
|
||||
DCTELEM *block/*align 16*/, int n, int qscale);
|
||||
void (*dct_unquantize_mpeg2)(struct MpegEncContext *s,
|
||||
DCTELEM *block, int n, int qscale);
|
||||
DCTELEM *block/*align 16*/, int n, int qscale);
|
||||
void (*dct_unquantize_h263)(struct MpegEncContext *s,
|
||||
DCTELEM *block, int n, int qscale);
|
||||
DCTELEM *block/*align 16*/, int n, int qscale);
|
||||
void (*dct_unquantize)(struct MpegEncContext *s, // unquantizer to use (mpeg4 can use both)
|
||||
DCTELEM *block, int n, int qscale);
|
||||
int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
|
||||
DCTELEM *block/*align 16*/, int n, int qscale);
|
||||
int (*dct_quantize)(struct MpegEncContext *s, DCTELEM *block/*align 16*/, int n, int qscale, int *overflow);
|
||||
void (*fdct)(DCTELEM *block/* align 16*/);
|
||||
void (*idct_put)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
|
||||
void (*idct_add)(UINT8 *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
|
||||
|
Loading…
Reference in New Issue
Block a user