[FFmpeg-cvslog] cosmetics: fix indentation/alignment in AVCodec declarations
Diego Biurrun
git at videolan.org
Thu Aug 4 02:05:24 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Aug 3 23:27:50 2011 +0200| [933a6fd5a1a2dfe3da58b6e15b394bf05d32f2eb] | committer: Diego Biurrun
cosmetics: fix indentation/alignment in AVCodec declarations
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=933a6fd5a1a2dfe3da58b6e15b394bf05d32f2eb
---
libavcodec/8bps.c | 2 +-
libavcodec/tscc.c | 2 +-
libavcodec/xsubdec.c | 10 +++++-----
libavcodec/xsubenc.c | 10 +++++-----
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c
index 7c53432..de8dd8e 100644
--- a/libavcodec/8bps.c
+++ b/libavcodec/8bps.c
@@ -229,5 +229,5 @@ AVCodec ff_eightbps_decoder = {
.close = decode_end,
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
- .long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
+ .long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
};
diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c
index b97c527..df4b09b 100644
--- a/libavcodec/tscc.c
+++ b/libavcodec/tscc.c
@@ -207,6 +207,6 @@ AVCodec ff_tscc_decoder = {
.close = decode_end,
.decode = decode_frame,
.capabilities = CODEC_CAP_DR1,
- .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
+ .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
};
diff --git a/libavcodec/xsubdec.c b/libavcodec/xsubdec.c
index 0791fdd..af87388 100644
--- a/libavcodec/xsubdec.c
+++ b/libavcodec/xsubdec.c
@@ -134,10 +134,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
}
AVCodec ff_xsub_decoder = {
- .name = "xsub",
- .type = AVMEDIA_TYPE_SUBTITLE,
- .id = CODEC_ID_XSUB,
- .init = decode_init,
- .decode = decode_frame,
+ .name = "xsub",
+ .type = AVMEDIA_TYPE_SUBTITLE,
+ .id = CODEC_ID_XSUB,
+ .init = decode_init,
+ .decode = decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("XSUB"),
};
diff --git a/libavcodec/xsubenc.c b/libavcodec/xsubenc.c
index 6e3fed0..b33640d 100644
--- a/libavcodec/xsubenc.c
+++ b/libavcodec/xsubenc.c
@@ -211,10 +211,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx)
}
AVCodec ff_xsub_encoder = {
- .name = "xsub",
- .type = AVMEDIA_TYPE_SUBTITLE,
- .id = CODEC_ID_XSUB,
- .init = xsub_encoder_init,
- .encode = xsub_encode,
+ .name = "xsub",
+ .type = AVMEDIA_TYPE_SUBTITLE,
+ .id = CODEC_ID_XSUB,
+ .init = xsub_encoder_init,
+ .encode = xsub_encode,
.long_name = NULL_IF_CONFIG_SMALL("DivX subtitles (XSUB)"),
};
More information about the ffmpeg-cvslog
mailing list