changeset 6196:a2e2f11f6124 libavformat

Reindent Patch by Josh Allmann, joshua dot allmann at gmail
author mstorsjo
date Mon, 28 Jun 2010 20:37:16 +0000
parents 51ea3f882776
children d81e41261983
files rtpdec_amr.c
diffstat 1 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/rtpdec_amr.c	Mon Jun 28 20:35:21 2010 +0000
+++ b/rtpdec_amr.c	Mon Jun 28 20:37:16 2010 +0000
@@ -143,23 +143,23 @@
 static int amr_parse_fmtp(AVStream *stream, PayloadContext *data,
                           char *attr, char *value)
 {
-            /* Some AMR SDP configurations contain "octet-align", without
-             * the trailing =1. Therefore, if the value is empty,
-             * interpret it as "1".
-             */
-            if (!strcmp(value, "")) {
-                av_log(NULL, AV_LOG_WARNING, "AMR fmtp attribute %s had "
-                                             "nonstandard empty value\n", attr);
-                strcpy(value, "1");
-            }
-            if (!strcmp(attr, "octet-align"))
-                data->octet_align = atoi(value);
-            else if (!strcmp(attr, "crc"))
-                data->crc = atoi(value);
-            else if (!strcmp(attr, "interleaving"))
-                data->interleaving = atoi(value);
-            else if (!strcmp(attr, "channels"))
-                data->channels = atoi(value);
+    /* Some AMR SDP configurations contain "octet-align", without
+     * the trailing =1. Therefore, if the value is empty,
+     * interpret it as "1".
+     */
+    if (!strcmp(value, "")) {
+        av_log(NULL, AV_LOG_WARNING, "AMR fmtp attribute %s had "
+                                     "nonstandard empty value\n", attr);
+        strcpy(value, "1");
+    }
+    if (!strcmp(attr, "octet-align"))
+        data->octet_align = atoi(value);
+    else if (!strcmp(attr, "crc"))
+        data->crc = atoi(value);
+    else if (!strcmp(attr, "interleaving"))
+        data->interleaving = atoi(value);
+    else if (!strcmp(attr, "channels"))
+        data->channels = atoi(value);
     return 0;
 }