Re: [FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Deti Fliegl
patch accepted, please apply. On 27.06.16 01:15, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 7 +-- libavdevice/decklink_common.h | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/libavdevice/decklink_common.cpp b/libavde

Re: [FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-26 Thread Roger Pack
could you post a copy of the compile failure for reference? On 6/26/16, Rick Kern wrote: > decklink_common.cpp includes a .cpp file from the DeckLink API which fails > to build because there are non-static functions in the included .cpp file. > This disables the missing-prototypes error so the fi

Re: [FFmpeg-devel] [PATCH v2] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-26 Thread Richard Kern
> On Jun 25, 2016, at 3:16 PM, Michael Niedermayer > wrote: > > On Sat, Jun 25, 2016 at 05:29:56PM +, Carl Eugen Hoyos wrote: >> Michael Niedermayer niedermayer.cc> writes: >> >>> why does this happen ? >> >> I thought it happens because FFmpeg include third-party >> files that do not c

Re: [FFmpeg-devel] release/3.1

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 03:36:33AM +0200, Michael Niedermayer wrote: > Hi all > > ive branched release/3.1 off from master > i will make the 3.1 release from HEAD of this branch tomorrow > If there are any last minute changes that should go in, thats your > very last chance to put them in ! 3.1 r

[FFmpeg-devel] [PATCH v3] lavd/decklink_common: Fix error caused by -Werror=missing-prototypes

2016-06-26 Thread Rick Kern
decklink_common.cpp includes a .cpp file from the DeckLink API which fails to build because there are non-static functions in the included .cpp file. This disables the missing-prototypes error so the file can be included. Signed-off-by: Rick Kern --- libavdevice/Makefile | 2 ++ 1 file changed,

Re: [FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Marton Balint
On Mon, 27 Jun 2016, Michael Niedermayer wrote: On Mon, Jun 27, 2016 at 01:15:45AM +0200, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 7 +-- libavdevice/decklink_common.h | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) i can conf

Re: [FFmpeg-devel] [PATCH] libopusenc: Add channel mapping family argument

2016-06-26 Thread Michael Graczyk
Michael, Thanks for your comments. On Sat, Jun 25, 2016 at 4:28 AM, Michael Niedermayer wrote: > yes, rereading this a bit > can you explain what is the difference between the mapping familiy > and he channel_layout we have ? The Opus channel mapping family and FFmpeg channel layout both provide

Re: [FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 01:15:45AM +0200, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavdevice/decklink_common.cpp | 7 +-- > libavdevice/decklink_common.h | 4 ++-- > 2 files changed, 7 insertions(+), 4 deletions(-) note, the commit that caused this is just in master, n

Re: [FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Michael Niedermayer
On Mon, Jun 27, 2016 at 01:15:45AM +0200, Marton Balint wrote: > Signed-off-by: Marton Balint > --- > libavdevice/decklink_common.cpp | 7 +-- > libavdevice/decklink_common.h | 4 ++-- > 2 files changed, 7 insertions(+), 4 deletions(-) i can confirm that fixes the build issue [...] -- Mi

[FFmpeg-devel] [PATCH] configure: remove -std= from c++ compilation

2016-06-26 Thread Rick Kern
Pulling -std=c99 into CXXFLAGS from CFLAGS causes a compile error with c++ files using clang on OS X. Adding -std=c++98 unconditionally to CXXFLAGS will generate a compile error on compilers that don't support the -std option. It works but is less readable if -std=c++98 is appended after -std=c99 w

[FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Marton Balint
Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 7 +-- libavdevice/decklink_common.h | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/libavdevice/decklink_common.cpp b/libavdevice/decklink_common.cpp index 3625673..bd5ab91 100644 --- a/libavdevice/

Re: [FFmpeg-devel] ffmpeg_vdpau: Re-add ability to ignore level check

2016-06-26 Thread Michael Niedermayer
On Tue, Jun 07, 2016 at 07:51:18PM +0100, Mark Thompson wrote: > Fixes ticket 5286. > > Uses the global -hwaccel_lax_profile_check option (may be misnamed > for this purpose, but it has the right spirit). > --- > Only compile tested (no hardware). > > Maybe -hwaccel_lax_profile_check should be re

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Richard Kern
> On Jun 26, 2016, at 6:20 PM, Michael Niedermayer > wrote: > > On Sun, Jun 26, 2016 at 06:00:41PM -0400, Richard Kern wrote: >> >>> On Jun 26, 2016, at 5:55 PM, Michael Niedermayer >>> wrote: >>> >>> On Sun, Jun 26, 2016 at 05:44:11PM -0400, Richard Kern wrote: > On Jun 26, 2016,

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 06:00:41PM -0400, Richard Kern wrote: > > > On Jun 26, 2016, at 5:55 PM, Michael Niedermayer > > wrote: > > > > On Sun, Jun 26, 2016 at 05:44:11PM -0400, Richard Kern wrote: > >> > >>> On Jun 26, 2016, at 5:26 PM, Michael Niedermayer > >>> wrote: > >>> > >>> On Sun,

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Richard Kern
> On Jun 26, 2016, at 5:55 PM, Michael Niedermayer > wrote: > > On Sun, Jun 26, 2016 at 05:44:11PM -0400, Richard Kern wrote: >> >>> On Jun 26, 2016, at 5:26 PM, Michael Niedermayer >>> wrote: >>> >>> On Sun, Jun 26, 2016 at 05:22:01PM -0400, Richard Kern wrote: > On Jun 26, 2016,

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 05:44:11PM -0400, Richard Kern wrote: > > > On Jun 26, 2016, at 5:26 PM, Michael Niedermayer > > wrote: > > > > On Sun, Jun 26, 2016 at 05:22:01PM -0400, Richard Kern wrote: > >> > >>> On Jun 26, 2016, at 5:10 PM, Michael Niedermayer > >>> wrote: > >>> > >>> On Sun,

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Richard Kern
> On Jun 26, 2016, at 5:26 PM, Michael Niedermayer > wrote: > > On Sun, Jun 26, 2016 at 05:22:01PM -0400, Richard Kern wrote: >> >>> On Jun 26, 2016, at 5:10 PM, Michael Niedermayer >>> wrote: >>> >>> On Sun, Jun 26, 2016 at 04:44:40PM -0400, Rick Kern wrote: Use c++98 standard instead

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 05:22:01PM -0400, Richard Kern wrote: > > > On Jun 26, 2016, at 5:10 PM, Michael Niedermayer > > wrote: > > > > On Sun, Jun 26, 2016 at 04:44:40PM -0400, Rick Kern wrote: > >> Use c++98 standard instead of c++11. > >> > >> Signed-off-by: Rick Kern > >> --- > >> configu

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 11:10:00PM +0200, Michael Niedermayer wrote: > On Sun, Jun 26, 2016 at 04:44:40PM -0400, Rick Kern wrote: > > Use c++98 standard instead of c++11. > > > > Signed-off-by: Rick Kern > > --- > > configure | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > dif

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Richard Kern
> On Jun 26, 2016, at 5:10 PM, Michael Niedermayer > wrote: > > On Sun, Jun 26, 2016 at 04:44:40PM -0400, Rick Kern wrote: >> Use c++98 standard instead of c++11. >> >> Signed-off-by: Rick Kern >> --- >> configure | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/con

Re: [FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 04:44:40PM -0400, Rick Kern wrote: > Use c++98 standard instead of c++11. > > Signed-off-by: Rick Kern > --- > configure | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure b/configure > index 19aea61..76d2d27 100755 > --- a/configure > +++

Re: [FFmpeg-devel] [PATCH] avformat/mov: parse rtmd track timecode

2016-06-26 Thread Paul B Mahol
On 6/25/16, Paul B Mahol wrote: > On 6/25/16, Clement Boesch wrote: >> On Sat, Jun 25, 2016 at 11:36:05AM +0200, Paul B Mahol wrote: >>> Hi, >>> >>> patch attached. >> >>> From fbf2d600e048a417183ab32fdb2e7e2bcf238071 Mon Sep 17 00:00:00 2001 >>> From: Paul B Mahol >>> Date: Sat, 25 Jun 2016 11:

[FFmpeg-devel] [PATCH] configure: use c++98 for c++ files

2016-06-26 Thread Rick Kern
Use c++98 standard instead of c++11. Signed-off-by: Rick Kern --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 19aea61..76d2d27 100755 --- a/configure +++ b/configure @@ -4529,7 +4529,7 @@ fi add_cppflags -D_ISOC99_SOURCE add_cxxfl

Re: [FFmpeg-devel] [FFmpeg-cvslog] lavd/decklink: Fix compile issue on OS X

2016-06-26 Thread Richard Kern
> On Jun 26, 2016, at 4:10 PM, James Almer wrote: > > On 6/23/2016 8:08 PM, Rick Kern wrote: >> Fixes #4124: Invalid argument '-std=c99' not allowed with 'C++/ObjC++' >> C++ files fail to compile. This adds '-std=c++11' to CXX_FLAGS to fix. >> >> Signed-off-by: Rick Kern >> --- >> common.mak |

[FFmpeg-devel] libavcodec/webp : fix return code check in lossy decoding

2016-06-26 Thread Martin Vignali
Hello, in attach patch to fix ret code check in webp lossy decoding (when files have alpha) before this patch, if an error occured during rgb decoding the return code was ignored. And a useless ret test was made after alpha decoding. after this patch, the return code of rgb is test before trying

[FFmpeg-devel] libavcodec/exr : rename variable in b44_uncompress func

2016-06-26 Thread Martin Vignali
Hello, in attach patch to rename variables use in b44_uncompress func to be more consistent, to the rest of ffmpeg code. also rename variable who was incorrectly named (named from french word). indexHG_x -> index_tl_x (tl for top left) pass exr fate-tests Martin Jokyo Images From ca4c7f2ce8ff

Re: [FFmpeg-devel] [FFmpeg-cvslog] lavd/decklink: Fix compile issue on OS X

2016-06-26 Thread James Almer
On 6/23/2016 8:08 PM, Rick Kern wrote: > Fixes #4124: Invalid argument '-std=c99' not allowed with 'C++/ObjC++' > C++ files fail to compile. This adds '-std=c++11' to CXX_FLAGS to fix. > > Signed-off-by: Rick Kern > --- > common.mak | 2 +- > configure | 1 + > 2 files changed, 2 insertions(+),

Re: [FFmpeg-devel] [PATCH] libavcodec/mmaldec.c: add interlaced_frame and format struct to AVFrame for deinterlacing

2016-06-26 Thread Jens Ziller
Am Sonntag, den 26.06.2016, 18:08 +0200 schrieb Hendrik Leppkes: > On Sun, Jun 26, 2016 at 5:12 PM, Jens Ziller wrote: > > > > Am Samstag, den 25.06.2016, 12:52 +0200 schrieb Michael > > Niedermayer: > > > > > > On Fri, Jun 24, 2016 at 06:27:38PM +0200, Jens Ziller wrote: > > > > > > > > > > >

Re: [FFmpeg-devel] fate/webp : add test for webp lossless rgb decoding

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 09:56:15PM +0200, Martin Vignali wrote: > 2016-06-25 21:52 GMT+02:00 Martin Vignali : > > > > > > > 2016-06-25 21:47 GMT+02:00 James Almer : > > > >> On 6/25/2016 4:43 PM, Martin Vignali wrote: > >> > Hello, > >> > > >> > In attach a patch to add a fate test for WebP lossle

Re: [FFmpeg-devel] fate/exr : add test for file with half and float channels

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 08:24:21PM +0200, Martin Vignali wrote: > Hello, > > In attach patch in order to add several tests for tile and scanline exr file > who have half and float channels. > > > It also cover compression in tile (except for piz) > and now cover the layer option of exr. > (reaso

Re: [FFmpeg-devel] fate/webp : add test for lossy files

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 12:52:00PM +0200, Martin Vignali wrote: > Hello, > > in attach a patch to add test for lossy decoding of webp. > > Compare with dwebp tool, the result of ffmpeg in yuv is exactly the same > than the official decoder. > > (trouble report in my previous email, concern rgb/

Re: [FFmpeg-devel] [PATCH 10/10] fate/hevc: add automatic bsf test

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:59PM -0500, Rodger Combs wrote: > --- > tests/fate/hevc.mak | 11 +++ > 1 file changed, 11 insertions(+) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If you fake or manipulate statistics in a paper in physics y

Re: [FFmpeg-devel] [PATCH 09/10] fate/aac: add automatic bsf test

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:58PM -0500, Rodger Combs wrote: > --- > tests/fate/aac.mak | 10 -- > 1 file changed, 8 insertions(+), 2 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB He who knows, does not speak. He who speaks, do

Re: [FFmpeg-devel] [PATCH 08/10] fate/h264: add automatic bsf test

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:57PM -0500, Rodger Combs wrote: > --- > tests/fate/h264.mak | 2 ++ > tests/ref/fate/h264-autobsf-mp4toannexb | 1 + > 2 files changed, 3 insertions(+) > create mode 100644 tests/ref/fate/h264-autobsf-mp4toannexb still LGTM [...] -- Michael

Re: [FFmpeg-devel] [PATCH 05/10] lavf/movenc: add deinit function

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:54PM -0500, Rodger Combs wrote: > --- > libavformat/movenc.c | 70 > ++-- > 1 file changed, 30 insertions(+), 40 deletions(-) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH 8/8] avdevice/decklink: add support for setting input packet timestamp source

2016-06-26 Thread Marton Balint
On Sun, 26 Jun 2016, Deti Fliegl wrote: Patch accepted, please apply. Thanks, I have applied the whole series with some minor fixes and an AVDEVICE micro version bump. Regards, Marton ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http:/

Re: [FFmpeg-devel] [PATCH 03/10] lavf/segment: add deinit function

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:52PM -0500, Rodger Combs wrote: > --- > libavformat/segment.c | 47 --- > 1 file changed, 20 insertions(+), 27 deletions(-) probably ok [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dic

Re: [FFmpeg-devel] [PATCH] libavcodec/mmaldec.c: add interlaced_frame and format struct to AVFrame for deinterlacing

2016-06-26 Thread Hendrik Leppkes
On Sun, Jun 26, 2016 at 5:12 PM, Jens Ziller wrote: > Am Samstag, den 25.06.2016, 12:52 +0200 schrieb Michael Niedermayer: >> On Fri, Jun 24, 2016 at 06:27:38PM +0200, Jens Ziller wrote: >> > >> > Hello, >> > >> > deinterlacing need frame->interlaced_frame and format struct. This >> > patch added

Re: [FFmpeg-devel] [PATCH 01/10] lavf: add a flag to enable/disable automatic bitstream filtering

2016-06-26 Thread Michael Niedermayer
On Sat, Jun 25, 2016 at 04:01:50PM -0500, Rodger Combs wrote: > This is mostly useful for muxers that wrap other muxers, such as dashenc > and segment. The actual duplicated bitstream filtering is largely harmless, > but delaying the header can cause problems when the muxer intended the header > to

Re: [FFmpeg-devel] [PATCH] libavcodec/mmaldec.c: add interlaced_frame and format struct to AVFrame for deinterlacing

2016-06-26 Thread Jens Ziller
Am Samstag, den 25.06.2016, 12:52 +0200 schrieb Michael Niedermayer: > On Fri, Jun 24, 2016 at 06:27:38PM +0200, Jens Ziller wrote: > > > > Hello, > > > > deinterlacing need frame->interlaced_frame and format struct. This > > patch added this to AVFrame. > > > > Regards Jens. > > > >  mmaldec.c

Re: [FFmpeg-devel] [PATCH] tests/checkasm/pixblockdsp: Test only aligned by 8 diff/get pixels

2016-06-26 Thread Hendrik Leppkes
On Sun, Jun 26, 2016 at 11:16 AM, Michael Niedermayer wrote: > They are documented as requiring 8 byte aligned source > > Signed-off-by: Michael Niedermayer > --- > tests/checkasm/pixblockdsp.c |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/checkasm/pixbloc

[FFmpeg-devel] fate/webp : add test for lossy files

2016-06-26 Thread Martin Vignali
Hello, in attach a patch to add test for lossy decoding of webp. Compare with dwebp tool, the result of ffmpeg in yuv is exactly the same than the official decoder. (trouble report in my previous email, concern rgb/rgba output (because the filtering yuv420 -> yuv444 of libwebp is not implemente

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-26 Thread Muhammad Faiz
On Sun, Jun 26, 2016 at 3:22 PM, Paul B Mahol wrote: > On 6/26/16, Muhammad Faiz wrote: >> On Sun, Jun 26, 2016 at 2:30 PM, Paul B Mahol wrote: >>> On 6/26/16, Carl Eugen Hoyos wrote: Muhammad Faiz gmail.com> writes: > I think it's not because of bit-exact problem. > But beca

[FFmpeg-devel] [PATCH] tests/checkasm/pixblockdsp: Test only aligned by 8 diff/get pixels

2016-06-26 Thread Michael Niedermayer
They are documented as requiring 8 byte aligned source Signed-off-by: Michael Niedermayer --- tests/checkasm/pixblockdsp.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/checkasm/pixblockdsp.c b/tests/checkasm/pixblockdsp.c index 66bfdb7..28ee500 100644 --- a/te

Re: [FFmpeg-devel] [PATCH 8/8] avdevice/decklink: add support for setting input packet timestamp source

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/indevs.texi | 8 ++ libavdevice/decklink_common.h | 2 ++ libavdevice/decklink_common_c.h | 9 ++ libavdevice/decklink_dec.cpp| 62 +++

Re: [FFmpeg-devel] [PATCH 4/8] avdevice/decklink: factorize device finder function

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 29 + libavdevice/decklink_common.h | 1 + libavdevice/decklink_dec.cpp| 29 - libavdevice/dec

Re: [FFmpeg-devel] [PATCH 7/8] avdevice/decklink: add support for audio and video input selection

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/indevs.texi | 10 ++ libavdevice/decklink_common.cpp | 43 + libavdevice/decklink_common.h | 21 lib

Re: [FFmpeg-devel] [PATCH 6/8] avdevice/decklink: add support for setting duplex mode

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: This patch also makes BlackMagic drivers v10.6.1 a hard requirement. Signed-off-by: Marton Balint --- configure | 3 ++- doc/indevs.texi | 4 libavdevice/decklink_common.cpp | 33

Re: [FFmpeg-devel] [PATCH 5/8] avdevice/decklink: always free decklink resources on error

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 18 -- libavdevice/decklink_enc.cpp | 12 ++-- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/libavdevice/decklink_dec

Re: [FFmpeg-devel] [PATCH 3/8] avdevice/decklink: remove unused itermode iterators

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 9 - libavdevice/decklink_enc.cpp | 8 2 files changed, 17 deletions(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.c

Re: [FFmpeg-devel] [PATCH 2/8] avdevice/decklink: factorize cleanup function to common code

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 13 + libavdevice/decklink_common.h | 1 + libavdevice/decklink_dec.cpp| 11 ++- libavdevice/decklink_enc.cpp| 10 ++

Re: [FFmpeg-devel] [PATCH 1/8] avdevice/decklink_dec: fix bitrate calculations

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 1c305f3..3b5d4be 100644 --

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/dualinput: Add support to skip initial unpaired frames

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 10:23:35AM +0200, Paul B Mahol wrote: > On 6/26/16, Michael Niedermayer wrote: > > On Sun, Jun 26, 2016 at 09:31:33AM +0200, Paul B Mahol wrote: > >> On 6/26/16, Michael Niedermayer wrote: > >> > On Sat, Jun 25, 2016 at 12:43:35AM +0200, Michael Niedermayer wrote: > >> >>

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/dualinput: Add support to skip initial unpaired frames

2016-06-26 Thread Paul B Mahol
On 6/26/16, Michael Niedermayer wrote: > On Sun, Jun 26, 2016 at 09:31:33AM +0200, Paul B Mahol wrote: >> On 6/26/16, Michael Niedermayer wrote: >> > On Sat, Jun 25, 2016 at 12:43:35AM +0200, Michael Niedermayer wrote: >> >> Signed-off-by: Michael Niedermayer >> >> --- >> >> libavfilter/dualinp

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-26 Thread Paul B Mahol
On 6/26/16, Muhammad Faiz wrote: > On Sun, Jun 26, 2016 at 2:30 PM, Paul B Mahol wrote: >> On 6/26/16, Carl Eugen Hoyos wrote: >>> Muhammad Faiz gmail.com> writes: >>> I think it's not because of bit-exact problem. But because fate probes supported formats (with libavfilter/tests

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/dualinput: Add support to skip initial unpaired frames

2016-06-26 Thread Michael Niedermayer
On Sun, Jun 26, 2016 at 09:31:33AM +0200, Paul B Mahol wrote: > On 6/26/16, Michael Niedermayer wrote: > > On Sat, Jun 25, 2016 at 12:43:35AM +0200, Michael Niedermayer wrote: > >> Signed-off-by: Michael Niedermayer > >> --- > >> libavfilter/dualinput.c |3 +++ > >> libavfilter/dualinput.h |

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-26 Thread Muhammad Faiz
On Sun, Jun 26, 2016 at 2:30 PM, Paul B Mahol wrote: > On 6/26/16, Carl Eugen Hoyos wrote: >> Muhammad Faiz gmail.com> writes: >> >>> I think it's not because of bit-exact problem. >>> But because fate probes supported formats (with >>> libavfilter/tests/filtfmts) >>> On BE machine, code with na

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-26 Thread Hendrik Leppkes
On Sun, Jun 26, 2016 at 9:30 AM, Paul B Mahol wrote: > On 6/26/16, Carl Eugen Hoyos wrote: >> Muhammad Faiz gmail.com> writes: >> >>> I think it's not because of bit-exact problem. >>> But because fate probes supported formats (with >>> libavfilter/tests/filtfmts) >>> On BE machine, code with na

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/dualinput: Add support to skip initial unpaired frames

2016-06-26 Thread Paul B Mahol
On 6/26/16, Michael Niedermayer wrote: > On Sat, Jun 25, 2016 at 12:43:35AM +0200, Michael Niedermayer wrote: >> Signed-off-by: Michael Niedermayer >> --- >> libavfilter/dualinput.c |3 +++ >> libavfilter/dualinput.h |1 + >> 2 files changed, 4 insertions(+) > > applied > > [...] > -- >

Re: [FFmpeg-devel] [PATCH] avfilter/vf_rotate: add >8 bit depth support

2016-06-26 Thread Paul B Mahol
On 6/26/16, Carl Eugen Hoyos wrote: > Muhammad Faiz gmail.com> writes: > >> I think it's not because of bit-exact problem. >> But because fate probes supported formats (with >> libavfilter/tests/filtfmts) >> On BE machine, code with native formats will generate error >> because fate-ref contains