[FFmpeg-devel] [PATCH v4] avformat/movenc: Added an option to disable SIDX atom

2018-12-05 Thread Karthick J
--- doc/muxers.texi | 4 libavformat/movenc.c | 12 ++-- libavformat/movenc.h | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index f1cc6f5fee..ca10741900 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -1325,6 +132

Re: [FFmpeg-devel] [PATCH v3] avformat/movenc: Added an option to disable SIDX atom

2018-12-05 Thread Tobias Rapp
On 06.12.2018 06:07, Karthick J wrote: --- doc/muxers.texi | 4 libavformat/movenc.c | 12 ++-- libavformat/movenc.h | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) [...] @@ -6067,6 +6070,11 @@ static int mov_init(AVFormatContext *s) s->flags &= ~A

Re: [FFmpeg-devel] [PATCH] add support for ROI-based encoding

2018-12-05 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Li, Zhong > Sent: Thursday, December 06, 2018 1:57 PM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] add support for ROI-based encod

Re: [FFmpeg-devel] [PATCH] add support for ROI-based encoding

2018-12-05 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Guo, Yejun > Sent: Wednesday, December 5, 2018 5:59 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] add support for ROI-based encoding > > this patch is not ask for merge, it is more to get a feature fe

Re: [FFmpeg-devel] [PATCH v4 8/9] lavc/qsvenc: enable QVBR mode

2018-12-05 Thread Li, Zhong
> From: Li, Zhong > Sent: Thursday, November 29, 2018 4:29 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Li, Zhong > Subject: [PATCH v4 8/9] lavc/qsvenc: enable QVBR mode > > QVBR mode is to use the variable bitrate control algorithm with constant > quality. > mfxExtCodingOption3 should be supported to

Re: [FFmpeg-devel] [PATCH] libavcodec/qsvenc_hevc: correction for QSV HEVC default plugin selection on Windows

2018-12-05 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Landgraph > Sent: Thursday, December 6, 2018 4:23 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH] libavcodec/qsvenc_hevc: correction for > QSV HEVC default plugin selection on Windows > > Hi All, >

Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/movenc: Added an option to disable SIDX atom

2018-12-05 Thread Jeyapal, Karthick
On 12/5/18, 6:10 PM, "Tobias Rapp" wrote: > >On 05.12.2018 07:18, Karthick J wrote: >> [...] >> +if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX && s->flags & >> FF_MOV_FLAG_SKIP_SIDX) { >> +av_log(s, AV_LOG_WARNING, "Global SIDX enabled; Ignoring skip_sidx >> option\n"); >> +

[FFmpeg-devel] [PATCH v3] avformat/movenc: Added an option to disable SIDX atom

2018-12-05 Thread Karthick J
--- doc/muxers.texi | 4 libavformat/movenc.c | 12 ++-- libavformat/movenc.h | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index f1cc6f5fee..ca10741900 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -1325,6 +132

Re: [FFmpeg-devel] [PATCH] add support for ROI-based encoding

2018-12-05 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Michael Niedermayer > Sent: Thursday, December 06, 2018 4:41 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH] add support for ROI-b

[FFmpeg-devel] [PATCH 1/2] avcodec/dvdsubdec: discard accumulated buffer on error

2018-12-05 Thread Michael Niedermayer
Fixes: Timeout Fixes: 10992/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DVDSUB_fuzzer-5657495410835456 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/dvdsubdec.c | 1 + 1 file changed,

[FFmpeg-devel] [PATCH 2/2] avcodec/clearvideo: Check remaining input bits in P macro block loop

2018-12-05 Thread Michael Niedermayer
Fixes: Timeout Fixes: 11083/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CLEARVIDEO_fuzzer-5657180351496192 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/clearvideo.c | 2 ++ 1 file cha

[FFmpeg-devel] [PATCH] libavcodec/zmbvenc.c: don't allow motion estimation out of range.

2018-12-05 Thread matthew . w . fearnley
From: Matthew Fearnley The maximum allowable range for ZMBV motion estimation is [-64..63], since the dx,dy values are each stored in the upper 7 bits of a signed char. (Previously, the range was capped in the code to 127, resulting in an effective range of [-127..126]) Also fix a range error i

Re: [FFmpeg-devel] [PATCH] libavcodec/qsvenc_hevc: correction for QSV HEVC default plugin selection on Windows

2018-12-05 Thread Landgraph
Hi All, This is my first commit to ffmpeg, what should I do to merge it? Do we have any reasons to not merge this? Thanks! 23.10.2018 10:14, Li, Zhong пишет: From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of Maxym Dmytrychenko Sent: Sunday, October 14, 2018 3:36 AM To:

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: allow muxing prores

