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
9fcc62ed
Commit
9fcc62ed
authored
Mar 12, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "ffserver: remove unused variable."
This reverts commit
f02f745e
.
parent
4272dc3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ffserver.c
ffserver.c
+3
-1
No files found.
ffserver.c
View file @
9fcc62ed
...
...
@@ -2127,12 +2127,13 @@ static int open_input_stream(HTTPContext *c, const char *info)
char
buf
[
128
];
char
input_filename
[
1024
];
AVFormatContext
*
s
=
NULL
;
int
i
,
ret
;
int
buf_size
,
i
,
ret
;
int64_t
stream_pos
;
/* find file name */
if
(
c
->
stream
->
feed
)
{
strcpy
(
input_filename
,
c
->
stream
->
feed
->
feed_filename
);
buf_size
=
FFM_PACKET_SIZE
;
/* compute position (absolute time) */
if
(
av_find_info_tag
(
buf
,
sizeof
(
buf
),
"date"
,
info
))
{
if
((
ret
=
av_parse_time
(
&
stream_pos
,
buf
,
0
))
<
0
)
...
...
@@ -2144,6 +2145,7 @@ static int open_input_stream(HTTPContext *c, const char *info)
stream_pos
=
av_gettime
()
-
c
->
stream
->
prebuffer
*
(
int64_t
)
1000
;
}
else
{
strcpy
(
input_filename
,
c
->
stream
->
feed_filename
);
buf_size
=
0
;
/* compute position (relative time) */
if
(
av_find_info_tag
(
buf
,
sizeof
(
buf
),
"date"
,
info
))
{
if
((
ret
=
av_parse_time
(
&
stream_pos
,
buf
,
1
))
<
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