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
28269849
Commit
28269849
authored
Jan 09, 2003
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed wmv2 slices
Originally committed as revision 1425 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e5ab4fdd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
14 deletions
+6
-14
h263dec.c
libavcodec/h263dec.c
+1
-1
msmpeg4.c
libavcodec/msmpeg4.c
+2
-2
wmv2.c
libavcodec/wmv2.c
+3
-11
No files found.
libavcodec/h263dec.c
View file @
28269849
...
...
@@ -580,7 +580,7 @@ retry:
break
;
}
if
(
s
->
msmpeg4_version
!=
4
&&
s
->
h263_pred
)
if
(
s
->
msmpeg4_version
<
4
&&
s
->
h263_pred
)
ff_mpeg4_clean_buffers
(
s
);
decode_slice
(
s
);
...
...
libavcodec/msmpeg4.c
View file @
28269849
...
...
@@ -502,7 +502,7 @@ static void msmpeg4_encode_motion(MpegEncContext * s,
static
inline
void
handle_slices
(
MpegEncContext
*
s
){
if
(
s
->
mb_x
==
0
)
{
if
(
s
->
slice_height
&&
(
s
->
mb_y
%
s
->
slice_height
)
==
0
)
{
if
(
s
->
msmpeg4_version
!=
4
){
if
(
s
->
msmpeg4_version
<
4
){
ff_mpeg4_clean_buffers
(
s
);
}
s
->
first_slice_line
=
1
;
...
...
@@ -691,7 +691,7 @@ static inline int msmpeg4_pred_dc(MpegEncContext * s, int n,
b
=
dc_val
[
-
1
-
wrap
];
c
=
dc_val
[
-
wrap
];
if
(
s
->
first_slice_line
&&
(
n
&
2
)
==
0
&&
s
->
msmpeg4_version
!=
4
){
if
(
s
->
first_slice_line
&&
(
n
&
2
)
==
0
&&
s
->
msmpeg4_version
<
4
){
b
=
c
=
1024
;
}
...
...
libavcodec/wmv2.c
View file @
28269849
...
...
@@ -330,8 +330,9 @@ static int decode_ext_header(Wmv2Context *w){
s
->
slice_height
=
s
->
mb_height
/
code
;
if
(
s
->
avctx
->
debug
&
FF_DEBUG_PICT_INFO
){
printf
(
"fps:%d, br:%d, qpbit:%d, abt_flag:%d, j_type_bit:%d, tl_mv_flag:%d, mbrl_bit:%d, code:%d, flag3:%d
\n
"
,
fps
,
s
->
bit_rate
,
w
->
mspel_bit
,
w
->
abt_flag
,
w
->
j_type_bit
,
w
->
top_left_mv_flag
,
w
->
per_mb_rl_bit
,
code
,
w
->
flag3
);
printf
(
"fps:%d, br:%d, qpbit:%d, abt_flag:%d, j_type_bit:%d, tl_mv_flag:%d, mbrl_bit:%d, code:%d, flag3:%d, slices:%d
\n
"
,
fps
,
s
->
bit_rate
,
w
->
mspel_bit
,
w
->
abt_flag
,
w
->
j_type_bit
,
w
->
top_left_mv_flag
,
w
->
per_mb_rl_bit
,
code
,
w
->
flag3
,
code
);
}
return
0
;
}
...
...
@@ -578,15 +579,6 @@ static void wmv2_add_block(Wmv2Context *w, DCTELEM *block1, uint8_t *dst, int st
uint8_t
temp
[
2
][
64
];
int
i
;
if
(
w
->
abt_type_table
[
n
]
&&
0
){
int
a
,
b
;
a
=
block1
[
0
];
b
=
w
->
abt_block2
[
n
][
0
];
block1
[
0
]
=
a
+
b
;
w
->
abt_block2
[
n
][
0
]
=
a
-
b
;
}
switch
(
w
->
abt_type_table
[
n
]){
case
0
:
if
(
s
->
block_last_index
[
n
]
>=
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