Browse Source

xa: fix end-of-file handling

Do not output an extra packet when out_size is reached.
Also return AVERROR_EOF instead of AVERROR(EIO).
tags/n0.11
Justin Ruggles 14 years ago
parent
commit
64de57f645
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/xa.c

+ 2
- 2
libavformat/xa.c View File

@@ -100,8 +100,8 @@ static int xa_read_packet(AVFormatContext *s,
unsigned int packet_size;
int ret;

if(xa->sent_bytes > xa->out_size)
return AVERROR(EIO);
if (xa->sent_bytes >= xa->out_size)
return AVERROR_EOF;
/* 1 byte header and 14 bytes worth of samples * number channels per block */
packet_size = 15*st->codec->channels;



Loading…
Cancel
Save