Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
67309e49
Commit
67309e49
authored
Jan 12, 2003
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
/* align 16 */
Originally committed as revision 1454 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
92148550
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mpegvideo.h
libavcodec/mpegvideo.h
+5
-5
No files found.
libavcodec/mpegvideo.h
View file @
67309e49
...
...
@@ -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*/
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment