Browse Source

bit: use AVERROR_INVALIDDATA

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
136a663ceb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/bit.c

+ 1
- 1
libavformat/bit.c View File

@@ -59,7 +59,7 @@ static int read_packet(AVFormatContext *s,
get_le16(pb); // sync word
packet_size = get_le16(pb) / 8;
if(packet_size > MAX_FRAME_SIZE)
return AVERROR(EIO);
return AVERROR_INVALIDDATA;

ret = get_buffer(pb, (uint8_t*)buf, (8 * packet_size) * sizeof(uint16_t));
if(ret<0)


Loading…
Cancel
Save