[SCM] libav/experimental: codec_desc: K&R formatting cosmetics

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:02:09 UTC 2014


The following commit has been merged in the experimental branch:
commit 999d31d354f1f0616a09691913659ac0abdcc899
Author: Vittorio Giovara <vittorio.giovara at gmail.com>
Date:   Fri Mar 14 01:00:49 2014 +0100

    codec_desc: K&R formatting cosmetics

diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c
index 1270323..3578a09 100644
--- a/libavcodec/codec_desc.c
+++ b/libavcodec/codec_desc.c
@@ -1777,14 +1777,14 @@ static const AVCodecDescriptor codec_descriptors[] = {
         .id        = AV_CODEC_ID_DTS,
         .type      = AVMEDIA_TYPE_AUDIO,
         .name      = "dts",
-        .long_name  = NULL_IF_CONFIG_SMALL("DCA (DTS Coherent Acoustics)"),
+        .long_name = NULL_IF_CONFIG_SMALL("DCA (DTS Coherent Acoustics)"),
         .props     = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_LOSSLESS,
     },
     {
         .id        = AV_CODEC_ID_VORBIS,
         .type      = AVMEDIA_TYPE_AUDIO,
         .name      = "vorbis",
-        .long_name  = NULL_IF_CONFIG_SMALL("Vorbis"),
+        .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
         .props     = AV_CODEC_PROP_LOSSY,
     },
     {
@@ -2282,9 +2282,8 @@ const AVCodecDescriptor *avcodec_descriptor_get_by_name(const char *name)
 {
     const AVCodecDescriptor *desc = NULL;
 
-    while ((desc = avcodec_descriptor_next(desc))) {
+    while ((desc = avcodec_descriptor_next(desc)))
         if (!strcmp(desc->name, name))
             return desc;
-    }
     return NULL;
 }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list