mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 10:29:39 +00:00
lavf/mpegts: use AVERROR_INVALIDDATA instead of AVERROR(EINTR).
This commit is contained in:
parent
eb2e4fb674
commit
085ab74972
@ -2670,7 +2670,7 @@ static int mpegts_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!ret && pkt->size < 0)
|
if (!ret && pkt->size < 0)
|
||||||
ret = AVERROR(EINTR);
|
ret = AVERROR_INVALIDDATA;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user