Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7c147900
Commit
7c147900
authored
Mar 13, 2013
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ismindex: Factorize code for printing chunk duration lists
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
f05e9beb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
22 deletions
+19
-22
ismindex.c
tools/ismindex.c
+19
-22
No files found.
tools/ismindex.c
View file @
7c147900
...
@@ -405,6 +405,23 @@ static void output_server_manifest(struct Tracks *tracks,
...
@@ -405,6 +405,23 @@ static void output_server_manifest(struct Tracks *tracks,
fclose
(
out
);
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
,
static
void
output_client_manifest
(
struct
Tracks
*
tracks
,
const
char
*
basename
,
int
split
)
const
char
*
basename
,
int
split
)
{
{
...
@@ -450,17 +467,7 @@ static void output_client_manifest(struct Tracks *tracks,
...
@@ -450,17 +467,7 @@ static void output_client_manifest(struct Tracks *tracks,
fprintf
(
stderr
,
"Mismatched number of video chunks in %s and %s
\n
"
,
fprintf
(
stderr
,
"Mismatched number of video chunks in %s and %s
\n
"
,
track
->
name
,
first_track
->
name
);
track
->
name
,
first_track
->
name
);
}
}
track
=
first_track
;
print_track_chunks
(
out
,
tracks
,
tracks
->
video_track
,
"video"
);
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
);
}
fprintf
(
out
,
"
\t
</StreamIndex>
\n
"
);
fprintf
(
out
,
"
\t
</StreamIndex>
\n
"
);
}
}
if
(
tracks
->
audio_track
>=
0
)
{
if
(
tracks
->
audio_track
>=
0
)
{
...
@@ -491,17 +498,7 @@ static void output_client_manifest(struct Tracks *tracks,
...
@@ -491,17 +498,7 @@ static void output_client_manifest(struct Tracks *tracks,
fprintf
(
stderr
,
"Mismatched number of audio chunks in %s and %s
\n
"
,
fprintf
(
stderr
,
"Mismatched number of audio chunks in %s and %s
\n
"
,
track
->
name
,
first_track
->
name
);
track
->
name
,
first_track
->
name
);
}
}
track
=
first_track
;
print_track_chunks
(
out
,
tracks
,
tracks
->
audio_track
,
"audio"
);
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
);
}
fprintf
(
out
,
"
\t
</StreamIndex>
\n
"
);
fprintf
(
out
,
"
\t
</StreamIndex>
\n
"
);
}
}
fprintf
(
out
,
"</SmoothStreamingMedia>
\n
"
);
fprintf
(
out
,
"</SmoothStreamingMedia>
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment