Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
f8c507f4
Commit
f8c507f4
authored
11 years ago
by
Luca Barbato
Browse files
Options
Downloads
Patches
Plain Diff
h264: Refactor ff_h264_decode_ref_pic_list_reordering
In preparation for MVC support.
parent
73eca738
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/h264_refs.c
+72
-64
72 additions, 64 deletions
libavcodec/h264_refs.c
with
72 additions
and
64 deletions
libavcodec/h264_refs.c
+
72
−
64
View file @
f8c507f4
...
...
@@ -237,75 +237,83 @@ int ff_h264_decode_ref_pic_list_reordering(H264Context *h)
return
-
1
;
}
if
(
reordering_of_pic_nums_idc
<
3
)
{
if
(
reordering_of_pic_nums_idc
<
2
)
{
const
unsigned
int
abs_diff_pic_num
=
get_ue_golomb
(
&
h
->
gb
)
+
1
;
int
frame_num
;
if
(
abs_diff_pic_num
>
h
->
max_pic_num
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"abs_diff_pic_num overflow
\n
"
);
return
-
1
;
}
if
(
reordering_of_pic_nums_idc
==
0
)
pred
-=
abs_diff_pic_num
;
else
pred
+=
abs_diff_pic_num
;
pred
&=
h
->
max_pic_num
-
1
;
frame_num
=
pic_num_extract
(
h
,
pred
,
&
pic_structure
);
for
(
i
=
h
->
short_ref_count
-
1
;
i
>=
0
;
i
--
)
{
ref
=
h
->
short_ref
[
i
];
assert
(
ref
->
reference
);
assert
(
!
ref
->
long_ref
);
if
(
ref
->
frame_num
==
frame_num
&&
(
ref
->
reference
&
pic_structure
))
break
;
}
if
(
i
>=
0
)
ref
->
pic_id
=
pred
;
}
else
{
int
long_idx
;
pic_id
=
get_ue_golomb
(
&
h
->
gb
);
//long_term_pic_idx
long_idx
=
pic_num_extract
(
h
,
pic_id
,
&
pic_structure
);
if
(
long_idx
>
31
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"long_term_pic_idx overflow
\n
"
);
return
-
1
;
}
ref
=
h
->
long_ref
[
long_idx
];
assert
(
!
(
ref
&&
!
ref
->
reference
));
if
(
ref
&&
(
ref
->
reference
&
pic_structure
))
{
ref
->
pic_id
=
pic_id
;
assert
(
ref
->
long_ref
);
i
=
0
;
}
else
{
i
=
-
1
;
}
switch
(
reordering_of_pic_nums_idc
)
{
case
0
:
case
1
:
{
const
unsigned
int
abs_diff_pic_num
=
get_ue_golomb
(
&
h
->
gb
)
+
1
;
int
frame_num
;
if
(
abs_diff_pic_num
>
h
->
max_pic_num
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"abs_diff_pic_num overflow
\n
"
);
return
AVERROR_INVALIDDATA
;
}
if
(
reordering_of_pic_nums_idc
==
0
)
pred
-=
abs_diff_pic_num
;
else
pred
+=
abs_diff_pic_num
;
pred
&=
h
->
max_pic_num
-
1
;
frame_num
=
pic_num_extract
(
h
,
pred
,
&
pic_structure
);
for
(
i
=
h
->
short_ref_count
-
1
;
i
>=
0
;
i
--
)
{
ref
=
h
->
short_ref
[
i
];
assert
(
ref
->
reference
);
assert
(
!
ref
->
long_ref
);
if
(
ref
->
frame_num
==
frame_num
&&
(
ref
->
reference
&
pic_structure
))
break
;
}
if
(
i
>=
0
)
ref
->
pic_id
=
pred
;
break
;
}
case
2
:
{
int
long_idx
;
pic_id
=
get_ue_golomb
(
&
h
->
gb
);
// long_term_pic_idx
long_idx
=
pic_num_extract
(
h
,
pic_id
,
&
pic_structure
);
if
(
i
<
0
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"reference picture missing during reorder
\n
"
);
memset
(
&
h
->
ref_list
[
list
][
index
],
0
,
sizeof
(
Picture
));
//FIXME
if
(
long_idx
>
31
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"long_term_pic_idx overflow
\n
"
);
return
AVERROR_INVALIDDATA
;
}
ref
=
h
->
long_ref
[
long_idx
];
assert
(
!
(
ref
&&
!
ref
->
reference
));
if
(
ref
&&
(
ref
->
reference
&
pic_structure
))
{
ref
->
pic_id
=
pic_id
;
assert
(
ref
->
long_ref
);
i
=
0
;
}
else
{
for
(
i
=
index
;
i
+
1
<
h
->
ref_count
[
list
];
i
++
)
{
if
(
ref
->
long_ref
==
h
->
ref_list
[
list
][
i
].
long_ref
&&
ref
->
pic_id
==
h
->
ref_list
[
list
][
i
].
pic_id
)
break
;
}
for
(;
i
>
index
;
i
--
)
{
COPY_PICTURE
(
&
h
->
ref_list
[
list
][
i
],
&
h
->
ref_list
[
list
][
i
-
1
]);
}
COPY_PICTURE
(
&
h
->
ref_list
[
list
][
index
],
ref
);
if
(
FIELD_PICTURE
(
h
))
{
pic_as_field
(
&
h
->
ref_list
[
list
][
index
],
pic_structure
);
}
i
=
-
1
;
}
break
;
}
default:
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"illegal reordering_of_pic_nums_idc
\n
"
);
return
AVERROR_INVALIDDATA
;
}
if
(
i
<
0
)
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"reference picture missing during reorder
\n
"
);
memset
(
&
h
->
ref_list
[
list
][
index
],
0
,
sizeof
(
Picture
));
// FIXME
}
else
{
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"illegal reordering_of_pic_nums_idc
\n
"
);
return
-
1
;
for
(
i
=
index
;
i
+
1
<
h
->
ref_count
[
list
];
i
++
)
{
if
(
ref
->
long_ref
==
h
->
ref_list
[
list
][
i
].
long_ref
&&
ref
->
pic_id
==
h
->
ref_list
[
list
][
i
].
pic_id
)
break
;
}
for
(;
i
>
index
;
i
--
)
{
COPY_PICTURE
(
&
h
->
ref_list
[
list
][
i
],
&
h
->
ref_list
[
list
][
i
-
1
]);
}
COPY_PICTURE
(
&
h
->
ref_list
[
list
][
index
],
ref
);
if
(
FIELD_PICTURE
(
h
))
{
pic_as_field
(
&
h
->
ref_list
[
list
][
index
],
pic_structure
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment