[FFmpeg-devel] [PATCH] Changelog: mention more ported filters

2015-02-11 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- Changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changelog b/Changelog index ca5e089..49b4793 100644 --- a/Changelog +++ b/Changelog @@ -18,8 +18,10 @@ version : - showpalette filter - Twofish symmetric block cipher - Support DNx100 (960x720@8) +-

[FFmpeg-devel] [PATCH] avformat/isom: add X-Com Radvision fourcc

2015-02-11 Thread Paul B Mahol
Fixes bug #4303. Signed-off-by: Paul B Mahol --- libavformat/isom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/isom.c b/libavformat/isom.c index 68ddd32..fcd696a 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -173,6 +173,7 @@ const AVCodecTag ff_codec_movvideo_t

Re: [FFmpeg-devel] [PATCH] Changelog: mention more ported filters

2015-02-11 Thread Michael Niedermayer
On Wed, Feb 11, 2015 at 09:36:17AM +, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > Changelog | 2 ++ > 1 file changed, 2 insertions(+) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB During times of universal deceit, telling the t

Re: [FFmpeg-devel] [PATCH] avformat/isom: add X-Com Radvision fourcc

2015-02-11 Thread Michael Niedermayer
On Wed, Feb 11, 2015 at 09:47:10AM +, Paul B Mahol wrote: > Fixes bug #4303. > > Signed-off-by: Paul B Mahol > --- > libavformat/isom.c | 1 + > 1 file changed, 1 insertion(+) LGTM thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB What does censorsh

Re: [FFmpeg-devel] rtmp patch

2015-02-11 Thread Michael Niedermayer
On Tue, Feb 10, 2015 at 04:48:24PM -0600, Cary Tetrick wrote: > Hello, > I have a patch I'd like to submit. One part is in the > *git://git.ffmpeg.org/rtmpdump > repository, and the other in the regular > ffmpeg repository (librtmp.c).* > *what is the correct way to

[FFmpeg-devel] [PATCH]Silence deprecation warnings when compiling qtkit

2015-02-11 Thread Carl Eugen Hoyos
Hi! Attached patch silences many warnings that clang prints when compiling libavdevice/qtkit.o. I don't think the warnings are very helpful. Please comment, Carl Eugen diff --git a/libavdevice/qtkit.m b/libavdevice/qtkit.m index aa8fa16..dfde28d 100644 --- a/libavdevice/qtkit.m +++ b/libavdevic

[FFmpeg-devel] [PATCH]Silence warnings when compiling avfoundation

2015-02-11 Thread Carl Eugen Hoyos
Hi! Attached patches fix different warnings when compiling libavdevice/avfoundation.o The first silences C90 warnings about mixed declaration and functions when using gcc, the second silences many "undefined" warnings when compiling for ios. Please comment, Carl Eugen diff --git a/libavdevice/

Re: [FFmpeg-devel] [PATCH] ffmpeg: Print negative times like "-00:05:01.22" instead of "00:-5:-1.-22"

2015-02-11 Thread Michael Niedermayer
On Tue, Feb 10, 2015 at 10:33:42PM +0100, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > ffmpeg.c |6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Those who are to

Re: [FFmpeg-devel] [PATCH] libavfilter OpenCL unsharpen filter optimization: substitute N^2 filter computation with 2N+C i7-4770K luma 21% faster, chroma 18% faster A10-7850K luma 42% faster, chroma 3

2015-02-11 Thread Michael Niedermayer
On Tue, Feb 10, 2015 at 12:21:05PM -0800, Alexey Titov wrote: > --- > libavfilter/unsharp.h | 4 ++ > libavfilter/unsharp_opencl.c| 77 --- > libavfilter/unsharp_opencl_kernel.h | 122 > ++-- > 3 files changed, 148 inser

[FFmpeg-devel] [PATCH] cmdutils: fix success path

2015-02-11 Thread Jean Delvare
Since commit 934f2d2f5c16df8aad9f401a9fd842b5d9a78b11, cmdutils_read_file() prints a confusing message on success: IO error: Success This is because the error message is printed on the success path as well. Add the missing condition so that it is only printed on error. Signed-off-by: Jean Delvar

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-02-11 Thread Christian Suloway
bumping this thread On 2/3/15, 9:54 AM, "Christian Suloway" wrote: >Updated patch is attached. > >On 1/10/15, 3:06 PM, "Michael Niedermayer" wrote: >> >>i got it working after a few tries but >>please provide an example that works and documentation that describes >>the feature in a way sufficie

Re: [FFmpeg-devel] [PATCH] cmdutils: fix success path

2015-02-11 Thread Michael Niedermayer
On Wed, Feb 11, 2015 at 02:18:27PM +0100, Jean Delvare wrote: > Since commit 934f2d2f5c16df8aad9f401a9fd842b5d9a78b11, > cmdutils_read_file() prints a confusing message on success: > > IO error: Success > > This is because the error message is printed on the success path as > well. Add the missin

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2015-02-11 Thread Michael Niedermayer
On Wed, Feb 11, 2015 at 03:06:42PM +, Christian Suloway wrote: > bumping this thread > > On 2/3/15, 9:54 AM, "Christian Suloway" > wrote: > > >Updated patch is attached. > > > >On 1/10/15, 3:06 PM, "Michael Niedermayer" wrote: > >> > >>i got it working after a few tries but > >>please provi

[FFmpeg-devel] [PATCH] Socket options for librtmp

2015-02-11 Thread Cary Tetrick
This reimplements a change authored by Brian Brice 2015-01-19 "librtmp: Allow changing the socket send buffer size" (Brian is aware of this change). also negates change by Michael Niedermayer 2015-01-23 10:45:35 "avformat/librtmp: Fix build with --disable-network --enable-librtmp" because it is

[FFmpeg-devel] [PATCH] x86/hevc_mc: optimize AVX2 mc functions

2015-02-11 Thread James Almer
Before 40766 decicycles in ff_hevc_put_hevc_qpel_h64_8_avx2, 8192 runs, 0 skips After 37975 decicycles in ff_hevc_put_hevc_qpel_h64_8_avx2, 8192 runs, 0 skips Signed-off-by: James Almer --- libavcodec/x86/hevc_mc.asm | 32 1 file changed, 12 insertions(+), 20 de