[FFmpeg-devel] [PATCH v2] avcodec/h264_sei: Add acces to truncated SEI data

2019-06-08 Thread Antonin Gouzer
--- Some codecs editors had miss interpreted the H264 standart and have coded a wrong size in the SEI data. size = SEI size + 1. The SEI data is detected as "truncated" Ex: https://drive.google.com/file/d/1cNtLwnfPnyJnYqE7OYhU3SCoLRtuXIUM/view?usp=sharing Command: ffprobe -print_format xml

Re: [FFmpeg-devel] [PATCH] avcodec/h264_sei: Add experimental acces to truncated SEI data

2019-06-04 Thread Antonin Gouzer
, Reimar Döffinger a écrit : > > > > On 04.06.2019, at 00:21, Antonin Gouzer wrote: > > > --- > > Some codecs editors had miss interpreted the H264 standart and > > have coded a wrong size in the SEI data. > > size = SEI size + 1. > > The SEI data

[FFmpeg-devel] [PATCH] avcodec/h264_sei: Add experimental acces to truncated SEI data

2019-06-03 Thread Antonin Gouzer
--- Some codecs editors had miss interpreted the H264 standart and have coded a wrong size in the SEI data. size = SEI size + 1. The SEI data is detected as "truncated" Ex: https://drive.google.com/file/d/1cNtLwnfPnyJnYqE7OYhU3SCoLRtuXIUM/view?usp=sharing Command: ffprobe -strict experimental

Re: [FFmpeg-devel] [FFMPEG DEVEL] [PATCH v6] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-29 Thread Antonin Gouzer
Thank you very much! Le lun. 27 mai 2019 à 00:35, Marton Balint a écrit : > > > On Sat, 25 May 2019, Antonin Gouzer wrote: > > > Hello, > > Shame on me, I didn't test the patch with the json format, only xml and > flat. > > It's ok now. > > ok for XML t

Re: [FFmpeg-devel] [FFMPEG DEVEL] [PATCH v6] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-25 Thread Antonin Gouzer
Hello, Shame on me, I didn't test the patch with the json format, only xml and flat. It's ok now. ok for XML too. Thanks! Le sam. 25 mai 2019 à 00:27, Marton Balint a écrit : > > > > On Fri, 24 May 2019, Antonin Gouzer wrote: > > > --- > > Add S12M Timecode output

[FFmpeg-devel] [FFMPEG DEVEL] [PATCH v6] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-24 Thread Antonin Gouzer
--- Add S12M Timecode output with the show_frame option Multiple timecodes (3) for one frame support Control side date Size to 16 Correct ffrpobe.xsd to allow multiple timecodes in side_data element --- doc/ffprobe.xsd | 8 fftools/ffprobe.c | 14 +- 2 files changed, 21

[FFmpeg-devel] [FFMPEG DEVEL] [PATCH v5] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-22 Thread Antonin Gouzer
--- Change structure to conserve one SEI data=one side data with multiple timecode elements --- fftools/ffprobe.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..c9c15fc205 100644 --- a/fftools/ffprobe.c

Re: [FFmpeg-devel] [FFMPEG DEVEL] [PATCH v4] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-22 Thread Antonin Gouzer
this: Would it be correct ? Le dim. 19 mai 2019 à 19:50, Marton Balint a écrit : > > > On Sun, 19 May 2019, Antonin Gouzer wrote: > > > --- > > Add t

[FFmpeg-devel] [FFMPEG DEVEL] [PATCH v4] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-18 Thread Antonin Gouzer
--- Add the index of the timecode in case of multiple timecodes values Limit to 3 the number of timecodes remove break Thanks you ! --- fftools/ffprobe.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..b43349f746 100644

[FFmpeg-devel] [PATCH v4] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-18 Thread Antonin Gouzer
--- I just correct the indentation in the for loop Thanks --- fftools/ffprobe.c | 8 1 file changed, 8 insertions(+) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..da92c1592f 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2199,6 +2199,14 @@ static void

[FFmpeg-devel] [PATCH v3] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-18 Thread Antonin Gouzer
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..da92c1592f 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2199,6 +2199,14 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream, char tcbuf[AV_TIMECODE_STR_SIZE];

Re: [FFmpeg-devel] [FFMPEG DEVEL] [PATCH v2] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-18 Thread Antonin Gouzer
writer: That should be ok don't you think ? Antonin Le sam. 18 mai 2019 à 18:20, Marton Balint a écrit : > > > > On Fri, 17 May 2019, Antonin Gouzer wrote: > > > Thanks in advance. > > --- > > fftools/ffprobe.c | 8

[FFmpeg-devel] [FFMPEG DEVEL] [PATCH v2] fftools/ffprobe: Add S12M Timecode output as side data (such as SEI TC)

2019-05-17 Thread Antonin Gouzer
Thanks in advance. --- fftools/ffprobe.c | 8 1 file changed, 8 insertions(+) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..4763ce6d98 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2199,6 +2199,14 @@ static void show_frame(WriterContext *w, AVFrame

Re: [FFmpeg-devel] [PATCH] Add S12M Timecode output as side data with -show_frame option (such as SEI TC)

2019-05-11 Thread Antonin Gouzer
Hello, Sorry for the first mail which was an error. This patch just add the SEI Timecode output of H264 files as side data in ffprobe (-show_frame). This has been already implemented in the shwoinfo video filter but not in ffprobe. Thanks in advance. Le sam. 11 mai 2019 à 21:24, Antonin Gouzer

[FFmpeg-devel] [PATCH] Add S12M Timecode output as side data with -show_frame option (such as SEI TC)

2019-05-11 Thread Antonin Gouzer
--- fftools/ffprobe.c | 8 1 file changed, 8 insertions(+) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index dea489d02e..4763ce6d98 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2199,6 +2199,14 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream

[FFmpeg-devel] [PATCH] Add S12M Timecode output as side data with -show_frame option (such as SEI TC)

2019-05-11 Thread Antonin Gouzer
From: agouzer --- fftools/ffprobe.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 52e9bbf544..4763ce6d98 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -2200,11 +2200,13 @@ static void show_frame(WriterContext

[FFmpeg-devel] [PATCH] fftools/ffprobe.c: Add to ffprobe S12M Timecode (such as SEI TC) as side data of show frame

2019-05-06 Thread Antonin Gouzer
Add to ffprobe S12M Timecode (such as SEI TC) as side data with -show_frame option. This has been previously implemented in libav but partialy not in ffprobe. Thanks in advance ! ffprobe_S12M_TC_Side_data.patch Description: Binary data ___