OSDN Git Service

sidxindex: Write mimeType=audio/mp4 for audio-only representations
authorMartin Storsjö <martin@martin.st>
Sun, 23 Nov 2014 15:30:35 +0000 (17:30 +0200)
committerMartin Storsjö <martin@martin.st>
Mon, 24 Nov 2014 07:23:14 +0000 (09:23 +0200)
This fixes playback with dash.js, when the input is one separate
mp4 file per track.

Signed-off-by: Martin Storsjö <martin@martin.st>
tools/sidxindex.c

index da41d09..62f021f 100644 (file)
@@ -327,7 +327,7 @@ static int output_mpd(struct Tracks *tracks, const char *filename)
         for (i = 0; i < nb_tracks[set]; ) {
             struct Track *first_track = adaptation_sets[set][i];
             int width = 0, height = 0, sample_rate = 0, channels = 0, bitrate = 0;
-            fprintf(out, "\t\t\t<Representation id=\"%d\" mimeType=\"video/mp4\" codecs=\"", i);
+            fprintf(out, "\t\t\t<Representation id=\"%d\" codecs=\"", i);
             for (j = i; j < nb_tracks[set]; j++) {
                 struct Track *track = adaptation_sets[set][j];
                 if (strcmp(track->name, first_track->name))
@@ -345,7 +345,8 @@ static int output_mpd(struct Tracks *tracks, const char *filename)
                     fprintf(out, ",");
                 fprintf(out, "%s", track->codec_str);
             }
-            fprintf(out, "\" bandwidth=\"%d\"", bitrate);
+            fprintf(out, "\" mimeType=\"%s/mp4\" bandwidth=\"%d\"",
+                    width ? "video" : "audio", bitrate);
             if (width > 0 && height > 0)
                 fprintf(out, " width=\"%d\" height=\"%d\"", width, height);
             if (sample_rate > 0)