You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cosmetics: fix indentation/alignment in AVCodec declarations
This commit is contained in:
@@ -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"),
|
||||||
};
|
};
|
||||||
|
@@ -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"),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -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"),
|
||||||
};
|
};
|
||||||
|
@@ -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)"),
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user