Re: [FFmpeg-devel] [PATCH 1/2] avformat/mpegts: parse sections with multiple tables

2018-05-13 Thread James Almer
On 5/9/2018 6:35 PM, Aman Gupta wrote: > From: Aman Gupta > > Fixes PMT parsing in some mpegts streams which contain > multiple tables within the PMT pid. Previously, the parser > assumed only one table was present in each packet, and discarded > the rest of the section data after attempting to p

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mpegts: parse sections with multiple tables

2018-05-10 Thread Michael Niedermayer
On Wed, May 09, 2018 at 02:35:00PM -0700, Aman Gupta wrote: > From: Aman Gupta > > Fixes PMT parsing in some mpegts streams which contain > multiple tables within the PMT pid. Previously, the parser > assumed only one table was present in each packet, and discarded > the rest of the section data

[FFmpeg-devel] [PATCH 1/2] avformat/mpegts: parse sections with multiple tables

2018-05-09 Thread Aman Gupta
From: Aman Gupta Fixes PMT parsing in some mpegts streams which contain multiple tables within the PMT pid. Previously, the parser assumed only one table was present in each packet, and discarded the rest of the section data after attempting to parse the first table. A similar issue was document