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
9d77a8fa
Commit
9d77a8fa
authored
Nov 06, 2011
by
Martin Storsjö
Committed by
Anton Khirnov
Nov 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: Use avio_open2, pass the AVFormatContext interrupt_callback onwards
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
1dee0aca
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
8 deletions
+14
-8
applehttp.c
libavformat/applehttp.c
+2
-1
applehttpproto.c
libavformat/applehttpproto.c
+2
-1
img2.c
libavformat/img2.c
+4
-2
mov.c
libavformat/mov.c
+4
-3
utils.c
libavformat/utils.c
+2
-1
No files found.
libavformat/applehttp.c
View file @
9d77a8fa
...
...
@@ -210,7 +210,8 @@ static int parse_playlist(AppleHTTPContext *c, const char *url,
if
(
!
in
)
{
close_in
=
1
;
if
((
ret
=
avio_open
(
&
in
,
url
,
AVIO_FLAG_READ
))
<
0
)
if
((
ret
=
avio_open2
(
&
in
,
url
,
AVIO_FLAG_READ
,
c
->
interrupt_callback
,
NULL
))
<
0
)
return
ret
;
}
...
...
libavformat/applehttpproto.c
View file @
9d77a8fa
...
...
@@ -114,7 +114,8 @@ static int parse_playlist(URLContext *h, const char *url)
char
line
[
1024
];
const
char
*
ptr
;
if
((
ret
=
avio_open
(
&
in
,
url
,
AVIO_FLAG_READ
))
<
0
)
if
((
ret
=
avio_open2
(
&
in
,
url
,
AVIO_FLAG_READ
,
&
h
->
interrupt_callback
,
NULL
))
<
0
)
return
ret
;
read_chomp_line
(
in
,
line
,
sizeof
(
line
));
...
...
libavformat/img2.c
View file @
9d77a8fa
...
...
@@ -304,7 +304,8 @@ static int read_packet(AVFormatContext *s1, AVPacket *pkt)
s
->
path
,
s
->
img_number
)
<
0
&&
s
->
img_number
>
1
)
return
AVERROR
(
EIO
);
for
(
i
=
0
;
i
<
3
;
i
++
){
if
(
avio_open
(
&
f
[
i
],
filename
,
AVIO_FLAG_READ
)
<
0
)
{
if
(
avio_open2
(
&
f
[
i
],
filename
,
AVIO_FLAG_READ
,
&
s1
->
interrupt_callback
,
NULL
)
<
0
)
{
if
(
i
==
1
)
break
;
av_log
(
s1
,
AV_LOG_ERROR
,
"Could not open file : %s
\n
"
,
filename
);
...
...
@@ -388,7 +389,8 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
return
AVERROR
(
EIO
);
}
for
(
i
=
0
;
i
<
3
;
i
++
){
if
(
avio_open
(
&
pb
[
i
],
filename
,
AVIO_FLAG_WRITE
)
<
0
)
{
if
(
avio_open2
(
&
pb
[
i
],
filename
,
AVIO_FLAG_WRITE
,
&
s
->
interrupt_callback
,
NULL
)
<
0
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Could not open file : %s
\n
"
,
filename
);
return
AVERROR
(
EIO
);
}
...
...
libavformat/mov.c
View file @
9d77a8fa
...
...
@@ -1770,7 +1770,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
}
}
static
int
mov_open_dref
(
AVIOContext
**
pb
,
char
*
src
,
MOVDref
*
ref
)
static
int
mov_open_dref
(
AVIOContext
**
pb
,
char
*
src
,
MOVDref
*
ref
,
AVIOInterruptCB
*
int_cb
)
{
/* try relative path, we do not try the absolute because it can leak information about our
system to an attacker */
...
...
@@ -1805,7 +1806,7 @@ static int mov_open_dref(AVIOContext **pb, char *src, MOVDref *ref)
av_strlcat
(
filename
,
ref
->
path
+
l
+
1
,
1024
);
if
(
!
avio_open
(
pb
,
filename
,
AVIO_FLAG_READ
))
if
(
!
avio_open
2
(
pb
,
filename
,
AVIO_FLAG_READ
,
int_cb
,
NULL
))
return
0
;
}
}
...
...
@@ -1860,7 +1861,7 @@ static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if
(
sc
->
dref_id
-
1
<
sc
->
drefs_count
&&
sc
->
drefs
[
sc
->
dref_id
-
1
].
path
)
{
MOVDref
*
dref
=
&
sc
->
drefs
[
sc
->
dref_id
-
1
];
if
(
mov_open_dref
(
&
sc
->
pb
,
c
->
fc
->
filename
,
dref
)
<
0
)
if
(
mov_open_dref
(
&
sc
->
pb
,
c
->
fc
->
filename
,
dref
,
&
c
->
fc
->
interrupt_callback
)
<
0
)
av_log
(
c
->
fc
,
AV_LOG_ERROR
,
"stream %d, error opening alias: path='%s', dir='%s', "
"filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d
\n
"
,
...
...
libavformat/utils.c
View file @
9d77a8fa
...
...
@@ -593,7 +593,8 @@ static int init_input(AVFormatContext *s, const char *filename)
(
!
s
->
iformat
&&
(
s
->
iformat
=
av_probe_input_format
(
&
pd
,
0
))))
return
0
;
if
((
ret
=
avio_open
(
&
s
->
pb
,
filename
,
AVIO_FLAG_READ
))
<
0
)
if
((
ret
=
avio_open2
(
&
s
->
pb
,
filename
,
AVIO_FLAG_READ
,
&
s
->
interrupt_callback
,
NULL
))
<
0
)
return
ret
;
if
(
s
->
iformat
)
return
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