---
 libavcodec/xbmenc.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/libavcodec/xbmenc.c b/libavcodec/xbmenc.c
index 3650144..1afb6ee 100644
--- a/libavcodec/xbmenc.c
+++ b/libavcodec/xbmenc.c
@@ -58,11 +58,12 @@ static int xbm_encode_frame(AVCodecContext *avctx, AVPacket 
*pkt,
 }
 
 AVCodec ff_xbm_encoder = {
-    .name         = "xbm",
-    .long_name    = NULL_IF_CONFIG_SMALL("XBM (X BitMap) image"),
-    .type         = AVMEDIA_TYPE_VIDEO,
-    .id           = AV_CODEC_ID_XBM,
-    .encode2      = xbm_encode_frame,
-    .pix_fmts     = (const enum AVPixelFormat[]) { AV_PIX_FMT_MONOWHITE,
-                                                 AV_PIX_FMT_NONE },
+    .name      = "xbm",
+    .long_name = NULL_IF_CONFIG_SMALL("XBM (X BitMap) image"),
+    .type      = AVMEDIA_TYPE_VIDEO,
+    .id        = AV_CODEC_ID_XBM,
+    .encode2   = xbm_encode_frame,
+    .pix_fmts  = (const enum AVPixelFormat[]) {
+        AV_PIX_FMT_MONOWHITE, AV_PIX_FMT_NONE
+    },
 };
-- 
1.8.3.4 (Apple Git-47)

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to