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
21bfed5b
Commit
21bfed5b
authored
Jun 28, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/mpegvideo_enc: reduce space between blocks in emu_edge in encode_mb_internal
parent
5bca5f87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+4
-4
No files found.
libavcodec/mpegvideo_enc.c
View file @
21bfed5b
...
...
@@ -2032,18 +2032,18 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s,
16
,
16
,
mb_x
*
16
,
mb_y
*
16
,
s
->
width
,
s
->
height
);
ptr_y
=
ebuf
;
s
->
vdsp
.
emulated_edge_mc
(
ebuf
+
1
8
*
wrap_y
,
ptr_cb
,
s
->
vdsp
.
emulated_edge_mc
(
ebuf
+
1
6
*
wrap_y
,
ptr_cb
,
wrap_c
,
wrap_c
,
mb_block_width
,
mb_block_height
,
mb_x
*
mb_block_width
,
mb_y
*
mb_block_height
,
cw
,
ch
);
ptr_cb
=
ebuf
+
1
8
*
wrap_y
;
s
->
vdsp
.
emulated_edge_mc
(
ebuf
+
1
8
*
wrap_y
+
16
,
ptr_cr
,
ptr_cb
=
ebuf
+
1
6
*
wrap_y
;
s
->
vdsp
.
emulated_edge_mc
(
ebuf
+
1
6
*
wrap_y
+
16
,
ptr_cr
,
wrap_c
,
wrap_c
,
mb_block_width
,
mb_block_height
,
mb_x
*
mb_block_width
,
mb_y
*
mb_block_height
,
cw
,
ch
);
ptr_cr
=
ebuf
+
1
8
*
wrap_y
+
16
;
ptr_cr
=
ebuf
+
1
6
*
wrap_y
+
16
;
}
if
(
s
->
mb_intra
)
{
...
...
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