Re: [FFmpeg-devel] [PATCH] Build fix for MIPS

2017-03-30 Thread Shivraj Patil
Hi, On Thu, Mar 30, 2017 at 2:21 AM, > wrote: From: Shivraj Patil > Signed-off-by: Shivraj Patil > ---

[FFmpeg-devel] [PATCH]lavf/amr: Return AVERROR_EOF on EOF

2017-03-30 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ticket #6280 for me. Please comment, Carl Eugen From 50c4b3fd0a04f92b54b945fe1a3c453c499d4a73 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 31 Mar 2017 06:54:01 +0200 Subject: [PATCH] lavf/amr: Return AVERROR_EOF on EOF. Fixes ticket

Re: [FFmpeg-devel] [PATCH 1/2] Add experimental support for Opus in ISO BMFF (MP4)

2017-03-30 Thread Matthew Gregan
At 2017-03-16T14:19:45+1300, Matthew Gregan wrote: > The attached patch adds experimental muxing support for Opus audio codec in > ISOBMFF/MP4. This is based on v0.6.8 of the draft spec at > https://vfrmaniac.fushizen.eu/contents/opus_in_isobmff.html. > > Firefox supports demuxing/playback of

[FFmpeg-devel] [PATCH 2/2] doc: update cache protocol documentation

2017-03-30 Thread Timothy Lee
This patch updates the cache protocol documentation to describe the cache_file option added by the previous patch. >From 42e09bc8c6a27c760c1fba23ba9591a521768b36 Mon Sep 17 00:00:00 2001 From: Timothy Lee Date: Fri, 31 Mar 2017 12:54:57 +1100 Subject: [PATCH 2/2] doc:

[FFmpeg-devel] [PATCH 1/2] cache protocol: allow cache files to be retained

2017-03-30 Thread Timothy Lee
Hi, This patch allows the name of the cache file to be specified, and retains the file after use. This was marked as a TODO item inside cache.c If the filename is not specified, the cache protocol reverts back to the original behavior of using a temporary file. Regards, Timothy >From

[FFmpeg-devel] [PATCH] fate: add owdenoise test

2017-03-30 Thread Thomas Turner
Reference found at: http://bit.ly/2ogQygb Signed-off-by: Thomas Turner --- tests/fate/filter-video.mak | 7 +++ 1 file changed, 7 insertions(+) diff --git a/tests/fate/filter-video.mak b/tests/fate/filter-video.mak index b067cc1..a154dd2 100644 ---

