This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavf/mpegts: use AVERROR_INVALIDDATA instead of AVERROR(EINTR).
tags/n3.0
Nicolas George
10 years ago
parent
eb2e4fb674
commit
085ab74972
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mpegts.c
+ 1
- 1
libavformat/mpegts.c
View File
@@ -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;
}
Write
Preview
Loading…
Cancel
Save