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
8d695dc4
Commit
8d695dc4
authored
Jun 20, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg: Mark ff_mpeg_set_erpic() static
It is not used outside of the file.
parent
a6a675a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
mpegvideo.c
libavcodec/mpegvideo.c
+4
-4
mpegvideo.h
libavcodec/mpegvideo.h
+0
-1
No files found.
libavcodec/mpegvideo.c
View file @
8d695dc4
...
...
@@ -2468,7 +2468,7 @@ void ff_MPV_report_decode_progress(MpegEncContext *s)
}
#if CONFIG_ERROR_RESILIENCE
void
ff_mpeg_
set_erpic
(
ERPicture
*
dst
,
Picture
*
src
)
static
void
set_erpic
(
ERPicture
*
dst
,
Picture
*
src
)
{
int
i
;
...
...
@@ -2494,9 +2494,9 @@ void ff_mpeg_er_frame_start(MpegEncContext *s)
{
ERContext
*
er
=
&
s
->
er
;
ff_mpeg_set_erpic
(
&
er
->
cur_pic
,
s
->
current_picture_ptr
);
ff_mpeg_
set_erpic
(
&
er
->
next_pic
,
s
->
next_picture_ptr
);
ff_mpeg_
set_erpic
(
&
er
->
last_pic
,
s
->
last_picture_ptr
);
set_erpic
(
&
er
->
cur_pic
,
s
->
current_picture_ptr
);
set_erpic
(
&
er
->
next_pic
,
s
->
next_picture_ptr
);
set_erpic
(
&
er
->
last_pic
,
s
->
last_picture_ptr
);
er
->
pp_time
=
s
->
pp_time
;
er
->
pb_time
=
s
->
pb_time
;
...
...
libavcodec/mpegvideo.h
View file @
8d695dc4
...
...
@@ -725,7 +725,6 @@ void ff_set_qscale(MpegEncContext * s, int qscale);
/* Error resilience */
void
ff_mpeg_er_frame_start
(
MpegEncContext
*
s
);
void
ff_mpeg_set_erpic
(
ERPicture
*
dst
,
Picture
*
src
);
int
ff_dct_common_init
(
MpegEncContext
*
s
);
void
ff_convert_matrix
(
DSPContext
*
dsp
,
int
(
*
qmat
)[
64
],
uint16_t
(
*
qmat16
)[
2
][
64
],
...
...
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