[FFmpeg-devel] [PATCH] mpegts: fix demuxing PES private stream 2
Petri Hintukainen
phintuka at gmail.com
Mon Aug 31 11:06:16 CEST 2015
PES header size is 6 bytes (00 00 01 bf XX XX), not 0.
BluRay text subtitles use private stream 2.
---
libavformat/mpegts.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index eac6d9e..625d473 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -1054,6 +1054,7 @@ static int mpegts_push_data(MpegTSFilter *filter,
pes->st->request_probe = 1;
}
} else {
+ pes->pes_header_size = 6;
pes->state = MPEGTS_PAYLOAD;
pes->data_index = 0;
}
--
2.1.4
More information about the ffmpeg-devel
mailing list