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
5eb488bf
Commit
5eb488bf
authored
Aug 02, 2013
by
Vittorio Giovara
Committed by
Anton Khirnov
Aug 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: use explicit variable names for *_field_flag
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
b3dc260e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
h264.c
libavcodec/h264.c
+5
-2
No files found.
libavcodec/h264.c
View file @
5eb488bf
...
@@ -3125,6 +3125,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
...
@@ -3125,6 +3125,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
int
default_ref_list_done
=
0
;
int
default_ref_list_done
=
0
;
int
last_pic_structure
,
last_pic_droppable
;
int
last_pic_structure
,
last_pic_droppable
;
int
needs_reinit
=
0
;
int
needs_reinit
=
0
;
int
field_pic_flag
,
bottom_field_flag
;
h
->
me
.
qpel_put
=
h
->
h264qpel
.
put_h264_qpel_pixels_tab
;
h
->
me
.
qpel_put
=
h
->
h264qpel
.
put_h264_qpel_pixels_tab
;
h
->
me
.
qpel_avg
=
h
->
h264qpel
.
avg_h264_qpel_pixels_tab
;
h
->
me
.
qpel_avg
=
h
->
h264qpel
.
avg_h264_qpel_pixels_tab
;
...
@@ -3301,8 +3302,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
...
@@ -3301,8 +3302,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
if
(
h
->
sps
.
frame_mbs_only_flag
)
{
if
(
h
->
sps
.
frame_mbs_only_flag
)
{
h
->
picture_structure
=
PICT_FRAME
;
h
->
picture_structure
=
PICT_FRAME
;
}
else
{
}
else
{
if
(
get_bits1
(
&
h
->
gb
))
{
// field_pic_flag
field_pic_flag
=
get_bits1
(
&
h
->
gb
);
h
->
picture_structure
=
PICT_TOP_FIELD
+
get_bits1
(
&
h
->
gb
);
// bottom_field_flag
if
(
field_pic_flag
)
{
bottom_field_flag
=
get_bits1
(
&
h
->
gb
);
h
->
picture_structure
=
PICT_TOP_FIELD
+
bottom_field_flag
;
}
else
{
}
else
{
h
->
picture_structure
=
PICT_FRAME
;
h
->
picture_structure
=
PICT_FRAME
;
h
->
mb_aff_frame
=
h
->
sps
.
mb_aff
;
h
->
mb_aff_frame
=
h
->
sps
.
mb_aff
;
...
...
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