[FFmpeg-cvslog] proto: Realign struct initializers

Martin Storsjö git at videolan.org
Fri Dec 2 01:00:53 CET 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Dec  1 11:53:57 2011 +0200| [c3b05d2159e9c2d78c62ef79c2cfcb90d766556d] | committer: Martin Storsjö

proto: Realign struct initializers

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c3b05d2159e9c2d78c62ef79c2cfcb90d766556d
---

 libavformat/applehttpproto.c |   10 +++++-----
 libavformat/concat.c         |   10 +++++-----
 libavformat/gopher.c         |   10 +++++-----
 libavformat/mmsh.c           |    8 ++++----
 libavformat/mmst.c           |    8 ++++----
 libavformat/rtmpproto.c      |   10 +++++-----
 6 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/libavformat/applehttpproto.c b/libavformat/applehttpproto.c
index 245422b..2b15709 100644
--- a/libavformat/applehttpproto.c
+++ b/libavformat/applehttpproto.c
@@ -294,10 +294,10 @@ retry:
 }
 
 URLProtocol ff_applehttp_protocol = {
-    .name      = "applehttp",
-    .url_open  = applehttp_open,
-    .url_read  = applehttp_read,
-    .url_close = applehttp_close,
-    .flags     = URL_PROTOCOL_FLAG_NESTED_SCHEME,
+    .name           = "applehttp",
+    .url_open       = applehttp_open,
+    .url_read       = applehttp_read,
+    .url_close      = applehttp_close,
+    .flags          = URL_PROTOCOL_FLAG_NESTED_SCHEME,
     .priv_data_size = sizeof(AppleHTTPContext),
 };
diff --git a/libavformat/concat.c b/libavformat/concat.c
index 4bfa628..24c50c1 100644
--- a/libavformat/concat.c
+++ b/libavformat/concat.c
@@ -184,10 +184,10 @@ static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
 }
 
 URLProtocol ff_concat_protocol = {
-    .name      = "concat",
-    .url_open  = concat_open,
-    .url_read  = concat_read,
-    .url_seek  = concat_seek,
-    .url_close = concat_close,
+    .name           = "concat",
+    .url_open       = concat_open,
+    .url_read       = concat_read,
+    .url_seek       = concat_seek,
+    .url_close      = concat_close,
     .priv_data_size = sizeof(struct concat_data),
 };
diff --git a/libavformat/gopher.c b/libavformat/gopher.c
index 0543878..c033861 100644
--- a/libavformat/gopher.c
+++ b/libavformat/gopher.c
@@ -115,10 +115,10 @@ static int gopher_read(URLContext *h, uint8_t *buf, int size)
 
 
 URLProtocol ff_gopher_protocol = {
-    .name      = "gopher",
-    .url_open  = gopher_open,
-    .url_read  = gopher_read,
-    .url_write = gopher_write,
-    .url_close = gopher_close,
+    .name           = "gopher",
+    .url_open       = gopher_open,
+    .url_read       = gopher_read,
+    .url_write      = gopher_write,
+    .url_close      = gopher_close,
     .priv_data_size = sizeof(GopherContext),
 };
diff --git a/libavformat/mmsh.c b/libavformat/mmsh.c
index a1ae894..fa1a467 100644
--- a/libavformat/mmsh.c
+++ b/libavformat/mmsh.c
@@ -359,9 +359,9 @@ static int mmsh_read(URLContext *h, uint8_t *buf, int size)
 }
 
 URLProtocol ff_mmsh_protocol = {
-    .name      = "mmsh",
-    .url_open  = mmsh_open,
-    .url_read  = mmsh_read,
-    .url_close = mmsh_close,
+    .name           = "mmsh",
+    .url_open       = mmsh_open,
+    .url_read       = mmsh_read,
+    .url_close      = mmsh_close,
     .priv_data_size = sizeof(MMSHContext),
 };
diff --git a/libavformat/mmst.c b/libavformat/mmst.c
index 9d7fd74..753b05c 100644
--- a/libavformat/mmst.c
+++ b/libavformat/mmst.c
@@ -620,9 +620,9 @@ static int mms_read(URLContext *h, uint8_t *buf, int size)
 }
 
 URLProtocol ff_mmst_protocol = {
-    .name      = "mmst",
-    .url_open  = mms_open,
-    .url_read  = mms_read,
-    .url_close = mms_close,
+    .name           = "mmst",
+    .url_open       = mms_open,
+    .url_read       = mms_read,
+    .url_close      = mms_close,
     .priv_data_size = sizeof(MMSTContext),
 };
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index f477338..54213b1 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -992,10 +992,10 @@ static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
 }
 
 URLProtocol ff_rtmp_protocol = {
-    .name      = "rtmp",
-    .url_open  = rtmp_open,
-    .url_read  = rtmp_read,
-    .url_write = rtmp_write,
-    .url_close = rtmp_close,
+    .name           = "rtmp",
+    .url_open       = rtmp_open,
+    .url_read       = rtmp_read,
+    .url_write      = rtmp_write,
+    .url_close      = rtmp_close,
     .priv_data_size = sizeof(RTMPContext),
 };



More information about the ffmpeg-cvslog mailing list