2018-12-05 Thread Paul B Mahol
On 12/6/18, Baptiste Coudurier wrote: > Hi Paul > > On Wed, Dec 5, 2018 at 9:52 AM Paul B Mahol wrote: > >> Signed-off-by: Paul B Mahol >> --- >> libavformat/mxfenc.c | 49 >> 1 file changed, 49 insertions(+) >> >> diff --git a/libavformat/mxfenc.c b

Re: [FFmpeg-devel] [PATCH 2/4] avformat/mxfdec: set profile for prores codec

2018-12-05 Thread Paul B Mahol
On 12/6/18, Baptiste Coudurier wrote: > Hi Paul > > On Wed, Dec 5, 2018 at 9:52 AM Paul B Mahol wrote: > >> Signed-off-by: Paul B Mahol >> --- >> libavformat/mxfdec.c | 12 >> 1 file changed, 12 insertions(+) >> >> diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c >> index f

Re: [FFmpeg-devel] [PATCH 2/4] avformat/mxfdec: set profile for prores codec

2018-12-05 Thread Baptiste Coudurier
Hi Paul On Wed, Dec 5, 2018 at 9:52 AM Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/mxfdec.c | 12 > 1 file changed, 12 insertions(+) > > diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c > index f49890e140..abb030b1a4 100644 > --- a/libavformat/mxf

