[FFmpeg-devel] [PATCH 0/1] Parsing quicktime tracks in matroska containers

2019-08-13 Thread Stanislav Ionascu
lving the issue. Thanks! Stan. Stanislav Ionascu (1): avformat/matroska: fully parse stsd atom in v_quicktime tracks libavformat/matroskadec.c | 51 +++ 1 file changed, 36 insertions(+), 15 deletions(-) -- 2.20.1 _

[FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-13 Thread Stanislav Ionascu
than dv. Signed-off-by: Stanislav Ionascu --- libavformat/matroskadec.c | 51 +++ 1 file changed, 36 insertions(+), 15 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index 4e20f15792..88bc89c545 100644 --- a/libavformat

Re: [FFmpeg-devel] [PATCH 0/1] Parsing quicktime tracks in matroska containers

2019-08-14 Thread Stanislav Ionascu
kadec. Thanks! Stan. On Tue, Aug 13, 2019 at 9:35 PM Kieran O Leary wrote: > On Tue, 13 Aug 2019, 20:25 Stanislav Ionascu, > > wrote: > > > Hi All, > > > > when remuxing some of the mp4 files into the mkv container, not all > > video codecs can be properly represe

Re: [FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-14 Thread Stanislav Ionascu
On Tue, Aug 13, 2019 at 10:22 PM Andreas Rheinhardt wrote: > > Stanislav Ionascu: > > Per matroska spec, v_quicktime contains the complete stsd atom, after > > the mandatory size + fourcc. By properly parsing the hvcc sub-atoms of > > the track, it becomes possible to dem

[FFmpeg-devel] [PATCH v2] avformat/matroskadec: properly parse stsd in v_quicktime

2019-08-14 Thread Stanislav Ionascu
than dv. QuickTime palette parsing is reused from the stsd parser results. Signed-off-by: Stanislav Ionascu --- libavformat/matroskadec.c | 62 +++ 1 file changed, 44 insertions(+), 18 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat

Re: [FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-14 Thread Stanislav Ionascu
Hi, On Wed, Aug 14, 2019 at 11:50 PM Michael Niedermayer wrote: > > On Wed, Aug 14, 2019 at 08:44:11PM +0200, Stanislav Ionascu wrote: > > On Tue, Aug 13, 2019 at 10:22 PM Andreas Rheinhardt > > wrote: > > > > > > Stanislav Ionascu: > > > > Per

Re: [FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-17 Thread Stanislav Ionascu
Hi! On Sat, Aug 17, 2019 at 12:53 AM Michael Niedermayer wrote: > > On Thu, Aug 15, 2019 at 07:59:28AM +0200, Stanislav Ionascu wrote: > > Hi, > > > > On Wed, Aug 14, 2019 at 11:50 PM Michael Niedermayer > > wrote: > > > > > > On Wed, Aug 14, 2

Re: [FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-18 Thread Stanislav Ionascu
Hi, thanks for looking into this. On Sun, Aug 18, 2019 at 4:55 AM Andreas Rheinhardt wrote: > > Hello, > > I am no expert on mov (and so this should definitely be looked at from > someone who is), but I have some points: > > Stanislav Ionascu: > > diff --git a/

Re: [FFmpeg-devel] [PATCH 1/1] avformat/matroska: fully parse stsd atom in v_quicktime tracks

2019-08-21 Thread Stanislav Ionascu
Hi! On Tue, Aug 20, 2019 at 10:19 AM Michael Niedermayer wrote: > > On Sun, Aug 18, 2019 at 12:32:03PM +0200, Stanislav Ionascu wrote: > > Hi, > > > > thanks for looking into this. > > > > On Sun, Aug 18, 2019 at 4:55 AM Andreas Rheinhardt > > wro

[FFmpeg-devel] [PATCH v2] avformat/dvd: new dvd:// protocol for reading dvd folder/images

2023-01-07 Thread Stanislav Ionascu
dvd:// protocol uses libdvdread for opening folders and/or disc-images, it then either identifies the longest title-set, or uses the title-set parameter. After opening the dvd, it will read and output all VOBs, in sequence defined by the program-chain. Signed-off-by: Stanislav Ionascu

[FFmpeg-devel] [PATCH v3] avformat/dvd: new dvd:// protocol for reading dvd folder/images

2023-01-08 Thread Stanislav Ionascu
dvd:// protocol uses libdvdread for opening folders and/or disc-images, it then either identifies the longest title-set, or uses the title-set parameter. After opening the dvd, it will read and output all VOBs, in sequence defined by the program-chain. Signed-off-by: Stanislav Ionascu

[FFmpeg-devel] [PATCH v4] avformat/dvd: new dvd:// protocol for reading dvd folder/images

2023-01-15 Thread Stanislav Ionascu
-set, but not attached to the stream information. Signed-off-by: Stanislav Ionascu --- configure | 5 + libavformat/Makefile| 1 + libavformat/dvd.c | 327 libavformat/protocols.c | 1 + 4 files changed, 334 insertions(+) create

[FFmpeg-devel] [PATCH v5] avformat/dvd: new dvd:// protocol for reading dvd folder/images

2023-01-21 Thread Stanislav Ionascu
-set, but not attached to the stream information. Signed-off-by: Stanislav Ionascu --- configure | 5 + doc/protocols.texi | 61 libavformat/Makefile| 1 + libavformat/dvd.c | 327 libavformat/protocols.c | 1 + 5

Re: [FFmpeg-devel] [PATCH v4] avformat/dvd: new dvd:// protocol for reading dvd folder/images

2023-01-21 Thread Stanislav Ionascu
On Tue, Jan 17, 2023 at 8:12 AM Nicolas George wrote: > > Stanislav Ionascu (12023-01-15): > > dvd:// protocol uses libdvdread for opening folders and/or disc-images, > > it then either identifies the longest title-set, or uses the title-set > > parameter. >