diff options
author | Martin Storsjö <martin@martin.st> | 2012-04-06 22:40:41 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-04-07 00:02:19 +0300 |
commit | 14285275814fd80de4111d68105c8cb75cfe89c4 (patch) | |
tree | 5b1129abfa5c26436409e64ba943df609e69db61 | |
parent | 00c3b67b8ac6bfdc5a01535173dc537824a53d6e (diff) | |
download | ffmpeg-14285275814fd80de4111d68105c8cb75cfe89c4.tar.gz |
cosmetics: Clean up the tiffenc pix_fmts declaration to match the style of others
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/tiffenc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c index f50ee2530c..7504216f0a 100644 --- a/libavcodec/tiffenc.c +++ b/libavcodec/tiffenc.c @@ -473,12 +473,12 @@ AVCodec ff_tiff_encoder = { .priv_data_size = sizeof(TiffEncoderContext), .encode2 = encode_frame, .pix_fmts = (const enum PixelFormat[]) { - PIX_FMT_RGB24, PIX_FMT_PAL8, PIX_FMT_GRAY8, - PIX_FMT_MONOBLACK, PIX_FMT_MONOWHITE, - PIX_FMT_YUV420P, PIX_FMT_YUV422P, - PIX_FMT_YUV444P, PIX_FMT_YUV410P, - PIX_FMT_YUV411P, - PIX_FMT_NONE }, + PIX_FMT_RGB24, PIX_FMT_PAL8, PIX_FMT_GRAY8, + PIX_FMT_MONOBLACK, PIX_FMT_MONOWHITE, + PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, + PIX_FMT_YUV410P, PIX_FMT_YUV411P, + PIX_FMT_NONE + }, .long_name = NULL_IF_CONFIG_SMALL("TIFF image"), .priv_class = &tiffenc_class, }; |