Module: libav
Branch: master
Commit: e006d71fa849542eb27146efac629288703b3d75

Author:    Jindrich Makovicka <[email protected]>
Committer: Anton Khirnov <[email protected]>
Date:      Thu Mar 31 16:58:50 2011 +0200

mpegts: propagate avio EOF in read_packet()

Allows distinguishing between EOF and IO error in read_packet return code.

Signed-off-by: Jindrich Makovicka <[email protected]>
Signed-off-by: Anton Khirnov <[email protected]>

---

 libavformat/mpegts.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index abdb000..62e9dcb 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -1350,7 +1350,7 @@ static int read_packet(AVFormatContext *s, uint8_t *buf, 
int raw_packet_size)
     for(;;) {
         len = avio_read(pb, buf, TS_PACKET_SIZE);
         if (len != TS_PACKET_SIZE)
-            return AVERROR(EIO);
+            return len < 0 ? len : AVERROR_EOF;
         /* check paquet sync byte */
         if (buf[0] != 0x47) {
             /* find a new packet start */

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to