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
e192cd9c
Commit
e192cd9c
authored
Feb 15, 2016
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smoothstreamingenc: do not open the files as read+write
They are only written to, never read.
parent
d082078a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
smoothstreamingenc.c
libavformat/smoothstreamingenc.c
+2
-2
No files found.
libavformat/smoothstreamingenc.c
View file @
e192cd9c
...
...
@@ -121,7 +121,7 @@ static int64_t ism_seek(void *opaque, int64_t offset, int whence)
AVDictionary
*
opts
=
NULL
;
os
->
tail_out
=
os
->
out
;
av_dict_set
(
&
opts
,
"truncate"
,
"0"
,
0
);
ret
=
ffurl_open
(
&
os
->
out
,
frag
->
file
,
AVIO_FLAG_
READ_
WRITE
,
&
os
->
ctx
->
interrupt_callback
,
&
opts
);
ret
=
ffurl_open
(
&
os
->
out
,
frag
->
file
,
AVIO_FLAG_WRITE
,
&
os
->
ctx
->
interrupt_callback
,
&
opts
);
av_dict_free
(
&
opts
);
if
(
ret
<
0
)
{
os
->
out
=
os
->
tail_out
;
...
...
@@ -129,7 +129,7 @@ static int64_t ism_seek(void *opaque, int64_t offset, int whence)
return
ret
;
}
av_dict_set
(
&
opts
,
"truncate"
,
"0"
,
0
);
ffurl_open
(
&
os
->
out2
,
frag
->
infofile
,
AVIO_FLAG_
READ_
WRITE
,
&
os
->
ctx
->
interrupt_callback
,
&
opts
);
ffurl_open
(
&
os
->
out2
,
frag
->
infofile
,
AVIO_FLAG_WRITE
,
&
os
->
ctx
->
interrupt_callback
,
&
opts
);
av_dict_free
(
&
opts
);
ffurl_seek
(
os
->
out
,
offset
-
frag
->
start_pos
,
SEEK_SET
);
if
(
os
->
out2
)
...
...
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