Re: [FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: allow muxing prores

2018-12-05 Thread Baptiste Coudurier
Hi Paul On Wed, Dec 5, 2018 at 9:52 AM Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavformat/mxfenc.c | 49 > 1 file changed, 49 insertions(+) > > diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c > index 3549b4137d..e481b19ff

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 22:56 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 22:42 GMT+01:00, Paul B Mahol : >>> On 12/5/18, Carl Eugen Hoyos wrote: 2018-12-05 18:58 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 18:19 GMT+01:00, Paul

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 22:42 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wrote: >>> 2018-12-05 18:58 GMT+01:00, Paul B Mahol : On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 18:19 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wr

Re: [FFmpeg-devel] [PATCH] avcodec/ppc/hevcdsp: Fix build failures with powerpc-linux-gnu-gcc-4.8 with --disable-optimizations

2018-12-05 Thread Michael Niedermayer
On Wed, Dec 05, 2018 at 12:15:14AM +0100, Carl Eugen Hoyos wrote: > 2018-12-04 18:02 GMT+01:00, Michael Niedermayer : > > On Tue, Dec 04, 2018 at 04:33:03PM +0100, Carl Eugen Hoyos wrote: > >> 2018-12-04 16:29 GMT+01:00, Michael Niedermayer : > >> > The affected functions could also be changed into

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 22:42 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 18:58 GMT+01:00, Paul B Mahol : >>> On 12/5/18, Carl Eugen Hoyos wrote: 2018-12-05 18:19 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 17:33 GMT+01:00, Paul

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 18:58 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wrote: >>> 2018-12-05 18:19 GMT+01:00, Paul B Mahol : On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 17:33 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wr

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 18:58 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 18:19 GMT+01:00, Paul B Mahol : >>> On 12/5/18, Carl Eugen Hoyos wrote: 2018-12-05 17:33 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 14:27 GMT+01:00, Paul

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 19:00 GMT+01:00, Gregor Riepl : > There seems to be an indentation issue here: This is intended to allow an actual review. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 21:22 GMT+01:00, Paul B Mahol : > Signed-off-by: Paul B Mahol > --- > libavcodec/proresdec2.c | 51 ++--- > 1 file changed, 27 insertions(+), 24 deletions(-) > > diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c > index 8581d797fb..80a76

Re: [FFmpeg-devel] [PATCH] add support for ROI-based encoding

2018-12-05 Thread Michael Niedermayer
On Wed, Dec 05, 2018 at 05:58:58PM +0800, Guo, Yejun wrote: > this patch is not ask for merge, it is more to get a feature feedback. > > The encoders such as libx264 support different QPs offset for different MBs, > it makes possible for ROI-based encoding. It makes sense to add support > within f

[FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/proresdec2.c | 51 ++--- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 8581d797fb..80a76bbba1 100644 --- a/libavcodec/proresdec2.c +++ b/libavco

Re: [FFmpeg-devel] [PATCH] avcodec/h264dec: get field_order for typical frames

2018-12-05 Thread Paul B Mahol
On 12/5/18, Michael Niedermayer wrote: > On Wed, Dec 05, 2018 at 12:42:39PM +0100, Paul B Mahol wrote: >> This is normally set by parser but parsing is not always enabled. >> >> Signed-off-by: Paul B Mahol >> --- >> libavcodec/h264dec.c | 18 ++ >> 1 file changed, 18 insertions(+

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Michael Niedermayer
On Wed, Dec 05, 2018 at 06:52:06PM +0100, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/proresdec2.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) breaks make fate-prores-alpha_skip TESTprores-alpha_skip --- ./tests/ref/fate/prores-alpha_skip 2018-12-04 2

Re: [FFmpeg-devel] [PATCH] avcodec/h264dec: get field_order for typical frames

2018-12-05 Thread Michael Niedermayer
On Wed, Dec 05, 2018 at 12:42:39PM +0100, Paul B Mahol wrote: > This is normally set by parser but parsing is not always enabled. > > Signed-off-by: Paul B Mahol > --- > libavcodec/h264dec.c | 18 ++ > 1 file changed, 18 insertions(+) breaks: fate-api-h264-slice make: *** [fate-

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Gregor Riepl
There seems to be an indentation issue here: > +if (avctx->profile == FF_PROFILE_UNKNOWN) { > switch (avctx->codec_tag) { > case MKTAG('a','p','c','o'): and here: > av_log(avctx, AV_LOG_WARNING, "Unknown prores profile %d\n", > avctx->codec_tag); > } > +} ___

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 18:19 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wrote: >>> 2018-12-05 17:33 GMT+01:00, Paul B Mahol : On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 14:27 GMT+01:00, Paul B Mahol : >> Fixes #4409. >> >> Signe

[FFmpeg-devel] [PATCH 1/4] avcodec/proresdec2: change profile only if it is unknown

2018-12-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/proresdec2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 8581d797fb..f715b86aad 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -140,6 +140,7 @@ stati

[FFmpeg-devel] [PATCH 4/4] avformat/mxfenc: allow muxing prores

2018-12-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/mxfenc.c | 49 1 file changed, 49 insertions(+) diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 3549b4137d..e481b19ff3 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -146,6 +1

[FFmpeg-devel] [PATCH 3/4] avcodec/proresdec2: allow changing resolution

2018-12-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/proresdec2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index f715b86aad..4a9c408291 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -222,9 +222,8 @@ stati

[FFmpeg-devel] [PATCH 2/4] avformat/mxfdec: set profile for prores codec

2018-12-05 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/mxfdec.c | 12 1 file changed, 12 insertions(+) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index f49890e140..abb030b1a4 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2432,6 +2432,18 @@ static int mxf_parse_

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 17:33 GMT+01:00, Paul B Mahol : >> On 12/5/18, Carl Eugen Hoyos wrote: >>> 2018-12-05 14:27 GMT+01:00, Paul B Mahol : Fixes #4409. Signed-off-by: Paul B Mahol --- libavcodec/dpx.c | 3 ++- 1 file changed, 2 insertion

Re: [FFmpeg-devel] [PATCH 1/2 v3] lavf/isom: add Dolby Vision sample entry codes for HEVC and H.264

2018-12-05 Thread Jan Ekström
On Mon, Dec 3, 2018 at 3:19 AM Jan Ekström wrote: > > From: Rodger Combs > > These are registered identifiers at the MPEG-4 RA, which are > defined as to be utilized for Dolby Vision AVC/HEVC streams that > are not correctly presentable by standards-compliant AVC/HEVC players. > > According to th

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 17:33 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 14:27 GMT+01:00, Paul B Mahol : >>> Fixes #4409. >>> >>> Signed-off-by: Paul B Mahol >>> --- >>> libavcodec/dpx.c | 3 ++- >>> 1 file changed, 2 insertions(+), 1 deletion(-) >>> >>> diff --git a/libavc

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 14:27 GMT+01:00, Paul B Mahol : >> Fixes #4409. >> >> Signed-off-by: Paul B Mahol >> --- >> libavcodec/dpx.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c >> index 538a1b9943..04b

Re: [FFmpeg-devel] [PATCH]lavd: Remove libndi newtek

2018-12-05 Thread Jean-Baptiste Kempf
On Tue, 4 Dec 2018, at 22:50, Martin Vignali wrote: > > But then, you will get absolutely all the integration from ALL the various > > non-open source multimedia libraries, because it is useful to someone. > > Including shims for Adobe, Dolby and others. > > I'm probably disagree with you on thi

Re: [FFmpeg-devel] [INFO]AMD D3D11 to OpenCL interop extension for NV12 and P010 textures - split planes

2018-12-05 Thread Mironov, Mikhail
Hi Mark, Did you have chance to try this sample? BTW: Alex Karvchenko waits for your review and commit for AMF context for some time. With this commit he can add more interesting things. Could you please take a look? Thanks, Mikhail > -Original Message- > From: ffmpeg-devel On Behalf Of

Re: [FFmpeg-devel] [PATCH] lavf/dashenc: Remove global_sidx from movenc params for live streaming.

2018-12-05 Thread Andrey Semashev
On 12/4/18 2:47 PM, Andrey Semashev wrote: On 12/4/18 11:49 AM, Jeyapal, Karthick wrote: On 11/29/18 8:28 PM, Andrey Semashev wrote: On 11/28/18 7:25 PM, Jeyapal, Karthick wrote: On 11/28/18 4:41 PM, Andrey Semashev wrote: The global_sidx flag causes errors like the following in movenc when

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 14:27 GMT+01:00, Paul B Mahol : > Fixes #4409. > > Signed-off-by: Paul B Mahol > --- > libavcodec/dpx.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c > index 538a1b9943..04b55ffadf 100644 > --- a/libavcodec/dpx.c > +++ b/

Re: [FFmpeg-devel] [PATCH]lavd: Remove libndi newtek

2018-12-05 Thread Nicolas George
Marton Balint (2018-12-03): > You should think about our users who compile and use ffmpeg with NDI. This > change affects them negatively, so I don't support it. They chose to use hardware that only works with non-free software. They made their bed. I support the removal. Regards, -- Nicolas

[FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row for packing 2

2018-12-05 Thread Paul B Mahol
Fixes #4409. Signed-off-by: Paul B Mahol --- libavcodec/dpx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 538a1b9943..04b55ffadf 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -378,7 +378,8 @@ static int decode_frame(AV

Re: [FFmpeg-devel] [PATCH v2 1/2] avformat/movenc: Added an option to disable SIDX atom

2018-12-05 Thread Tobias Rapp
On 05.12.2018 07:18, Karthick J wrote: --- doc/muxers.texi | 4 libavformat/movenc.c | 12 ++-- libavformat/movenc.h | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index f1cc6f5fee..ca10741900 100644 --- a/doc/muxe

Re: [FFmpeg-devel] [PATCH] lavc/qsvenc: replace assert0 with an error return when pict_type is uninitialized

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 6:37 GMT+01:00, Li, Zhong : >> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf >> Of Linjie Fu >> Sent: Monday, December 3, 2018 4:34 PM >> To: ffmpeg-devel@ffmpeg.org >> Cc: Fu, Linjie >> Subject: [FFmpeg-devel] [PATCH] lavc/qsvenc: replace assert0 with an >> erro

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 12:49 GMT+01:00, Paul B Mahol : > On 12/5/18, Carl Eugen Hoyos wrote: >> 2018-12-05 11:30 GMT+01:00, Paul B Mahol : >>> Fixes #4409. >>> >>> Signed-off-by: Paul B Mahol >>> --- >>> libavcodec/dpx.c | 2 -- >>> 1 file changed, 2 deletions(-) >>> >>> diff --git a/libavcodec/dpx.c b/liba

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row

2018-12-05 Thread Paul B Mahol
On 12/5/18, Carl Eugen Hoyos wrote: > 2018-12-05 11:30 GMT+01:00, Paul B Mahol : >> Fixes #4409. >> >> Signed-off-by: Paul B Mahol >> --- >> libavcodec/dpx.c | 2 -- >> 1 file changed, 2 deletions(-) >> >> diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c >> index 538a1b9943..b09f65eeb6 100644 >>

Re: [FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row

2018-12-05 Thread Carl Eugen Hoyos
2018-12-05 11:30 GMT+01:00, Paul B Mahol : > Fixes #4409. > > Signed-off-by: Paul B Mahol > --- > libavcodec/dpx.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c > index 538a1b9943..b09f65eeb6 100644 > --- a/libavcodec/dpx.c > +++ b/libavcodec/dpx.c

[FFmpeg-devel] [PATCH] avcodec/h264dec: get field_order for typical frames

2018-12-05 Thread Paul B Mahol
This is normally set by parser but parsing is not always enabled. Signed-off-by: Paul B Mahol --- libavcodec/h264dec.c | 18 ++ 1 file changed, 18 insertions(+) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index 00d922fbe9..39142da7af 100644 --- a/libavcodec/h264dec.

[FFmpeg-devel] [PATCH] avcodec/dpx: do not reset n_datum to 0 at end of row

2018-12-05 Thread Paul B Mahol
Fixes #4409. Signed-off-by: Paul B Mahol --- libavcodec/dpx.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 538a1b9943..b09f65eeb6 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -378,7 +378,6 @@ static int decode_frame(AVCodecContext *avc

Re: [FFmpeg-devel] [PATCH] avcodec/mjpeg: don't override color information from demuxer

2018-12-05 Thread Steinar H. Gunderson
On Wed, Dec 05, 2018 at 01:33:12AM +0100, Hendrik Leppkes wrote: > The real problem is that its impossible to know which component to > really trust. Why does a demuxer have more authority on the color > format then a decoder? Or vice-versa? You can make this arbitrarily complicated, of course, bu