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
4f03a77e
Commit
4f03a77e
authored
May 04, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oma: refactor seek function
Properly propagate seek errors from avio and the generic pcm seek.
parent
3ca1dd25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
15 deletions
+17
-15
omadec.c
libavformat/omadec.c
+17
-15
No files found.
libavformat/omadec.c
View file @
4f03a77e
...
...
@@ -444,24 +444,26 @@ static int oma_read_seek(struct AVFormatContext *s,
int
stream_index
,
int64_t
timestamp
,
int
flags
)
{
OMAContext
*
oc
=
s
->
priv_data
;
ff_pcm_read_seek
(
s
,
stream_index
,
timestamp
,
flags
);
if
(
oc
->
encrypted
)
{
/* readjust IV for CBC */
int64_t
pos
=
avio_tell
(
s
->
pb
);
if
(
pos
<
oc
->
content_start
)
memset
(
oc
->
iv
,
0
,
8
);
else
{
if
(
avio_seek
(
s
->
pb
,
-
8
,
SEEK_CUR
)
<
0
||
avio_read
(
s
->
pb
,
oc
->
iv
,
8
)
<
8
)
{
memset
(
oc
->
iv
,
0
,
8
);
return
-
1
;
}
}
int
err
=
ff_pcm_read_seek
(
s
,
stream_index
,
timestamp
,
flags
);
if
(
!
oc
->
encrypted
)
return
err
;
/* readjust IV for CBC */
if
(
err
||
avio_tell
(
s
->
pb
)
<
oc
->
content_start
)
goto
wipe
;
if
((
err
=
avio_seek
(
s
->
pb
,
-
8
,
SEEK_CUR
))
<
0
)
goto
wipe
;
if
((
err
=
avio_read
(
s
->
pb
,
oc
->
iv
,
8
))
<
8
)
{
if
(
err
>=
0
)
err
=
AVERROR_EOF
;
goto
wipe
;
}
return
0
;
wipe:
memset
(
oc
->
iv
,
0
,
8
);
return
err
;
}
AVInputFormat
ff_oma_demuxer
=
{
...
...
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