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
23f64200
Commit
23f64200
authored
Sep 14, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/oggdec: reindent and comment blocks.
parent
a218c5eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
oggdec.c
libavformat/oggdec.c
+9
-8
No files found.
libavformat/oggdec.c
View file @
23f64200
...
...
@@ -205,6 +205,7 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial)
struct
ogg_stream
*
os
;
size_t
size
;
/* Allocate and init a new Ogg Stream */
if
(
av_size_mult
(
ogg
->
nstreams
+
1
,
sizeof
(
*
ogg
->
streams
),
&
size
)
<
0
||
!
(
os
=
av_realloc
(
ogg
->
streams
,
size
)))
return
AVERROR
(
ENOMEM
);
...
...
@@ -218,14 +219,14 @@ static int ogg_new_stream(AVFormatContext *s, uint32_t serial)
if
(
!
os
->
buf
)
return
AVERROR
(
ENOMEM
);
st
=
avformat_new_stream
(
s
,
NULL
);
if
(
!
st
)
{
av_freep
(
&
os
->
buf
);
return
AVERROR
(
ENOMEM
);
}
st
->
id
=
idx
;
avpriv_set_pts_info
(
st
,
64
,
1
,
1000000
);
/* Create the associated AVStream */
st
=
avformat_new_stream
(
s
,
NULL
);
if
(
!
st
)
{
av_freep
(
&
os
->
buf
);
return
AVERROR
(
ENOMEM
);
}
st
->
id
=
idx
;
avpriv_set_pts_info
(
st
,
64
,
1
,
1000000
);
ogg
->
nstreams
++
;
return
idx
;
...
...
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