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
4bb9dbe4
Commit
4bb9dbe4
authored
Sep 09, 2015
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: permanently delete segmentation refmap on any size change.
parent
35b7bd25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
12 deletions
+7
-12
vp9.c
libavcodec/vp9.c
+7
-12
No files found.
libavcodec/vp9.c
View file @
4bb9dbe4
...
...
@@ -153,7 +153,6 @@ typedef struct VP9Context {
uint8_t
temporal
;
uint8_t
absolute_vals
;
uint8_t
update_map
;
uint8_t
ignore_refmap
;
struct
{
uint8_t
q_enabled
;
uint8_t
lf_enabled
;
...
...
@@ -743,7 +742,6 @@ static int decode_frame_header(AVCodecContext *ctx,
ctx
->
properties
|=
FF_CODEC_PROPERTY_LOSSLESS
;
/* segmentation header info */
s
->
segmentation
.
ignore_refmap
=
0
;
if
((
s
->
segmentation
.
enabled
=
get_bits1
(
&
s
->
gb
)))
{
if
((
s
->
segmentation
.
update_map
=
get_bits1
(
&
s
->
gb
)))
{
for
(
i
=
0
;
i
<
7
;
i
++
)
...
...
@@ -755,15 +753,6 @@ static int decode_frame_header(AVCodecContext *ctx,
get_bits
(
&
s
->
gb
,
8
)
:
255
;
}
}
if
((
!
s
->
segmentation
.
update_map
||
s
->
segmentation
.
temporal
)
&&
(
w
!=
s
->
frames
[
CUR_FRAME
].
tf
.
f
->
width
||
h
!=
s
->
frames
[
CUR_FRAME
].
tf
.
f
->
height
))
{
av_log
(
ctx
,
AV_LOG_WARNING
,
"Reference segmap (temp=%d,update=%d) enabled on size-change!
\n
"
,
s
->
segmentation
.
temporal
,
s
->
segmentation
.
update_map
);
s
->
segmentation
.
ignore_refmap
=
1
;
//return AVERROR_INVALIDDATA;
}
if
(
get_bits1
(
&
s
->
gb
))
{
s
->
segmentation
.
absolute_vals
=
get_bits1
(
&
s
->
gb
);
...
...
@@ -1490,7 +1479,7 @@ static void decode_mode(AVCodecContext *ctx)
vp56_rac_get_prob_branchy
(
&
s
->
c
,
s
->
prob
.
segpred
[
s
->
above_segpred_ctx
[
col
]
+
s
->
left_segpred_ctx
[
row7
]])))
{
if
(
!
s
->
errorres
&&
!
s
->
segmentation
.
ignore_ref
map
)
{
if
(
!
s
->
errorres
&&
s
->
frames
[
REF_FRAME_SEGMAP
].
segmentation_
map
)
{
int
pred
=
8
,
x
;
uint8_t
*
refsegmap
=
s
->
frames
[
REF_FRAME_SEGMAP
].
segmentation_map
;
...
...
@@ -4064,6 +4053,12 @@ static int vp9_decode_frame(AVCodecContext *ctx, void *frame,
ls_y
=
f
->
linesize
[
0
];
ls_uv
=
f
->
linesize
[
1
];
if
(
s
->
frames
[
REF_FRAME_SEGMAP
].
tf
.
f
->
data
[
0
]
&&
(
s
->
frames
[
REF_FRAME_MVPAIR
].
tf
.
f
->
width
!=
s
->
frames
[
CUR_FRAME
].
tf
.
f
->
width
||
s
->
frames
[
REF_FRAME_MVPAIR
].
tf
.
f
->
height
!=
s
->
frames
[
CUR_FRAME
].
tf
.
f
->
height
))
{
vp9_unref_frame
(
ctx
,
&
s
->
frames
[
REF_FRAME_SEGMAP
]);
}
// ref frame setup
for
(
i
=
0
;
i
<
8
;
i
++
)
{
if
(
s
->
next_refs
[
i
].
f
->
data
[
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