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
ca1fe6c0
Commit
ca1fe6c0
authored
Feb 03, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h263: remove an unused parameter from ff_h263_decode_init_vlc
parent
9d083d64
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
h263.h
libavcodec/h263.h
+1
-1
h263dec.c
libavcodec/h263dec.c
+1
-1
ituh263dec.c
libavcodec/ituh263dec.c
+1
-1
rv10.c
libavcodec/rv10.c
+1
-1
No files found.
libavcodec/h263.h
View file @
ca1fe6c0
...
...
@@ -80,7 +80,7 @@ void ff_h263_encode_gob_header(MpegEncContext * s, int mb_line);
int16_t
*
ff_h263_pred_motion
(
MpegEncContext
*
s
,
int
block
,
int
dir
,
int
*
px
,
int
*
py
);
void
ff_h263_encode_init
(
MpegEncContext
*
s
);
void
ff_h263_decode_init_vlc
(
MpegEncContext
*
s
);
void
ff_h263_decode_init_vlc
(
void
);
int
ff_h263_decode_picture_header
(
MpegEncContext
*
s
);
int
ff_h263_decode_gob_header
(
MpegEncContext
*
s
);
void
ff_h263_update_motion_val
(
MpegEncContext
*
s
);
...
...
libavcodec/h263dec.c
View file @
ca1fe6c0
...
...
@@ -117,7 +117,7 @@ av_cold int ff_h263_decode_init(AVCodecContext *avctx)
if
(
ff_MPV_common_init
(
s
)
<
0
)
return
-
1
;
ff_h263_decode_init_vlc
(
s
);
ff_h263_decode_init_vlc
();
return
0
;
}
...
...
libavcodec/ituh263dec.c
View file @
ca1fe6c0
...
...
@@ -101,7 +101,7 @@ static VLC cbpc_b_vlc;
/* init vlcs */
/* XXX: find a better solution to handle static init */
void
ff_h263_decode_init_vlc
(
MpegEncContext
*
s
)
void
ff_h263_decode_init_vlc
(
void
)
{
static
int
done
=
0
;
...
...
libavcodec/rv10.c
View file @
ca1fe6c0
...
...
@@ -472,7 +472,7 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
if
(
ff_MPV_common_init
(
s
)
<
0
)
return
-
1
;
ff_h263_decode_init_vlc
(
s
);
ff_h263_decode_init_vlc
();
/* init rv vlc */
if
(
!
done
)
{
...
...
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