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
32d88592
Commit
32d88592
authored
Mar 14, 2009
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add avformat_seek_file()
Originally committed as revision 17956 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c73d3996
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
utils.c
libavformat/utils.c
+22
-0
No files found.
libavformat/utils.c
View file @
32d88592
...
@@ -1584,6 +1584,28 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int f
...
@@ -1584,6 +1584,28 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, int f
return
av_seek_frame_generic
(
s
,
stream_index
,
timestamp
,
flags
);
return
av_seek_frame_generic
(
s
,
stream_index
,
timestamp
,
flags
);
}
}
int
avformat_seek_file
(
AVFormatContext
*
s
,
int
stream_index
,
int64_t
min_ts
,
int64_t
ts
,
int64_t
max_ts
,
int
flags
)
{
if
(
min_ts
>
ts
||
max_ts
<
ts
)
return
-
1
;
av_read_frame_flush
(
s
);
if
(
s
->
iformat
->
read_seek2
)
return
s
->
iformat
->
read_seek2
(
s
,
stream_index
,
min_ts
,
ts
,
max_ts
,
flags
);
if
(
s
->
iformat
->
read_timestamp
){
//try to seek via read_timestamp()
}
//Fallback to old API if new is not implemented but old is
//Note the old has somewat different sematics
if
(
s
->
iformat
->
read_seek
||
1
)
return
av_seek_frame
(
s
,
stream_index
,
ts
,
ts
-
min_ts
>
(
uint64_t
)(
max_ts
-
ts
)
?
AVSEEK_FLAG_BACKWARD
:
0
);
// try some generic seek like av_seek_frame_generic() but with new ts semantics
}
/*******************************************************/
/*******************************************************/
/**
/**
...
...
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