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
933a6fd5
Commit
933a6fd5
authored
Aug 03, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: fix indentation/alignment in AVCodec declarations
parent
9a83adaf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
8bps.c
libavcodec/8bps.c
+1
-1
tscc.c
libavcodec/tscc.c
+1
-1
xsubdec.c
libavcodec/xsubdec.c
+5
-5
xsubenc.c
libavcodec/xsubenc.c
+5
-5
No files found.
libavcodec/8bps.c
View file @
933a6fd5
...
@@ -229,5 +229,5 @@ AVCodec ff_eightbps_decoder = {
...
@@ -229,5 +229,5 @@ AVCodec ff_eightbps_decoder = {
.
close
=
decode_end
,
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
decode
=
decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
capabilities
=
CODEC_CAP_DR1
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"QuickTime 8BPS video"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"QuickTime 8BPS video"
),
};
};
libavcodec/tscc.c
View file @
933a6fd5
...
@@ -207,6 +207,6 @@ AVCodec ff_tscc_decoder = {
...
@@ -207,6 +207,6 @@ AVCodec ff_tscc_decoder = {
.
close
=
decode_end
,
.
close
=
decode_end
,
.
decode
=
decode_frame
,
.
decode
=
decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
capabilities
=
CODEC_CAP_DR1
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TechSmith Screen Capture Codec"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"TechSmith Screen Capture Codec"
),
};
};
libavcodec/xsubdec.c
View file @
933a6fd5
...
@@ -134,10 +134,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
...
@@ -134,10 +134,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
}
}
AVCodec
ff_xsub_decoder
=
{
AVCodec
ff_xsub_decoder
=
{
.
name
=
"xsub"
,
.
name
=
"xsub"
,
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
id
=
CODEC_ID_XSUB
,
.
id
=
CODEC_ID_XSUB
,
.
init
=
decode_init
,
.
init
=
decode_init
,
.
decode
=
decode_frame
,
.
decode
=
decode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"XSUB"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"XSUB"
),
};
};
libavcodec/xsubenc.c
View file @
933a6fd5
...
@@ -211,10 +211,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx)
...
@@ -211,10 +211,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx)
}
}
AVCodec
ff_xsub_encoder
=
{
AVCodec
ff_xsub_encoder
=
{
.
name
=
"xsub"
,
.
name
=
"xsub"
,
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
type
=
AVMEDIA_TYPE_SUBTITLE
,
.
id
=
CODEC_ID_XSUB
,
.
id
=
CODEC_ID_XSUB
,
.
init
=
xsub_encoder_init
,
.
init
=
xsub_encoder_init
,
.
encode
=
xsub_encode
,
.
encode
=
xsub_encode
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DivX subtitles (XSUB)"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"DivX subtitles (XSUB)"
),
};
};
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