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
4806b922
Commit
4806b922
authored
May 26, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
print direct_spatial_mv_pred
Originally committed as revision 13409 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bcbd328e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
h264.c
libavcodec/h264.c
+3
-2
No files found.
libavcodec/h264.c
View file @
4806b922
...
...
@@ -4233,7 +4233,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
h
->
emu_edge_height
=
(
FRAME_MBAFF
||
FIELD_PICTURE
)
?
0
:
h
->
emu_edge_width
;
if
(
s
->
avctx
->
debug
&
FF_DEBUG_PICT_INFO
){
av_log
(
h
->
s
.
avctx
,
AV_LOG_DEBUG
,
"slice:%d %s mb:%d %c pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s
\n
"
,
av_log
(
h
->
s
.
avctx
,
AV_LOG_DEBUG
,
"slice:%d %s mb:%d %c pps:%u frame:%d poc:%d/%d ref:%d/%d qp:%d loop:%d:%d:%d weight:%d%s
%s
\n
"
,
h
->
slice_num
,
(
s
->
picture_structure
==
PICT_FRAME
?
"F"
:
s
->
picture_structure
==
PICT_TOP_FIELD
?
"T"
:
"B"
),
first_mb_in_slice
,
...
...
@@ -4244,7 +4244,8 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
s
->
qscale
,
h
->
deblocking_filter
,
h
->
slice_alpha_c0_offset
/
2
,
h
->
slice_beta_offset
/
2
,
h
->
use_weight
,
h
->
use_weight
==
1
&&
h
->
use_weight_chroma
?
"c"
:
""
h
->
use_weight
==
1
&&
h
->
use_weight_chroma
?
"c"
:
""
,
h
->
slice_type
==
FF_B_TYPE
?
(
h
->
direct_spatial_mv_pred
?
"SPAT"
:
"TEMP"
)
:
""
);
}
...
...
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