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
fa7e9f94
Commit
fa7e9f94
authored
Oct 12, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/vocdec: return AVERROR_EOF when EOF is reached
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
4b948dca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vocdec.c
libavformat/vocdec.c
+1
-1
No files found.
libavformat/vocdec.c
View file @
fa7e9f94
...
@@ -75,7 +75,7 @@ ff_voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
...
@@ -75,7 +75,7 @@ ff_voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
while
(
!
voc
->
remaining_size
)
{
while
(
!
voc
->
remaining_size
)
{
type
=
avio_r8
(
pb
);
type
=
avio_r8
(
pb
);
if
(
type
==
VOC_TYPE_EOF
)
if
(
type
==
VOC_TYPE_EOF
)
return
AVERROR
(
EIO
)
;
return
AVERROR
_EOF
;
voc
->
remaining_size
=
avio_rl24
(
pb
);
voc
->
remaining_size
=
avio_rl24
(
pb
);
if
(
!
voc
->
remaining_size
)
{
if
(
!
voc
->
remaining_size
)
{
if
(
!
s
->
pb
->
seekable
)
if
(
!
s
->
pb
->
seekable
)
...
...
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