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
f8f0a0bd
Commit
f8f0a0bd
authored
Jan 29, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix seeking in wma
Originally committed as revision 7759 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b024824b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
asf.c
libavformat/asf.c
+2
-1
No files found.
libavformat/asf.c
View file @
f8f0a0bd
...
...
@@ -673,7 +673,8 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
asf
->
packet_multi_size
-=
asf
->
packet_obj_size
;
//printf("COMPRESS size %d %d %d ms:%d\n", asf->packet_obj_size, asf->packet_frag_timestamp, asf->packet_size_left, asf->packet_multi_size);
}
if
(
asf_st
->
pkt
.
size
!=
asf
->
packet_obj_size
)
{
//FIXME is this condition sufficient?
if
(
asf_st
->
pkt
.
size
!=
asf
->
packet_obj_size
||
asf_st
->
frag_offset
+
asf
->
packet_frag_size
>
asf_st
->
pkt
.
size
)
{
//FIXME is this condition sufficient?
if
(
asf_st
->
pkt
.
data
){
av_log
(
s
,
AV_LOG_INFO
,
"freeing incomplete packet size %d, new %d
\n
"
,
asf_st
->
pkt
.
size
,
asf
->
packet_obj_size
);
asf_st
->
frag_offset
=
0
;
...
...
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