[FFmpeg-cvslog] ismindex: Factorize code for printing chunk duration lists
Martin Storsjö
git at videolan.org
Thu Mar 14 12:03:01 CET 2013
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Mar 13 12:29:43 2013 +0200| [7c147900b86c0f1cf030b7b844c670649c80c191] | committer: Martin Storsjö
ismindex: Factorize code for printing chunk duration lists
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7c147900b86c0f1cf030b7b844c670649c80c191
---
tools/ismindex.c | 41 +++++++++++++++++++----------------------
1 file changed, 19 insertions(+), 22 deletions(-)
diff --git a/tools/ismindex.c b/tools/ismindex.c
index 0a01c90..89b33e5 100644
--- a/tools/ismindex.c
+++ b/tools/ismindex.c
@@ -405,6 +405,23 @@ static void output_server_manifest(struct Tracks *tracks,
fclose(out);
}
+static void print_track_chunks(FILE *out, struct Tracks *tracks, int main,
+ const char *type)
+{
+ int i, j;
+ struct Track *track = tracks->tracks[main];
+ for (i = 0; i < track->chunks; i++) {
+ for (j = main + 1; j < tracks->nb_tracks; j++) {
+ if (tracks->tracks[j]->is_audio == track->is_audio &&
+ track->offsets[i].duration != tracks->tracks[j]->offsets[i].duration)
+ fprintf(stderr, "Mismatched duration of %s chunk %d in %s and %s\n",
+ type, i, track->name, tracks->tracks[j]->name);
+ }
+ fprintf(out, "\t\t<c n=\"%d\" d=\"%d\" />\n",
+ i, track->offsets[i].duration);
+ }
+}
+
static void output_client_manifest(struct Tracks *tracks,
const char *basename, int split)
{
@@ -450,17 +467,7 @@ static void output_client_manifest(struct Tracks *tracks,
fprintf(stderr, "Mismatched number of video chunks in %s and %s\n",
track->name, first_track->name);
}
- track = first_track;
- for (i = 0; i < track->chunks; i++) {
- for (j = tracks->video_track + 1; j < tracks->nb_tracks; j++) {
- if (tracks->tracks[j]->is_video &&
- track->offsets[i].duration != tracks->tracks[j]->offsets[i].duration)
- fprintf(stderr, "Mismatched duration of video chunk %d in %s and %s\n",
- i, track->name, tracks->tracks[j]->name);
- }
- fprintf(out, "\t\t<c n=\"%d\" d=\"%d\" />\n", i,
- track->offsets[i].duration);
- }
+ print_track_chunks(out, tracks, tracks->video_track, "video");
fprintf(out, "\t</StreamIndex>\n");
}
if (tracks->audio_track >= 0) {
@@ -491,17 +498,7 @@ static void output_client_manifest(struct Tracks *tracks,
fprintf(stderr, "Mismatched number of audio chunks in %s and %s\n",
track->name, first_track->name);
}
- track = first_track;
- for (i = 0; i < track->chunks; i++) {
- for (j = tracks->audio_track + 1; j < tracks->nb_tracks; j++) {
- if (tracks->tracks[j]->is_audio &&
- track->offsets[i].duration != tracks->tracks[j]->offsets[i].duration)
- fprintf(stderr, "Mismatched duration of audio chunk %d in %s and %s\n",
- i, track->name, tracks->tracks[j]->name);
- }
- fprintf(out, "\t\t<c n=\"%d\" d=\"%d\" />\n",
- i, track->offsets[i].duration);
- }
+ print_track_chunks(out, tracks, tracks->audio_track, "audio");
fprintf(out, "\t</StreamIndex>\n");
}
fprintf(out, "</SmoothStreamingMedia>\n");
More information about the ffmpeg-cvslog
mailing list