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
89ae244e
Commit
89ae244e
authored
Apr 11, 2016
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264_refs: remove an unused parameter from ff_h264_fill_mbaff_ref_list()
parent
755f79f8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
h264.h
libavcodec/h264.h
+1
-1
h264_refs.c
libavcodec/h264_refs.c
+1
-1
h264_slice.c
libavcodec/h264_slice.c
+1
-1
No files found.
libavcodec/h264.h
View file @
89ae244e
...
@@ -687,7 +687,7 @@ int ff_h264_get_slice_type(const H264SliceContext *sl);
...
@@ -687,7 +687,7 @@ int ff_h264_get_slice_type(const H264SliceContext *sl);
int
ff_h264_alloc_tables
(
H264Context
*
h
);
int
ff_h264_alloc_tables
(
H264Context
*
h
);
int
ff_h264_decode_ref_pic_list_reordering
(
const
H264Context
*
h
,
H264SliceContext
*
sl
);
int
ff_h264_decode_ref_pic_list_reordering
(
const
H264Context
*
h
,
H264SliceContext
*
sl
);
void
ff_h264_fill_mbaff_ref_list
(
H264
Context
*
h
,
H264
SliceContext
*
sl
);
void
ff_h264_fill_mbaff_ref_list
(
H264SliceContext
*
sl
);
void
ff_h264_remove_all_refs
(
H264Context
*
h
);
void
ff_h264_remove_all_refs
(
H264Context
*
h
);
/**
/**
...
...
libavcodec/h264_refs.c
View file @
89ae244e
...
@@ -352,7 +352,7 @@ int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContex
...
@@ -352,7 +352,7 @@ int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContex
return
0
;
return
0
;
}
}
void
ff_h264_fill_mbaff_ref_list
(
H264
Context
*
h
,
H264
SliceContext
*
sl
)
void
ff_h264_fill_mbaff_ref_list
(
H264SliceContext
*
sl
)
{
{
int
list
,
i
,
j
;
int
list
,
i
,
j
;
for
(
list
=
0
;
list
<
sl
->
list_count
;
list
++
)
{
//FIXME try list_count
for
(
list
=
0
;
list
<
sl
->
list_count
;
list
++
)
{
//FIXME try list_count
...
...
libavcodec/h264_slice.c
View file @
89ae244e
...
@@ -1421,7 +1421,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
...
@@ -1421,7 +1421,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
}
}
if
(
FRAME_MBAFF
(
h
))
{
if
(
FRAME_MBAFF
(
h
))
{
ff_h264_fill_mbaff_ref_list
(
h
,
sl
);
ff_h264_fill_mbaff_ref_list
(
sl
);
if
(
pps
->
weighted_bipred_idc
==
2
&&
sl
->
slice_type_nos
==
AV_PICTURE_TYPE_B
)
{
if
(
pps
->
weighted_bipred_idc
==
2
&&
sl
->
slice_type_nos
==
AV_PICTURE_TYPE_B
)
{
implicit_weight_table
(
h
,
sl
,
0
);
implicit_weight_table
(
h
,
sl
,
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