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
674eeb5f
Commit
674eeb5f
authored
Jul 10, 2007
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: indentation
Originally committed as revision 9582 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
eb75a698
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
20 deletions
+22
-20
dsputil.c
libavcodec/dsputil.c
+2
-2
dsputil_mmx.c
libavcodec/i386/dsputil_mmx.c
+2
-2
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+18
-16
No files found.
libavcodec/dsputil.c
View file @
674eeb5f
libavcodec/i386/dsputil_mmx.c
View file @
674eeb5f
libavcodec/mpegvideo_enc.c
View file @
674eeb5f
...
...
@@ -1701,7 +1701,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
break
;
case
CODEC_ID_MPEG4
:
if
(
ENABLE_MPEG4_ENCODER
)
mpeg4_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
mpeg4_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
case
CODEC_ID_MSMPEG4V2
:
case
CODEC_ID_MSMPEG4V3
:
case
CODEC_ID_WMV1
:
...
...
@@ -1723,7 +1724,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
case
CODEC_ID_RV20
:
if
(
ENABLE_H263_ENCODER
||
ENABLE_H263P_ENCODER
||
ENABLE_FLV_ENCODER
||
ENABLE_RV10_ENCODER
||
ENABLE_RV20_ENCODER
)
h263_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
h263_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
case
CODEC_ID_MJPEG
:
if
(
ENABLE_MJPEG_ENCODER
)
ff_mjpeg_encode_mb
(
s
,
s
->
block
);
...
...
@@ -2482,7 +2484,7 @@ static int encode_thread(AVCodecContext *c, void *arg){
break
;
case
CANDIDATE_MB_TYPE_DIRECT
:
if
(
ENABLE_MPEG4_ENCODER
)
{
s
->
mv_dir
=
MV_DIR_FORWARD
|
MV_DIR_BACKWARD
|
MV_DIRECT
;
s
->
mv_dir
=
MV_DIR_FORWARD
|
MV_DIR_BACKWARD
|
MV_DIRECT
;
s
->
mb_intra
=
0
;
motion_x
=
s
->
b_direct_mv_table
[
xy
][
0
];
motion_y
=
s
->
b_direct_mv_table
[
xy
][
1
];
...
...
@@ -2491,7 +2493,7 @@ static int encode_thread(AVCodecContext *c, void *arg){
break
;
case
CANDIDATE_MB_TYPE_DIRECT0
:
if
(
ENABLE_MPEG4_ENCODER
)
{
s
->
mv_dir
=
MV_DIR_FORWARD
|
MV_DIR_BACKWARD
|
MV_DIRECT
;
s
->
mv_dir
=
MV_DIR_FORWARD
|
MV_DIR_BACKWARD
|
MV_DIRECT
;
s
->
mb_intra
=
0
;
ff_mpeg4_set_direct_mv
(
s
,
0
,
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