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
a5f23d8d
Commit
a5f23d8d
authored
Jun 30, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegts: factor seek_back() out
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b7c66852
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
mpegts.c
libavformat/mpegts.c
+10
-5
No files found.
libavformat/mpegts.c
View file @
a5f23d8d
...
@@ -1986,6 +1986,15 @@ static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
...
@@ -1986,6 +1986,15 @@ static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
return
0
;
return
0
;
}
}
static
void
seek_back
(
AVFormatContext
*
s
,
AVIOContext
*
pb
,
int64_t
pos
)
{
/* NOTE: We attempt to seek on non-seekable files as well, as the
* probe buffer usually is big enough. Only warn if the seek failed
* on files where the seek should work. */
if
(
avio_seek
(
pb
,
pos
,
SEEK_SET
)
<
0
)
av_log
(
s
,
pb
->
seekable
?
AV_LOG_ERROR
:
AV_LOG_INFO
,
"Unable to seek back to the start
\n
"
);
}
static
int
mpegts_read_header
(
AVFormatContext
*
s
)
static
int
mpegts_read_header
(
AVFormatContext
*
s
)
{
{
MpegTSContext
*
ts
=
s
->
priv_data
;
MpegTSContext
*
ts
=
s
->
priv_data
;
...
@@ -2009,11 +2018,7 @@ static int mpegts_read_header(AVFormatContext *s)
...
@@ -2009,11 +2018,7 @@ static int mpegts_read_header(AVFormatContext *s)
/* normal demux */
/* normal demux */
/* first do a scan to get all the services */
/* first do a scan to get all the services */
/* NOTE: We attempt to seek on non-seekable files as well, as the
seek_back
(
s
,
pb
,
pos
);
* probe buffer usually is big enough. Only warn if the seek failed
* on files where the seek should work. */
if
(
avio_seek
(
pb
,
pos
,
SEEK_SET
)
<
0
)
av_log
(
s
,
pb
->
seekable
?
AV_LOG_ERROR
:
AV_LOG_INFO
,
"Unable to seek back to the start
\n
"
);
mpegts_open_section_filter
(
ts
,
SDT_PID
,
sdt_cb
,
ts
,
1
);
mpegts_open_section_filter
(
ts
,
SDT_PID
,
sdt_cb
,
ts
,
1
);
...
...
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