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
20695ec9
Commit
20695ec9
authored
Jun 03, 2002
by
Falk Hüffner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor warning cleanup.
Originally committed as revision 654 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8696b636
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
dsputil.c
libavcodec/dsputil.c
+1
-1
h263.c
libavcodec/h263.c
+1
-2
mpegaudiodec.c
libavcodec/mpegaudiodec.c
+1
-0
msmpeg4.c
libavcodec/msmpeg4.c
+2
-2
No files found.
libavcodec/dsputil.c
View file @
20695ec9
...
...
@@ -144,7 +144,7 @@ UINT8 zigzag_end[64];
UINT8
permutation
[
64
];
//UINT8 invPermutation[64];
static
void
build_zigzag_end
()
static
void
build_zigzag_end
(
void
)
{
int
lastIndex
;
int
lastIndexAfterPerm
=
0
;
...
...
libavcodec/h263.c
View file @
20695ec9
...
...
@@ -1017,7 +1017,7 @@ static void init_mv_penalty_and_fcode(MpegEncContext *s)
}
}
static
void
init_uni_dc_tab
()
static
void
init_uni_dc_tab
(
void
)
{
int
level
,
uni_code
,
uni_len
;
...
...
@@ -1367,7 +1367,6 @@ static inline int mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr,
{
int
a
,
b
,
c
,
wrap
,
pred
,
scale
;
UINT16
*
dc_val
;
int
dummy
;
/* find prediction */
if
(
n
<
4
)
{
...
...
libavcodec/mpegaudiodec.c
View file @
20695ec9
...
...
@@ -2481,6 +2481,7 @@ static int decode_frame(AVCodecContext * avctx,
break
;
}
next_data:
;
}
return
buf_ptr
-
buf
;
}
...
...
libavcodec/msmpeg4.c
View file @
20695ec9
...
...
@@ -53,7 +53,7 @@ static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr);
static
int
msmpeg4_decode_motion
(
MpegEncContext
*
s
,
int
*
mx_ptr
,
int
*
my_ptr
);
static
void
msmpeg4v2_encode_motion
(
MpegEncContext
*
s
,
int
val
);
static
void
init_h263_dc_for_msmpeg4
();
static
void
init_h263_dc_for_msmpeg4
(
void
);
extern
UINT32
inverse
[
256
];
...
...
@@ -698,7 +698,7 @@ static VLC v1_intra_cbpc_vlc;
static
VLC
v1_inter_cbpc_vlc
;
/* this table is practically identical to the one from h263 except that its inverted */
static
void
init_h263_dc_for_msmpeg4
()
static
void
init_h263_dc_for_msmpeg4
(
void
)
{
static
int
inited
=
0
;
...
...
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