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
e0977c80
Commit
e0977c80
authored
Apr 19, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indention
Originally committed as revision 5301 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5c72cad8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
mov.c
libavformat/mov.c
+13
-13
No files found.
libavformat/mov.c
View file @
e0977c80
...
...
@@ -1498,19 +1498,19 @@ static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
/* edit list atom */
static
int
mov_read_elst
(
MOVContext
*
c
,
ByteIOContext
*
pb
,
MOV_atom_t
atom
)
{
int
i
,
edit_count
;
get_byte
(
pb
);
/* version */
get_byte
(
pb
);
get_byte
(
pb
);
get_byte
(
pb
);
/* flags */
edit_count
=
c
->
streams
[
c
->
fc
->
nb_streams
-
1
]
->
edit_count
=
get_be32
(
pb
);
/* entries */
for
(
i
=
0
;
i
<
edit_count
;
i
++
){
get_be32
(
pb
);
/* Track duration */
get_be32
(
pb
);
/* Media time */
get_be32
(
pb
);
/* Media rate */
}
dprintf
(
"track[%i].edit_count = %i
\n
"
,
c
->
fc
->
nb_streams
-
1
,
c
->
streams
[
c
->
fc
->
nb_streams
-
1
]
->
edit_count
);
return
0
;
int
i
,
edit_count
;
get_byte
(
pb
);
/* version */
get_byte
(
pb
);
get_byte
(
pb
);
get_byte
(
pb
);
/* flags */
edit_count
=
c
->
streams
[
c
->
fc
->
nb_streams
-
1
]
->
edit_count
=
get_be32
(
pb
);
/* entries */
for
(
i
=
0
;
i
<
edit_count
;
i
++
){
get_be32
(
pb
);
/* Track duration */
get_be32
(
pb
);
/* Media time */
get_be32
(
pb
);
/* Media rate */
}
dprintf
(
"track[%i].edit_count = %i
\n
"
,
c
->
fc
->
nb_streams
-
1
,
c
->
streams
[
c
->
fc
->
nb_streams
-
1
]
->
edit_count
);
return
0
;
}
static
const
MOVParseTableEntry
mov_default_parse_table
[]
=
{
...
...
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