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
1699d376
Commit
1699d376
authored
Mar 10, 2002
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
divx5 draw_edges bugfix
Originally committed as revision 322 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
7ff037e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mpegvideo.c
libavcodec/mpegvideo.c
+2
-2
No files found.
libavcodec/mpegvideo.c
View file @
1699d376
...
...
@@ -445,12 +445,12 @@ void MPV_frame_end(MpegEncContext *s)
{
/* draw edge for correct motion prediction if outside */
if
(
s
->
pict_type
!=
B_TYPE
&&
!
s
->
intra_only
)
{
if
(
s
->
avctx
==
NULL
||
s
->
avctx
->
codec
->
id
!=
CODEC_ID_MPEG4
){
if
(
s
->
avctx
==
NULL
||
s
->
avctx
->
codec
->
id
!=
CODEC_ID_MPEG4
||
s
->
divx_version
==
500
){
draw_edges
(
s
->
current_picture
[
0
],
s
->
linesize
,
s
->
mb_width
*
16
,
s
->
mb_height
*
16
,
EDGE_WIDTH
);
draw_edges
(
s
->
current_picture
[
1
],
s
->
linesize
/
2
,
s
->
mb_width
*
8
,
s
->
mb_height
*
8
,
EDGE_WIDTH
/
2
);
draw_edges
(
s
->
current_picture
[
2
],
s
->
linesize
/
2
,
s
->
mb_width
*
8
,
s
->
mb_height
*
8
,
EDGE_WIDTH
/
2
);
}
else
{
/*
OpenDivx, but i dunno how to distinguish it from mpeg4
*/
/*
mpeg4? / opendivx / xvid
*/
draw_edges
(
s
->
current_picture
[
0
],
s
->
linesize
,
s
->
width
,
s
->
height
,
EDGE_WIDTH
);
draw_edges
(
s
->
current_picture
[
1
],
s
->
linesize
/
2
,
s
->
width
/
2
,
s
->
height
/
2
,
EDGE_WIDTH
/
2
);
draw_edges
(
s
->
current_picture
[
2
],
s
->
linesize
/
2
,
s
->
width
/
2
,
s
->
height
/
2
,
EDGE_WIDTH
/
2
);
...
...
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