Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
56be950a
Commit
56be950a
authored
Jul 05, 2007
by
Aurelien Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: indentation
Originally committed as revision 9478 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a6bc5731
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+5
-4
No files found.
libavcodec/mpegvideo_enc.c
View file @
56be950a
...
...
@@ -1687,7 +1687,8 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s, int motion_x,
case
CODEC_ID_MPEG1VIDEO
:
case
CODEC_ID_MPEG2VIDEO
:
if
(
ENABLE_MPEG1VIDEO_ENCODER
||
ENABLE_MPEG2VIDEO_ENCODER
)
mpeg1_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
mpeg1_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
case
CODEC_ID_MPEG4
:
mpeg4_encode_mb
(
s
,
s
->
block
,
motion_x
,
motion_y
);
break
;
case
CODEC_ID_MSMPEG4V2
:
...
...
@@ -2149,8 +2150,8 @@ static int encode_thread(AVCodecContext *c, void *arg){
case
CODEC_ID_MPEG1VIDEO
:
case
CODEC_ID_MPEG2VIDEO
:
if
(
ENABLE_MPEG1VIDEO_ENCODER
||
ENABLE_MPEG2VIDEO_ENCODER
)
{
ff_mpeg1_encode_slice_header
(
s
);
ff_mpeg1_clean_buffers
(
s
);
ff_mpeg1_encode_slice_header
(
s
);
ff_mpeg1_clean_buffers
(
s
);
}
break
;
case
CODEC_ID_H263
:
...
...
@@ -2878,7 +2879,7 @@ static int encode_picture(MpegEncContext *s, int picture_number)
break
;
case
FMT_MPEG1
:
if
(
ENABLE_MPEG1VIDEO_ENCODER
||
ENABLE_MPEG2VIDEO_ENCODER
)
mpeg1_encode_picture_header
(
s
,
picture_number
);
mpeg1_encode_picture_header
(
s
,
picture_number
);
break
;
case
FMT_H264
:
break
;
...
...
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