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
84876d36
Commit
84876d36
authored
Apr 10, 2003
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
b frames + slices bugfix
Originally committed as revision 1745 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0aae3f43
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
h263.c
libavcodec/h263.c
+5
-0
No files found.
libavcodec/h263.c
View file @
84876d36
...
...
@@ -2499,6 +2499,11 @@ static int mpeg4_decode_video_packet_header(MpegEncContext *s)
fprintf
(
stderr
,
"illegal mb_num in video packet (%d %d)
\n
"
,
mb_num
,
s
->
mb_num
);
return
-
1
;
}
if
(
s
->
pict_type
==
B_TYPE
){
while
(
s
->
next_picture
.
mbskip_table
[
mb_num
])
mb_num
++
;
if
(
mb_num
>=
s
->
mb_num
)
return
-
1
;
// slice contains just skiped MBs which where allready decoded
}
s
->
mb_x
=
mb_num
%
s
->
mb_width
;
s
->
mb_y
=
mb_num
/
s
->
mb_width
;
...
...
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