Commit 085ab749 authored by Nicolas George's avatar Nicolas George

lavf/mpegts: use AVERROR_INVALIDDATA instead of AVERROR(EINTR).

parent eb2e4fb6
......@@ -2670,7 +2670,7 @@ static int mpegts_read_packet(AVFormatContext *s, AVPacket *pkt)
}
if (!ret && pkt->size < 0)
ret = AVERROR(EINTR);
ret = AVERROR_INVALIDDATA;
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment