mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/westwood_aud: replace != 0 error check by <0
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4b45aa517c
commit
1728659319
@ -151,7 +151,7 @@ static int wsaud_read_packet(AVFormatContext *s,
|
|||||||
Specifically, this is needed to signal when a packet should be
|
Specifically, this is needed to signal when a packet should be
|
||||||
decoding as raw 8-bit pcm or variable-size ADPCM. */
|
decoding as raw 8-bit pcm or variable-size ADPCM. */
|
||||||
int out_size = AV_RL16(&preamble[2]);
|
int out_size = AV_RL16(&preamble[2]);
|
||||||
if ((ret = av_new_packet(pkt, chunk_size + 4)))
|
if ((ret = av_new_packet(pkt, chunk_size + 4)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
if ((ret = avio_read(pb, &pkt->data[4], chunk_size)) != chunk_size)
|
if ((ret = avio_read(pb, &pkt->data[4], chunk_size)) != chunk_size)
|
||||||
return ret < 0 ? ret : AVERROR(EIO);
|
return ret < 0 ? ret : AVERROR(EIO);
|
||||||
|
Loading…
Reference in New Issue
Block a user