]> git.sesse.net Git - ffmpeg/commitdiff
avformat/dashenc: fix typo in ProducerReferenceTime elements
authorJames Almer <jamrial@gmail.com>
Wed, 15 Apr 2020 20:08:13 +0000 (17:08 -0300)
committerJames Almer <jamrial@gmail.com>
Wed, 15 Apr 2020 20:09:34 +0000 (17:09 -0300)
Signed-off-by: James Almer <jamrial@gmail.com>
libavformat/dashenc.c

index d1fe90b00c22f2a22d559e7be67a46952ac9ed1a..5a8cff403454bb4fba0a7ae9c793b7e050c83344 100644 (file)
@@ -864,7 +864,7 @@ static int write_adaptation_set(AVFormatContext *s, AVIOContext *out, int as_ind
                 s->streams[i]->codecpar->channels);
         }
         if (!final && c->write_prft && os->producer_reference_time_str[0]) {
-            avio_printf(out, "\t\t\t\t<ProducerReferenceTime id=\"%d\" inband=\"true\" type=\"%s\" wallclockTime=\"%s\" presentationTime=\"%"PRId64"\">\n",
+            avio_printf(out, "\t\t\t\t<ProducerReferenceTime id=\"%d\" inband=\"true\" type=\"%s\" wallClockTime=\"%s\" presentationTime=\"%"PRId64"\">\n",
                         i, os->producer_reference_time.flags ? "captured" : "encoder", os->producer_reference_time_str, c->presentation_time_offset);
             avio_printf(out, "\t\t\t\t\t<UTCTiming schemeIdUri=\"urn:mpeg:dash:utc:http-xsdate:2014\" value=\"%s\"/>\n", c->utc_timing_url);
             avio_printf(out, "\t\t\t\t</ProducerReferenceTime>\n");