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
b565ea09
Commit
b565ea09
authored
May 11, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix spliting chunks, simplify
Originally committed as revision 5363 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
baa3a937
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
41 deletions
+25
-41
mov.c
libavformat/mov.c
+25
-41
No files found.
libavformat/mov.c
View file @
b565ea09
...
...
@@ -66,10 +66,6 @@
/* Allows seeking */
#define MOV_SEEK
/* Special handling for movies created with Minolta Dimaxe Xi*/
/* this fix should not interfere with other .mov files, but just in case*/
#define MOV_MINOLTA_FIX
/* some streams in QT (and in MP4 mostly) aren't either video nor audio */
/* so we first list them as this, then clean up the list of streams we give back, */
/* getting rid of these */
...
...
@@ -1817,37 +1813,6 @@ again:
goto
again
;
}
/* now get the chunk size... */
for
(
i
=
0
;
i
<
mov
->
total_streams
;
i
++
)
{
MOVStreamContext
*
msc
=
mov
->
streams
[
i
];
if
((
msc
->
next_chunk
<
msc
->
chunk_count
)
&&
msc
->
chunk_offsets
[
msc
->
next_chunk
]
-
offset
<
size
&&
msc
->
chunk_offsets
[
msc
->
next_chunk
]
>
offset
)
size
=
msc
->
chunk_offsets
[
msc
->
next_chunk
]
-
offset
;
}
#ifdef MOV_MINOLTA_FIX
//Make sure that size is according to sample_size (Needed by .mov files
//created on a Minolta Dimage Xi where audio chunks contains waste data in the end)
//Maybe we should really not only check sc->sample_size, but also sc->sample_sizes
//but I have no such movies
if
(
sc
->
sample_size
>
0
)
{
int
foundsize
=
0
;
for
(
i
=
0
;
i
<
(
sc
->
sample_to_chunk_sz
);
i
++
)
{
if
(
(
sc
->
sample_to_chunk
[
i
].
first
)
<=
(
sc
->
next_chunk
)
)
{
foundsize
=
sc
->
sample_to_chunk
[
i
].
count
*
sc
->
sample_size
;
}
dprintf
(
"sample_to_chunk first=%ld count=%ld, id=%ld
\n
"
,
sc
->
sample_to_chunk
[
i
].
first
,
sc
->
sample_to_chunk
[
i
].
count
,
sc
->
sample_to_chunk
[
i
].
id
);
}
if
(
(
foundsize
>
0
)
&&
(
foundsize
<
size
)
)
{
size
=
foundsize
;
}
}
#endif //MOV_MINOLTA_FIX
idx
=
sc
->
sample_to_chunk_index
;
if
(
idx
+
1
<
sc
->
sample_to_chunk_sz
&&
sc
->
next_chunk
>=
sc
->
sample_to_chunk
[
idx
+
1
].
first
)
idx
++
;
...
...
@@ -1858,14 +1823,33 @@ again:
mov
->
partial
=
sc
;
/* we'll have to get those samples before next chunk */
sc
->
left_in_chunk
=
sc
->
sample_to_chunk
[
idx
].
count
-
1
;
size
=
(
sc
->
sample_size
>
1
)
?
sc
->
sample_size
:
sc
->
sample_sizes
[
sc
->
current_sample
];
}
size
=
(
sc
->
sample_size
>
1
)
?
sc
->
sample_size
:
sc
->
sample_sizes
[
sc
->
current_sample
];
next_sample
=
sc
->
current_sample
+
1
;
}
else
if
(
idx
<
sc
->
sample_to_chunk_sz
){
next_sample
=
sc
->
current_sample
+
sc
->
sample_to_chunk
[
idx
].
count
;
}
else
next_sample
=
sc
->
current_sample
;
}
else
{
int
adjusted
=
0
;
/* get the chunk size... */
for
(
i
=
0
;
i
<
mov
->
total_streams
;
i
++
)
{
MOVStreamContext
*
msc
=
mov
->
streams
[
i
];
if
((
msc
->
next_chunk
<
msc
->
chunk_count
)
&&
msc
->
chunk_offsets
[
msc
->
next_chunk
]
-
offset
<
size
&&
msc
->
chunk_offsets
[
msc
->
next_chunk
]
>
offset
)
size
=
msc
->
chunk_offsets
[
msc
->
next_chunk
]
-
offset
;
}
//Make sure that size is according to sample_size (Needed by .mov files
//created on a Minolta Dimage Xi where audio chunks contains waste data in the end)
//needed for 'raw '
//sample_size is already adjusted in read_stsz
adjusted
=
sc
->
sample_to_chunk
[
idx
].
count
*
sc
->
sample_size
;
if
(
adjusted
<
size
)
{
dprintf
(
"adjusted %d, size %d, sample count %ld
\n
"
,
adjusted
,
size
,
sc
->
sample_to_chunk
[
idx
].
count
);
size
=
adjusted
;
}
if
(
idx
<
sc
->
sample_to_chunk_sz
){
next_sample
=
sc
->
current_sample
+
sc
->
sample_to_chunk
[
idx
].
count
;
}
else
next_sample
=
sc
->
current_sample
;
}
readchunk:
dprintf
(
"chunk: %"
PRId64
" -> %"
PRId64
" (%i)
\n
"
,
offset
,
offset
+
size
,
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