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
33d412eb
Commit
33d412eb
authored
Mar 02, 2015
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashenc: Simplify code by using a local variable
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
91eee2af
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dashenc.c
libavformat/dashenc.c
+2
-2
No files found.
libavformat/dashenc.c
View file @
33d412eb
...
...
@@ -498,7 +498,7 @@ static int write_manifest(AVFormatContext *s, int final)
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
AVStream
*
st
=
s
->
streams
[
i
];
OutputStream
*
os
=
&
c
->
streams
[
i
];
if
(
s
->
streams
[
i
]
->
codec
->
codec_type
!=
AVMEDIA_TYPE_VIDEO
)
if
(
s
t
->
codec
->
codec_type
!=
AVMEDIA_TYPE_VIDEO
)
continue
;
avio_printf
(
out
,
"
\t\t\t
<Representation id=
\"
%d
\"
mimeType=
\"
video/mp4
\"
codecs=
\"
%s
\"
%s width=
\"
%d
\"
height=
\"
%d
\"
>
\n
"
,
i
,
os
->
codec_str
,
os
->
bandwidth_str
,
st
->
codec
->
width
,
st
->
codec
->
height
);
output_segment_list
(
&
c
->
streams
[
i
],
out
,
c
);
...
...
@@ -511,7 +511,7 @@ static int write_manifest(AVFormatContext *s, int final)
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
AVStream
*
st
=
s
->
streams
[
i
];
OutputStream
*
os
=
&
c
->
streams
[
i
];
if
(
s
->
streams
[
i
]
->
codec
->
codec_type
!=
AVMEDIA_TYPE_AUDIO
)
if
(
s
t
->
codec
->
codec_type
!=
AVMEDIA_TYPE_AUDIO
)
continue
;
avio_printf
(
out
,
"
\t\t\t
<Representation id=
\"
%d
\"
mimeType=
\"
audio/mp4
\"
codecs=
\"
%s
\"
%s audioSamplingRate=
\"
%d
\"
>
\n
"
,
i
,
os
->
codec_str
,
os
->
bandwidth_str
,
st
->
codec
->
sample_rate
);
avio_printf
(
out
,
"
\t\t\t\t
<AudioChannelConfiguration schemeIdUri=
\"
urn:mpeg:dash:23003:3:audio_channel_configuration:2011
\"
value=
\"
%d
\"
/>
\n
"
,
st
->
codec
->
channels
);
...
...
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