diff mbox

[FFmpeg-devel] Correcting spelling mistakes

Message ID 1521111604-10202-1-git-send-email-raut.sanil@gmail.com
State Accepted
Commit 1dd7bb978436e9064e92411693252ad4ad183435
Headers show

Commit Message

sanilraut March 15, 2018, 11 a.m. UTC
Hi,
I found a few spelling mistakes in variable names. Following is the patch.

---
 libavformat/dashdec.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

Comments

Steven Liu March 15, 2018, 11:18 a.m. UTC | #1
2018-03-15 19:00 GMT+08:00 sanilraut <raut.sanil@gmail.com>:
> Hi,
> I found a few spelling mistakes in variable names. Following is the patch.
>
> ---
>  libavformat/dashdec.c | 18 +++++++++---------
>  1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
> index 2b396a0..7b79b93 100644
> --- a/libavformat/dashdec.c
> +++ b/libavformat/dashdec.c
> @@ -1106,8 +1106,8 @@ static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
>      xmlNodePtr adaptionset_node = NULL;
>      xmlAttrPtr attr = NULL;
>      char *val  = NULL;
> -    uint32_t perdiod_duration_sec = 0;
> -    uint32_t perdiod_start_sec = 0;
> +    uint32_t period_duration_sec = 0;
> +    uint32_t period_start_sec = 0;
>
>      if (!in) {
>          close_in = 1;
> @@ -1202,23 +1202,23 @@ static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
>          node = xmlFirstElementChild(node);
>          while (node) {
>              if (!av_strcasecmp(node->name, (const char *)"Period")) {
> -                perdiod_duration_sec = 0;
> -                perdiod_start_sec = 0;
> +                period_duration_sec = 0;
> +                period_start_sec = 0;
>                  attr = node->properties;
>                  while (attr) {
>                      val = xmlGetProp(node, attr->name);
>                      if (!av_strcasecmp(attr->name, (const char *)"duration")) {
> -                        perdiod_duration_sec = get_duration_insec(s, (const char *)val);
> +                        period_duration_sec = get_duration_insec(s, (const char *)val);
>                      } else if (!av_strcasecmp(attr->name, (const char *)"start")) {
> -                        perdiod_start_sec = get_duration_insec(s, (const char *)val);
> +                        period_start_sec = get_duration_insec(s, (const char *)val);
>                      }
>                      attr = attr->next;
>                      xmlFree(val);
>                  }
> -                if ((perdiod_duration_sec) >= (c->period_duration)) {
> +                if ((period_duration_sec) >= (c->period_duration)) {
>                      period_node = node;
> -                    c->period_duration = perdiod_duration_sec;
> -                    c->period_start = perdiod_start_sec;
> +                    c->period_duration = period_duration_sec;
> +                    c->period_start = period_start_sec;
>                      if (c->period_start > 0)
>                          c->media_presentation_duration = c->period_duration;
>                  }
> --
> Thanks
>
> 2.7.4
>
> _______________________________________________


ok
Lou Logan March 15, 2018, 8:40 p.m. UTC | #2
On Thu, Mar 15, 2018, at 3:00 AM, sanilraut wrote:
> Hi,
> I found a few spelling mistakes in variable names. Following is the patch.
> 
> ---
>  libavformat/dashdec.c | 18 +++++++++---------
>  1 file changed, 9 insertions(+), 9 deletions(-)

Pushed, thanks.
diff mbox

Patch

diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 2b396a0..7b79b93 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -1106,8 +1106,8 @@  static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
     xmlNodePtr adaptionset_node = NULL;
     xmlAttrPtr attr = NULL;
     char *val  = NULL;
-    uint32_t perdiod_duration_sec = 0;
-    uint32_t perdiod_start_sec = 0;
+    uint32_t period_duration_sec = 0;
+    uint32_t period_start_sec = 0;
 
     if (!in) {
         close_in = 1;
@@ -1202,23 +1202,23 @@  static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
         node = xmlFirstElementChild(node);
         while (node) {
             if (!av_strcasecmp(node->name, (const char *)"Period")) {
-                perdiod_duration_sec = 0;
-                perdiod_start_sec = 0;
+                period_duration_sec = 0;
+                period_start_sec = 0;
                 attr = node->properties;
                 while (attr) {
                     val = xmlGetProp(node, attr->name);
                     if (!av_strcasecmp(attr->name, (const char *)"duration")) {
-                        perdiod_duration_sec = get_duration_insec(s, (const char *)val);
+                        period_duration_sec = get_duration_insec(s, (const char *)val);
                     } else if (!av_strcasecmp(attr->name, (const char *)"start")) {
-                        perdiod_start_sec = get_duration_insec(s, (const char *)val);
+                        period_start_sec = get_duration_insec(s, (const char *)val);
                     }
                     attr = attr->next;
                     xmlFree(val);
                 }
-                if ((perdiod_duration_sec) >= (c->period_duration)) {
+                if ((period_duration_sec) >= (c->period_duration)) {
                     period_node = node;
-                    c->period_duration = perdiod_duration_sec;
-                    c->period_start = perdiod_start_sec;
+                    c->period_duration = period_duration_sec;
+                    c->period_start = period_start_sec;
                     if (c->period_start > 0)
                         c->media_presentation_duration = c->period_duration;
                 }