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
15cc98a0
Commit
15cc98a0
authored
Jan 20, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/libquvi: Set default demuxer and protocol limitations
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
8e32d014
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
libquvi.c
libavformat/libquvi.c
+14
-0
No files found.
libavformat/libquvi.c
View file @
15cc98a0
...
@@ -95,6 +95,20 @@ static int libquvi_read_header(AVFormatContext *s)
...
@@ -95,6 +95,20 @@ static int libquvi_read_header(AVFormatContext *s)
goto
err_quvi_cleanup
;
goto
err_quvi_cleanup
;
}
}
if
(
!
qc
->
fmtctx
->
format_whitelist
)
{
qc
->
fmtctx
->
format_whitelist
=
av_strdup
(
"avi,asf,flv,mov,mpeg,mpegts,aac,h264,hevc,mp3,ogg,matroska,mxf,mp2"
);
if
(
!
qc
->
fmtctx
->
format_whitelist
)
{
avformat_free_context
(
qc
->
fmtctx
);
qc
->
fmtctx
=
NULL
;
goto
err_quvi_cleanup
;
}
}
if
(
strncmp
(
media_url
,
"http:"
,
5
)
&&
strncmp
(
media_url
,
"https:"
,
6
))
{
avformat_free_context
(
qc
->
fmtctx
);
qc
->
fmtctx
=
NULL
;
goto
err_quvi_cleanup
;
}
ret
=
avformat_open_input
(
&
qc
->
fmtctx
,
media_url
,
NULL
,
NULL
);
ret
=
avformat_open_input
(
&
qc
->
fmtctx
,
media_url
,
NULL
,
NULL
);
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
err_quvi_cleanup
;
goto
err_quvi_cleanup
;
...
...
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