Re: [FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Steven Liu
2017-03-31 5:06 GMT+08:00 Betty Wu : > A new filter ANSNR is added. libavfilter/Makefile is changed. > Run 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -' to get an overall > score while per-frame value is stored but not printed. > This implementation is for constructing

Re: [FFmpeg-devel] [PATCH] ffprobe: port to new decode API

2017-03-30 Thread Michael Niedermayer
On Thu, Mar 30, 2017 at 05:05:36PM +0200, wm4 wrote: > Not sure if it behaves ideally in presence of decoding errors. > --- > The original version of this patch is actually 1 year old. > --- > ffprobe.c | 42 +- > 1 file changed, 29 insertions(+), 13

[FFmpeg-devel] [PATCH 1/2] Ignore expired cookies

2017-03-30 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/http.c | 204 ++--- 1 file changed, 147 insertions(+), 57 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index 293a8a7..a9f1b3f 100644 --- a/libavformat/http.c

[FFmpeg-devel] [PATCH 2/2] Add http cookie tests cases to fate

2017-03-30 Thread Micah Galizia
Signed-off-by: Micah Galizia --- libavformat/Makefile | 1 + libavformat/tests/http.c | 182 + tests/fate/libavformat.mak | 5 ++ tests/ref/fate/http| 30 4 files changed, 218 insertions(+) create

[FFmpeg-devel] [PATCH v2 0/2] Ignore expired cookies

2017-03-30 Thread Micah Galizia
Hello Again, This is another attempt to get the http protocol not to send expired cookies _and_ prevent it from updating good cookie values with expired cookie values sent by misbehaving servers. Previously its been recommended that we break each set-cookie into a dict to parse it properly;

Re: [FFmpeg-devel] [PATCH] Ignore expired cookies

2017-03-30 Thread Micah Galizia
Thanks for those comments -- I'll get rid of the strlen in the upcoming patch but, Nicolas, you lost me there. Anyway, this patch only does half the job -- I have a new one that is unfortunately larger, but has taken prior advice to break cookies into dicts. On Thu, Mar 30, 2017 at 4:12 PM,

Re: [FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Michael Niedermayer
On Thu, Mar 30, 2017 at 11:06:36PM +0200, Betty Wu wrote: > A new filter ANSNR is added. libavfilter/Makefile is changed. > Run 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -' to get an overall > score while per-frame value is stored but not printed. > This implementation is for constructing

Re: [FFmpeg-devel] [PATCH] lavf/segment: fix slight refactor to seg_write_packet

2017-03-30 Thread Michael Niedermayer
On Thu, Mar 30, 2017 at 04:43:12PM -0400, Jason Pontious wrote: > I found an issue with a previous commit and I'm submitting the patch here. > The previous commit was from March '16 https://github.com/FFmpeg/ > FFmpeg/commit/5b4f44f66ae3c42b7497929b6ef5f67e8b1ff0ad > > Previous refactor commit

Re: [FFmpeg-devel] Minor warning found by VC++ /analyze

2017-03-30 Thread Hendrik Leppkes
On Fri, Mar 31, 2017 at 12:35 AM, Bruce Dawson wrote: > I just pulled a report on new warnings reported by /analyze in Chromium and > I saw this one in ffmpeg that looks real: > > third_party\ffmpeg\libavcodec\utils.c(2822) : warning C6001: Using >

Re: [FFmpeg-devel] [PATCH] pthread_frame: Propagate sw_pix_fmt across threads

2017-03-30 Thread Hendrik Leppkes
On Fri, Mar 31, 2017 at 12:04 AM, Mark Thompson wrote: > This is required by the VP9 hwaccels (both DXVA2 and VAAPI) when > threads are enabled. > --- > libavcodec/pthread_frame.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/pthread_frame.c

[FFmpeg-devel] Minor warning found by VC++ /analyze

2017-03-30 Thread Bruce Dawson
I just pulled a report on new warnings reported by /analyze in Chromium and I saw this one in ffmpeg that looks real: third_party\ffmpeg\libavcodec\utils.c(2822) : warning C6001: Using uninitialized memory 'got_frame'. There is an error path - ret gets set to AVERROR(EINVAL) but then execution

[FFmpeg-devel] [PATCH] pthread_frame: Propagate sw_pix_fmt across threads

2017-03-30 Thread Mark Thompson
This is required by the VP9 hwaccels (both DXVA2 and VAAPI) when threads are enabled. --- libavcodec/pthread_frame.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/pthread_frame.c b/libavcodec/pthread_frame.c index 5b5f5fb289..4e1ad9d686 100644 --- a/libavcodec/pthread_frame.c +++

[FFmpeg-devel] [PATCH] New API usage example (encode_raw_audio_file_to_aac)

2017-03-30 Thread Paolo Prete
--- configure | 2 + doc/Makefile| 41 ++-- doc/examples/.gitignore | 1 + doc/examples/Makefile | 1 + doc/examples/encode_raw_audio_file_to_aac.c | 338

[FFmpeg-devel] [PATCH] avfilter/vf_zoompan: Free out frame on error

2017-03-30 Thread Michael Niedermayer
Fixes: CID1398578 Signed-off-by: Michael Niedermayer --- libavfilter/vf_zoompan.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavfilter/vf_zoompan.c b/libavfilter/vf_zoompan.c index 136d6c83fd..53a0700e37 100644 ---

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the return code of decode_mb()

2017-03-30 Thread Michael Niedermayer
On Thu, Mar 30, 2017 at 10:20:13PM +0200, Nicolas George wrote: > Le decadi 10 germinal, an CCXXV, Michael Niedermayer a écrit : > > Subject: Re: [FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the > > Lose, single O. fixed, applied thx > > To lose means you do not know where

[FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Betty Wu
A new filter ANSNR is added. libavfilter/Makefile is changed. Run 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -' to get an overall score while per-frame value is stored but not printed. This implementation is for constructing the vmaf filter later since ANSNR is one of individual tools used

[FFmpeg-devel] [PATCH] lavf/segment: fix slight refactor to seg_write_packet

2017-03-30 Thread Jason Pontious
I found an issue with a previous commit and I'm submitting the patch here. The previous commit was from March '16 https://github.com/FFmpeg/ FFmpeg/commit/5b4f44f66ae3c42b7497929b6ef5f67e8b1ff0ad Previous refactor commit did not produce an equivalent segment end_time in all cases. When setting

[FFmpeg-devel] [PATCH] avfilter/avfiltergraph: Check for allocation failure in avfilter_graph_queue_command()

2017-03-30 Thread Michael Niedermayer
Fixes: CID1396538 Signed-off-by: Michael Niedermayer --- libavfilter/avfiltergraph.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 75bd516896..f7fbf119eb 100644 --- a/libavfilter/avfiltergraph.c +++

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the return code of decode_mb()

2017-03-30 Thread Nicolas George
Le decadi 10 germinal, an CCXXV, Michael Niedermayer a écrit : > Subject: Re: [FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the Lose, single O. To lose means you do not know where something is. To loose means to set free, as in "the Forsaken are loose". Maybe a pre-commit /

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the return code of decode_mb()

2017-03-30 Thread Paul B Mahol
On 3/30/17, Michael Niedermayer wrote: > Fixes CID1401671 > > Signed-off-by: Michael Niedermayer > --- > libavcodec/clearvideo.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > Whatever, lgtm.

Re: [FFmpeg-devel] [PATCH 2/2] avfilter/af_chorus & aecho: Handle NULL return from av_strtok()

2017-03-30 Thread Paul B Mahol
On 3/30/17, Michael Niedermayer wrote: > Fixes CID1396260 > > Signed-off-by: Michael Niedermayer > --- > libavfilter/af_aecho.c | 3 ++- > libavfilter/af_chorus.c | 3 ++- > 2 files changed, 4 insertions(+), 2 deletions(-) > ok

[FFmpeg-devel] [PATCH 1/2] avcodec/clearvideo: Do not loose the return code of decode_mb()

2017-03-30 Thread Michael Niedermayer
Fixes CID1401671 Signed-off-by: Michael Niedermayer --- libavcodec/clearvideo.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavcodec/clearvideo.c b/libavcodec/clearvideo.c index e2644e3090..437c459aa5 100644 --- a/libavcodec/clearvideo.c

Re: [FFmpeg-devel] [PATCH] Ignore expired cookies

2017-03-30 Thread Nicolas George
Le decadi 10 germinal, an CCXXV, Alexander Strasser a écrit : > If expiry is zero terminated and you are going through it one byte at a time, > you could omit the strlen call and just check if expiry[i] is non zero. > > It's maybe the more common idiom too. On the other hand, code that does not

[FFmpeg-devel] [PATCH 2/2] avfilter/af_chorus & aecho: Handle NULL return from av_strtok()

2017-03-30 Thread Michael Niedermayer
Fixes CID1396260 Signed-off-by: Michael Niedermayer --- libavfilter/af_aecho.c | 3 ++- libavfilter/af_chorus.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libavfilter/af_aecho.c b/libavfilter/af_aecho.c index 82049e9541..cfaea3de43 100644

Re: [FFmpeg-devel] [PATCH] Ignore expired cookies

2017-03-30 Thread Alexander Strasser
Hi! On 2017-03-29 19:42 -0400, Micah Galizia wrote: > I'm going to have to submit a v2 for this patch (hopefully soon) -- > this version only accomplishes half the job: not sending expired > cookies. The change should also prevent storing them in the first > place. > > Regardless, thanks for

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 3:37 PM, Vittorio Giovara wrote: > On Thu, Mar 30, 2017 at 4:16 PM, James Almer wrote: >> On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >>> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: A new field is added to AVSphericalMapping for

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Vittorio Giovara
On Thu, Mar 30, 2017 at 4:16 PM, James Almer wrote: > On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: >>> A new field is added to AVSphericalMapping for this purpose, >>> and is used by both

Re: [FFmpeg-devel] [PATCH] Correct range for framerate in abitscope filter

2017-03-30 Thread Lou Logan
On Thu, 30 Mar 2017 10:13:53 +0530 Gyan wrote: > Ping. Pushed. Thanks. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-03-30 Thread Michael Bradshaw
On Thu, Mar 30, 2017 at 10:17 AM, Clément Bœsch wrote: > > How about the documentation (and the promised FATE test to prevent a break > in a random merge)? I haven't forgotten about it. It's still on my radar and TODO list. This email thread has been sitting in my inbox staring me

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-03-30 Thread Clément Bœsch
On Thu, Mar 30, 2017 at 06:10:02PM +0200, Michael Niedermayer wrote: > On Sat, Jan 14, 2017 at 11:25:20PM +0100, Clément Bœsch wrote: > > On Sat, Jan 14, 2017 at 01:46:02PM -0800, Michael Bradshaw wrote: > > > On Sat, Jan 14, 2017 at 1:12 PM, Clément Bœsch wrote: > > > > > > > > erm.

[FFmpeg-devel] [PATCH] ffmpeg: Fix dereference before NULL check

2017-03-30 Thread Michael Niedermayer
Fixes CID1401675 Signed-off-by: Michael Niedermayer --- ffmpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 11faf0d4a8..b11a6a1409 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1848,14 +1848,14 @@ static void

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-03-30 Thread Michael Niedermayer
On Sat, Jan 14, 2017 at 11:25:20PM +0100, Clément Bœsch wrote: > On Sat, Jan 14, 2017 at 01:46:02PM -0800, Michael Bradshaw wrote: > > On Sat, Jan 14, 2017 at 1:12 PM, Clément Bœsch wrote: > > > > > > erm. We have at least a codec option with that same name. How much does it > > >

Re: [FFmpeg-devel] [PATCH 1/3] lavu: add support for Content Light Level side metadata

2017-03-30 Thread James Almer
On 3/30/2017 11:31 AM, Steve Lhomme wrote: > As found in HEVC. > > I put the code in mastering_display_metadata as they usually go together in > Blu-Ray UHD sources. > --- > libavutil/frame.c | 1 + > libavutil/frame.h | 6 ++ >

Re: [FFmpeg-devel] [FFmpeg-cvslog] ffmpeg: Add -time_base option to hint the time base

2017-03-30 Thread Clément Bœsch
On Sat, Jan 14, 2017 at 11:25:20PM +0100, Clément Bœsch wrote: > On Sat, Jan 14, 2017 at 01:46:02PM -0800, Michael Bradshaw wrote: > > On Sat, Jan 14, 2017 at 1:12 PM, Clément Bœsch wrote: > > > > > > erm. We have at least a codec option with that same name. How much does it > > >

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 11:41 AM, Aaron Colwell wrote: > On Thu, Mar 30, 2017 at 7:17 AM James Almer wrote: > >> On 3/30/2017 5:54 AM, Vittorio Giovara wrote: >>> On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: A new field is added to AVSphericalMapping for

[FFmpeg-devel] [PATCH] ffprobe: port to new decode API

2017-03-30 Thread wm4
Not sure if it behaves ideally in presence of decoding errors. --- The original version of this patch is actually 1 year old. --- ffprobe.c | 42 +- 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/ffprobe.c b/ffprobe.c index

Re: [FFmpeg-devel] [PATCH 1/3] lavu: add support for Content Light Level side metadata

2017-03-30 Thread Hendrik Leppkes
On Thu, Mar 30, 2017 at 4:31 PM, Steve Lhomme wrote: > As found in HEVC. > > I put the code in mastering_display_metadata as they usually go together in > Blu-Ray UHD sources. > --- > libavutil/frame.c | 1 + > libavutil/frame.h | 6

Re: [FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Steven Liu
2017-03-30 22:44 GMT+08:00 Betty Wu : > A new filter ANSNR is added. Makefile is changed. > Run like 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -'. > The implementation is for further constructing vmaf filter since ANSNR is > one of individual tools used in vmaf. > >

[FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Betty Wu
A new filter ANSNR is added. Makefile is changed. Run like 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -'. The implementation is for further constructing vmaf filter since ANSNR is one of individual tools used in vmaf. Signed-off-by: Betty Wu --- libavfilter/Makefile

Re: [FFmpeg-devel] [PATCH v11] avformat/dashdec: add dash demuxer base version

2017-03-30 Thread Steven Liu
2017-03-30 20:59 GMT+08:00 Steven Liu : > > > 2017-03-30 18:46 GMT+08:00 wm4 : > >> On Thu, 30 Mar 2017 08:34:18 +0800 >> Steven Liu wrote: >> >> > v2 fixed: >> > 1. from autodetect to disabled >> > 2. from camelCase code

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Aaron Colwell
On Thu, Mar 30, 2017 at 7:17 AM James Almer wrote: > On 3/30/2017 5:54 AM, Vittorio Giovara wrote: > > On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: > >> A new field is added to AVSphericalMapping for this purpose, > >> and is used by both

[FFmpeg-devel] [PATCH 3/3] avformat/dump : Display Content Light Level metadata

2017-03-30 Thread Steve Lhomme
--- libavformat/dump.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/dump.c b/libavformat/dump.c index 7c811ce5d2..a8122f216b 100644 --- a/libavformat/dump.c +++ b/libavformat/dump.c @@ -343,6 +343,14 @@ static void dump_mastering_display_metadata(void *ctx,

[FFmpeg-devel] [PATCH 1/3] lavu: add support for Content Light Level side metadata

2017-03-30 Thread Steve Lhomme
As found in HEVC. I put the code in mastering_display_metadata as they usually go together in Blu-Ray UHD sources. --- libavutil/frame.c | 1 + libavutil/frame.h | 6 ++ libavutil/mastering_display_metadata.c | 18

[FFmpeg-devel] [PATCH 2/3] lavc: Add Content Light Level side metadata found in HEVC

2017-03-30 Thread Steve Lhomme
These data are necessary when transmitting HDR over HDMI. --- libavcodec/avcodec.h | 7 +++ libavcodec/avpacket.c | 1 + libavcodec/hevc_sei.c | 15 +++ libavcodec/hevcdec.c | 22 ++ libavcodec/hevcdec.h | 5 + libavcodec/utils.c| 1 +

[FFmpeg-devel] [PATCH] avutil/avstring: add av_strreplace API into avstring

2017-03-30 Thread Steven Liu
refer to: http://creativeandcritical.net/str-replace-c add av_strreplace API for replace string operations. Signed-off-by: Steven Liu --- libavutil/avstring.c | 77 libavutil/avstring.h | 5 2 files changed, 82

Re: [FFmpeg-devel] [PATCH] doc/examples/encode_audio: Favor a sample rate close to 44khz instead of the maximum sample rate

2017-03-30 Thread Michael Niedermayer
On Thu, Mar 30, 2017 at 09:37:34PM +0800, Steven Liu wrote: > 2017-03-30 21:12 GMT+08:00 Michael Niedermayer : > > > This is an example, people will copy and use this. The maximum supported > > is quite > > unreasonable as a default choice > > > > Signed-off-by: Michael

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread James Almer
On 3/30/2017 5:54 AM, Vittorio Giovara wrote: > On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: >> A new field is added to AVSphericalMapping for this purpose, >> and is used by both Equirectangular and Cubemap projections. >> This is a replacement for duplicate projection

Re: [FFmpeg-devel] [PATCH 1/3] avutil/spherical: add av_spherical_projection_name()

2017-03-30 Thread James Almer
On 3/30/2017 4:14 AM, Benoit Fouet wrote: > Hi, > > > On 29/03/2017 04:55, James Almer wrote: >> Signed-off-by: James Almer >> --- >> doc/APIchanges| 3 +++ >> libavutil/spherical.c | 15 +++ >> libavutil/spherical.h | 9 + >> 3 files changed,

Re: [FFmpeg-devel] [PATCH] doc/examples/encode_audio: Favor a sample rate close to 44khz instead of the maximum sample rate

2017-03-30 Thread Steven Liu
2017-03-30 21:12 GMT+08:00 Michael Niedermayer : > This is an example, people will copy and use this. The maximum supported > is quite > unreasonable as a default choice > > Signed-off-by: Michael Niedermayer > --- > doc/examples/encode_audio.c |

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Michael Niedermayer
On Wed, Mar 29, 2017 at 03:01:24PM -0300, James Almer wrote: > A new field is added to AVSphericalMapping for this purpose, > and is used by both Equirectangular and Cubemap projections. > This is a replacement for duplicate projection enums like > AV_SPHERICAL_EQUIRECTANGULAR_TILE, which are

Re: [FFmpeg-devel] [PATCH] doc/examples/filtering_video: switch to new decoding API

2017-03-30 Thread Matthieu Bouron
On Thu, Mar 30, 2017 at 02:23:11PM +0200, wm4 wrote: > On Thu, 30 Mar 2017 13:35:47 +0200 > Matthieu Bouron wrote: > > > From e9e5b3e679a12fdd9495c53177ade51c3dee7ba2 Mon Sep 17 00:00:00 2001 > > From: Matthieu Bouron > > Date: Wed, 29 Mar

Re: [FFmpeg-devel] [PATCH] doc/examples/filtering_audio: switch to new decoding API

2017-03-30 Thread Matthieu Bouron
On Wed, Mar 29, 2017 at 04:31:47PM +0200, Matthieu Bouron wrote: > --- > doc/examples/filtering_audio.c | 42 > ++ > 1 file changed, 26 insertions(+), 16 deletions(-) > > diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c > index

[FFmpeg-devel] [PATCH] doc/examples/encode_audio: Favor a sample rate close to 44khz instead of the maximum sample rate

2017-03-30 Thread Michael Niedermayer
This is an example, people will copy and use this. The maximum supported is quite unreasonable as a default choice Signed-off-by: Michael Niedermayer --- doc/examples/encode_audio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

Re: [FFmpeg-devel] [PATCH v11] avformat/dashdec: add dash demuxer base version

2017-03-30 Thread Steven Liu
2017-03-30 18:46 GMT+08:00 wm4 : > On Thu, 30 Mar 2017 08:34:18 +0800 > Steven Liu wrote: > > > v2 fixed: > > 1. from autodetect to disabled > > 2. from camelCase code style to ffmpeg code style > > 3. from RepType to AVMediaType > > 4. fix variable

Re: [FFmpeg-devel] [PATCH] doc/examples/filtering_video: switch to new decoding API

2017-03-30 Thread wm4
On Thu, 30 Mar 2017 13:35:47 +0200 Matthieu Bouron wrote: > From e9e5b3e679a12fdd9495c53177ade51c3dee7ba2 Mon Sep 17 00:00:00 2001 > From: Matthieu Bouron > Date: Wed, 29 Mar 2017 14:58:01 +0200 > Subject: [PATCH]

Re: [FFmpeg-devel] [PATCH] fate: add owdenoise test

2017-03-30 Thread Michael Niedermayer
On Wed, Mar 29, 2017 at 06:09:57PM -0700, Thomas Turner wrote: > Reference file location: > > https://www.dropbox.com/s/zeq3wyqbjkvy8ny/filter-owdenoise-sample?dl=0 > > Signed-off-by: Thomas Turner > --- > tests/fate/filter-video.mak | 6 ++ > 1 file changed, 6

Re: [FFmpeg-devel] [PATCH 4/6] h264: don't re-assign H264Picture::mbaff between slices.

2017-03-30 Thread Ronald S. Bultje
Hi, On Wed, Mar 29, 2017 at 8:06 PM, Michael Niedermayer wrote: > On Wed, Mar 29, 2017 at 10:12:22AM -0400, Ronald S. Bultje wrote: > > The value must be identical between slices. (Maybe this needs an error > > path to inform caller if this fails?) > > --- > >

Re: [FFmpeg-devel] [PATCH] Build fix for MIPS

2017-03-30 Thread Ronald S. Bultje
Hi, On Thu, Mar 30, 2017 at 2:21 AM, wrote: > From: Shivraj Patil > > Signed-off-by: Shivraj Patil > --- > libavcodec/mips/hevcpred_mips.h |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

[FFmpeg-devel] [PATCH] h264: only assign H264Picture::mbaff for first slice.

2017-03-30 Thread Ronald S. Bultje
The value must be identical between slices, since mbaff depends on picture_structure and sps, both of which are checked to be identical to the first slice before this point. In practice, this silences some tsan warnings in fate-h264. --- libavcodec/h264_direct.c | 6 +- 1 file changed, 5

Re: [FFmpeg-devel] [PATCH] doc/examples/filtering_video: switch to new decoding API

2017-03-30 Thread Matthieu Bouron
On Wed, Mar 29, 2017 at 3:37 PM, wm4 wrote: > On Wed, 29 Mar 2017 15:03:55 +0200 > Matthieu Bouron wrote: > > > --- > > doc/examples/filtering_video.c | 32 ++-- > > 1 file changed, 26 insertions(+), 6 deletions(-) >

Re: [FFmpeg-devel] [PATCH] Added HEVC and Opus support to nut

2017-03-30 Thread Michael Niedermayer
On Tue, Mar 28, 2017 at 05:07:47PM -0400, Leo Izen wrote: > --- > libavformat/nut.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/libavformat/nut.c b/libavformat/nut.c > index 04776e249f..592fe4dc28 100644 > --- a/libavformat/nut.c > +++ b/libavformat/nut.c > @@ -42,6 +42,7 @@ const

Re: [FFmpeg-devel] [PATCH v11] avformat/dashdec: add dash demuxer base version

2017-03-30 Thread wm4
On Thu, 30 Mar 2017 08:34:18 +0800 Steven Liu wrote: > v2 fixed: > 1. from autodetect to disabled > 2. from camelCase code style to ffmpeg code style > 3. from RepType to AVMediaType > 4. fix variable typo > 5. change time value from uint32_t to uint64_t > 6. removed be

Re: [FFmpeg-devel] [PATCH] Added HEVC and Opus FourCCs to nut4cc.txt

2017-03-30 Thread Michael Niedermayer
On Wed, Mar 29, 2017 at 09:35:27PM -0400, Leo Izen wrote: > --- > docs/nut4cc.txt | 2 ++ > 1 file changed, 2 insertions(+) applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Breaking DRM is a little like attempting to break through a door even

Re: [FFmpeg-devel] [PATCH][RFC] avutil/spherical: add a flag to signal tiled/padded projections

2017-03-30 Thread Vittorio Giovara
On Wed, Mar 29, 2017 at 8:01 PM, James Almer wrote: > A new field is added to AVSphericalMapping for this purpose, > and is used by both Equirectangular and Cubemap projections. > This is a replacement for duplicate projection enums like > AV_SPHERICAL_EQUIRECTANGULAR_TILE,

Re: [FFmpeg-devel] [PATCH 1/3] avutil/spherical: add av_spherical_projection_name()

2017-03-30 Thread Benoit Fouet
Hi, On 29/03/2017 04:55, James Almer wrote: > Signed-off-by: James Almer > --- > doc/APIchanges| 3 +++ > libavutil/spherical.c | 15 +++ > libavutil/spherical.h | 9 + > 3 files changed, 27 insertions(+) > [...] > diff --git

[FFmpeg-devel] [PATCH] Build fix for MIPS

2017-03-30 Thread shivraj.patil
From: Shivraj Patil Signed-off-by: Shivraj Patil --- libavcodec/mips/hevcpred_mips.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mips/hevcpred_mips.h b/libavcodec/mips/hevcpred_mips.h index