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
a20a37e6
Commit
a20a37e6
authored
Jan 24, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove useless field
Originally committed as revision 7682 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
69e7070d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
mov.c
libavformat/mov.c
+0
-2
No files found.
libavformat/mov.c
View file @
a20a37e6
...
@@ -271,7 +271,6 @@ typedef struct MOVContext {
...
@@ -271,7 +271,6 @@ typedef struct MOVContext {
int64_t
duration
;
/* duration of the longest track */
int64_t
duration
;
/* duration of the longest track */
int
found_moov
;
/* when both 'moov' and 'mdat' sections has been found */
int
found_moov
;
/* when both 'moov' and 'mdat' sections has been found */
int
found_mdat
;
/* we suppose we have enough data to read the file */
int
found_mdat
;
/* we suppose we have enough data to read the file */
int64_t
mdat_size
;
int64_t
mdat_offset
;
int64_t
mdat_offset
;
int
total_streams
;
int
total_streams
;
MOVStreamContext
*
streams
[
MAX_STREAMS
];
MOVStreamContext
*
streams
[
MAX_STREAMS
];
...
@@ -505,7 +504,6 @@ static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
...
@@ -505,7 +504,6 @@ static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
c
->
mdat_count
++
;
c
->
mdat_count
++
;
c
->
found_mdat
=
1
;
c
->
found_mdat
=
1
;
c
->
mdat_offset
=
atom
.
offset
;
c
->
mdat_offset
=
atom
.
offset
;
c
->
mdat_size
=
atom
.
size
;
if
(
c
->
found_moov
)
if
(
c
->
found_moov
)
return
1
;
/* found both, just go */
return
1
;
/* found both, just go */
url_fskip
(
pb
,
atom
.
size
);
url_fskip
(
pb
,
atom
.
size
);
...
...
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