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
3b9a913d
Commit
3b9a913d
authored
Sep 26, 2006
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify seek() failure check
Originally committed as revision 6339 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
4156a436
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
aviobuf.c
libavformat/aviobuf.c
+1
-4
No files found.
libavformat/aviobuf.c
View file @
3b9a913d
...
@@ -123,9 +123,6 @@ offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence)
...
@@ -123,9 +123,6 @@ offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence)
/* can do the seek inside the buffer */
/* can do the seek inside the buffer */
s
->
buf_ptr
=
s
->
buffer
+
offset1
;
s
->
buf_ptr
=
s
->
buffer
+
offset1
;
}
else
{
}
else
{
if
(
!
s
->
seek
)
return
-
EPIPE
;
#ifdef CONFIG_MUXERS
#ifdef CONFIG_MUXERS
if
(
s
->
write_flag
)
{
if
(
s
->
write_flag
)
{
flush_buffer
(
s
);
flush_buffer
(
s
);
...
@@ -136,7 +133,7 @@ offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence)
...
@@ -136,7 +133,7 @@ offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence)
s
->
buf_end
=
s
->
buffer
;
s
->
buf_end
=
s
->
buffer
;
}
}
s
->
buf_ptr
=
s
->
buffer
;
s
->
buf_ptr
=
s
->
buffer
;
if
(
s
->
seek
(
s
->
opaque
,
offset
,
SEEK_SET
)
==
(
offset_t
)
-
EPIPE
)
if
(
!
s
->
seek
||
s
->
seek
(
s
->
opaque
,
offset
,
SEEK_SET
)
==
(
offset_t
)
-
EPIPE
)
return
-
EPIPE
;
return
-
EPIPE
;
s
->
pos
=
offset
;
s
->
pos
=
offset
;
}
}
...
...
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