Re: [FFmpeg-devel] [PATCH] build: allow for PKG_CONFIG_LIBDIR

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 01:07:04PM +0200, Ingo Brückl wrote: Michael Niedermayer wrote on Fri, 29 May 2015 12:29:24 +0200: On Thu, May 28, 2015 at 03:14:42PM +0200, Ingo Brückl wrote: The pkgconfig files should be installed in PKG_CONFIG_LIBDIR if defined, rather than in LIBDIR. isnt

[FFmpeg-devel] [PATCH] build: add configure option pkgconfigdir

2015-05-29 Thread Ingo Brückl
This allows the user to override the directory for the installation of the pkg-config files (from the default /usr/lib/pkgconfig). It follows the usual behaviour of Makefiles generated by automake. Signed-off-by: Ingo Brückl i...@wupperonline.de diff --git a/configure b/configure old mode

Re: [FFmpeg-devel] [PATCH] build: allow for PKG_CONFIG_LIBDIR

2015-05-29 Thread Michael Niedermayer
On Thu, May 28, 2015 at 03:14:42PM +0200, Ingo Brückl wrote: The pkgconfig files should be installed in PKG_CONFIG_LIBDIR if defined, rather than in LIBDIR. isnt it possible for PKG_CONFIG_LIBDIR to contain multiple : seperated directories ? if so i suspect the code below would break but i

Re: [FFmpeg-devel] [PATCH] build: allow for PKG_CONFIG_LIBDIR

2015-05-29 Thread Ingo Brückl
Michael Niedermayer wrote on Fri, 29 May 2015 12:29:24 +0200: On Thu, May 28, 2015 at 03:14:42PM +0200, Ingo Brückl wrote: The pkgconfig files should be installed in PKG_CONFIG_LIBDIR if defined, rather than in LIBDIR. isnt it possible for PKG_CONFIG_LIBDIR to contain multiple : seperated

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 05:05:08AM +0200, Stephan Holljes wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com --- libavformat/http.c | 8 1 file changed, 8 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 4f6716a..3fad43d 100644 ---

Re: [FFmpeg-devel] [PATCH] avformat/concatdec: Enable auto_convert by default

2015-05-29 Thread Michael Niedermayer
On Wed, May 27, 2015 at 11:57:43AM +0200, Stefano Sabatini wrote: On date Wednesday 2015-05-27 10:46:52 +0200, Nicolas George encoded: Le septidi 7 prairial, an CCXXIII, Michael Niedermayer a écrit : Users have no means to find out from a failure how to make it work or is it preferred to

[FFmpeg-devel] configure script and avfilter/showcqt

2015-05-29 Thread Muhammad Faiz
Dear, It seems that showcqt code depends on avcodec/fft, but that dependency is missing in configure script (can be checked with --disable-fft, showspectrum is disabled, but showcqt is still enabled). Because I do'nt know too much how configure script works, i can't send patch. Someone who knows

Re: [FFmpeg-devel] [PATCH] mov: fix DTS calculation for samples with negative stts duration

2015-05-29 Thread Andreas Cadhalpun
On 29.05.2015 05:03, Michael Niedermayer wrote: On Thu, May 28, 2015 at 06:49:02PM +0200, Andreas Cadhalpun wrote: @@ -2522,7 +2519,27 @@ static void mov_build_index(MOVContext *mov, AVStream *st) current_offset += sample_size; stream_size += sample_size;

Re: [FFmpeg-devel] [PATCH] build: add configure option pkgconfigdir

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 01:52:53PM +0200, Ingo Brückl wrote: This allows the user to override the directory for the installation of the pkg-config files (from the default /usr/lib/pkgconfig). It follows the usual behaviour of Makefiles generated by automake. Signed-off-by: Ingo Brückl

[FFmpeg-devel] [PATCH] ffmpeg_dxva2: call GetDesktopWindow() in place of GetShellWindow()

2015-05-29 Thread Stefano Sabatini
This fixes compilation with latest MinGW32 and MSYS2/MinGW64. --- ffmpeg_dxva2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg_dxva2.c b/ffmpeg_dxva2.c index 741c55b..6b20195 100644 --- a/ffmpeg_dxva2.c +++ b/ffmpeg_dxva2.c @@ -364,7 +364,7 @@ static int

Re: [FFmpeg-devel] [PATCH] build: add configure option pkgconfigdir

2015-05-29 Thread Andreas Cadhalpun
On 29.05.2015 13:52, Ingo Brückl wrote: This allows the user to override the directory for the installation of the pkg-config files (from the default /usr/lib/pkgconfig). It follows the usual behaviour of Makefiles generated by automake. Signed-off-by: Ingo Brückl i...@wupperonline.de

[FFmpeg-devel] [PATCH 09/14] libavcodec: Implementation of AAC_fixed_decoder (SBR-module) [3/3]

2015-05-29 Thread Nedeljko Babic
From: Djordje Pesut djordje.pe...@imgtec.com Add fixed poind code. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/Makefile | 5 +- libavcodec/aac.h | 52 +--- libavcodec/aac_defines.h | 78 ++ libavcodec/aacdec_template.c | 14 +-

[FFmpeg-devel] [PATCH 12/14] libavcodec: Minor macro polishing

2015-05-29 Thread Nedeljko Babic
Use macros from aac_defines.h for adding suffixes instead of local macros. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/cbrt_tablegen.h | 5 ++--- libavcodec/cbrt_tablegen_template.c| 2 +- libavcodec/sinewin.h | 17 +

Re: [FFmpeg-devel] [RFC] DXVA2 decoding and FFmpeg

2015-05-29 Thread Stefano Sabatini
On date Thursday 2015-05-28 18:02:34 -0300, James Almer encoded: On 28/05/15 2:39 PM, Stefano Sabatini wrote: From f3b4e77dd9dd299aba8f4fa83625d2b61b243c3c Mon Sep 17 00:00:00 2001 From: Stefano Sabatini stefa...@gmail.com Date: Fri, 15 May 2015 18:58:17 +0200 Subject: [PATCH]

[FFmpeg-devel] [PATCH 02/14] libavutil: Add new fixed dsp functions.

2015-05-29 Thread Nedeljko Babic
Added functions needed for implementation of fixed point aac dec. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavutil/fixed_dsp.c | 60 +++ libavutil/fixed_dsp.h | 53 + 2 files changed,

[FFmpeg-devel] Implementation of AAC decoder (fixed point)

2015-05-29 Thread Nedeljko Babic
Changes to libavutil are moved and split in two new patches. Changes are made so the code is buildable after every patch is applied, so some patches became redundant. Most of the changes requested in last review implemented. The documentation about implementation of butterflies_fixed is not

[FFmpeg-devel] [PATCH 04/14] libavcodec: Implementation of AAC_fixed_decoder (LC-module) [2/4]

2015-05-29 Thread Nedeljko Babic
From: Jovan Zelincevic jovan.zelince...@imgtec.com Add fixed point implementation of functions for generating tables Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/aac.h | 23 ++ libavcodec/aacdectab.h | 34 +-- libavcodec/aactab.c

[FFmpeg-devel] [PATCH 06/14] libavcodec: Implementation of AAC_fixed_decoder (LC-module) [4/4]

2015-05-29 Thread Nedeljko Babic
From: Jovan Zelincevic jovan.zelince...@imgtec.com Build system modified Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- configure | 1 + libavcodec/Makefile | 13 ++--- libavcodec/aacdec.c | 1 - libavcodec/aacdec_fixed.c | 1 -

[FFmpeg-devel] [PATCH 11/14] libavcodec: Implementation of AAC_fixed_decoder (PS-module) [2/2]

2015-05-29 Thread Nedeljko Babic
From: Djordje Pesut djordje.pe...@imgtec.com Add fixed point implementation. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/Makefile | 14 ++- libavcodec/aac_defines.h | 36 ++ libavcodec/aacps.c| 255

[FFmpeg-devel] [PATCH 13/14] tests: Add aac_fixed decoder test

2015-05-29 Thread Nedeljko Babic
Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- tests/fate/aac.mak | 58 +- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/tests/fate/aac.mak b/tests/fate/aac.mak index 34823be..7ebec45 100644 --- a/tests/fate/aac.mak

[FFmpeg-devel] [PATCH 14/14] Edit documentation and versioning

2015-05-29 Thread Nedeljko Babic
From: Jovan Zelincevic jovan.zelince...@imgtec.com Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- Changelog | 1 + doc/general.texi| 2 +- doc/mips.txt| 4 libavutil/version.h | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog

[FFmpeg-devel] [PATCH 10/14] libavcodec: Implementation of AAC_fixed_decoder (PS-module) [1/2]

2015-05-29 Thread Nedeljko Babic
From: Jovan Zelincevic jovan.zelince...@imgtec.com Add fixed point implementation of functions for generating tables. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/aacps_fixed_tablegen.c| 24 +++ libavcodec/aacps_fixed_tablegen.h| 402

[FFmpeg-devel] [PATCH 08/14] libavcodec: Implementation of AAC_fixed_decoder (SBR-module) [2/3]

2015-05-29 Thread Nedeljko Babic
From: Jovan Zelincevic jovan.zelince...@imgtec.com Create tables for fixed point code. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/Makefile | 5 +- libavcodec/aacsbr_fixed_tablegen.c | 40 +++ libavcodec/aacsbr_fixed_tablegen.h | 32 +++

[FFmpeg-devel] [PATCH 05/14] libavcodec: Implementation of AAC_fixed_decoder (LC-module) [3/4]

2015-05-29 Thread Nedeljko Babic
From: Djordje Pesut djordje.pe...@imgtec.com Add fixed point implementation Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavcodec/aac.h | 80 ++-- libavcodec/aacdec.c | 5 + libavcodec/aacdec_fixed.c| 444

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 4:19 PM, wm4 nfx...@googlemail.com wrote: On Fri, 29 May 2015 16:12:27 +0200 Stephan Holljes klaxa1...@googlemail.com wrote: Hi, On Fri, May 29, 2015 at 11:54 AM, Michael Niedermayer michae...@gmx.at wrote: On Fri, May 29, 2015 at 05:05:08AM +0200, Stephan Holljes

Re: [FFmpeg-devel] [PATCH] ffmpeg_dxva2: call GetDesktopWindow() in place of GetShellWindow()

2015-05-29 Thread Stefano Sabatini
On date Friday 2015-05-29 16:32:11 +0200, Hendrik Leppkes encoded: On Fri, May 29, 2015 at 3:21 PM, Stefano Sabatini stefa...@gmail.com wrote: This fixes compilation with latest MinGW32 and MSYS2/MinGW64. --- ffmpeg_dxva2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [FFmpeg-devel] [RFC] DXVA2 decoding and FFmpeg

2015-05-29 Thread Timothy Gu
On Fri, May 29, 2015 at 03:49:22PM +0200, Stefano Sabatini wrote: @@ -405,3 +406,16 @@ int av_image_copy_to_buffer(uint8_t *dst, int dst_size, return size; } + +void av_image_copy_plane_from_uswc(uint8_t *dst, size_t dst_linesize, +const uint8_t *src,

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 4:34 PM, Stephan Holljes klaxa1...@googlemail.com wrote: On Fri, May 29, 2015 at 4:19 PM, wm4 nfx...@googlemail.com wrote: On Fri, 29 May 2015 16:12:27 +0200 Stephan Holljes klaxa1...@googlemail.com wrote: Hi, On Fri, May 29, 2015 at 11:54 AM, Michael Niedermayer

Re: [FFmpeg-devel] [PATCH] mov: fix DTS calculation for samples with negative stts duration

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 03:27:36PM +0200, Andreas Cadhalpun wrote: On 29.05.2015 05:03, Michael Niedermayer wrote: On Thu, May 28, 2015 at 06:49:02PM +0200, Andreas Cadhalpun wrote: @@ -2522,7 +2519,27 @@ static void mov_build_index(MOVContext *mov, AVStream *st)

Re: [FFmpeg-devel] [PATCH] ffmpeg_dxva2: call GetDesktopWindow() in place of GetShellWindow()

2015-05-29 Thread James Almer
On 29/05/15 12:40 PM, Stefano Sabatini wrote: On date Friday 2015-05-29 16:32:11 +0200, Hendrik Leppkes encoded: On Fri, May 29, 2015 at 3:21 PM, Stefano Sabatini stefa...@gmail.com wrote: This fixes compilation with latest MinGW32 and MSYS2/MinGW64. --- ffmpeg_dxva2.c | 2 +- 1 file

Re: [FFmpeg-devel] [PATCH] ffmpeg_dxva2: call GetDesktopWindow() in place of GetShellWindow()

2015-05-29 Thread wm4
On Fri, 29 May 2015 17:40:29 +0200 Stefano Sabatini stefa...@gmail.com wrote: I agree, I plan to update the wiki soon, but note that the patch is also required when compiling with MSYS2+MinGW64. But why? ___ ffmpeg-devel mailing list

Re: [FFmpeg-devel] [PATCH 02/14] libavutil: Add new fixed dsp functions.

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 03:46:21PM +0200, Nedeljko Babic wrote: Added functions needed for implementation of fixed point aac dec. Signed-off-by: Nedeljko Babic nedeljko.ba...@imgtec.com --- libavutil/fixed_dsp.c | 60 +++

Re: [FFmpeg-devel] [PATCH v2] build: add configure option pkgconfigdir

2015-05-29 Thread Andreas Cadhalpun
On 29.05.2015 16:08, Ingo Brückl wrote: This allows the user to override the directory for the installation of the pkg-config files (from the default LIBDIR/pkgconfig). It follows the usual behaviour of Makefiles generated by automake. Signed-off-by: Ingo Brückl i...@wupperonline.de

Re: [FFmpeg-devel] [PATCH] * mpegts demuxer should recognize private streams

2015-05-29 Thread Michael Niedermayer
On Sat, May 30, 2015 at 03:54:18AM +0200, Wolfgang Lorenz wrote: Indeed, this does work too. And it even doesn't break any fates... At least on my machine. --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index

Re: [FFmpeg-devel] [PATCH] * mpegts demuxer should recognize private streams

2015-05-29 Thread Wolfgang Lorenz
Indeed, this does work too. And it even doesn't break any fates... At least on my machine. --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index aeb2335..cafcc92 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c

Re: [FFmpeg-devel] [PATCH] mov: fix DTS calculation for samples with negative stts duration

2015-05-29 Thread Andreas Cadhalpun
On 29.05.2015 18:52, Michael Niedermayer wrote: On Fri, May 29, 2015 at 03:27:36PM +0200, Andreas Cadhalpun wrote: mov.c | 29 +++-- 1 file changed, 23 insertions(+), 6 deletions(-) d6041f950d69f7b2717d4df347cf0f6db4ccdd58

Re: [FFmpeg-devel] configure script and avfilter/showcqt

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 08:24:52PM +0700, Muhammad Faiz wrote: Dear, It seems that showcqt code depends on avcodec/fft, but that dependency is missing in configure script (can be checked with --disable-fft, showspectrum is disabled, but showcqt is still enabled). Because I do'nt know too much

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Stephan Holljes
On Fri, May 29, 2015 at 7:10 PM, Nicolas George geo...@nsup.org wrote: Le decadi 10 prairial, an CCXXIII, Stephan Holljes a écrit : From 33a479200b9a941d0783d941c6ea68f8b85cc4de Mon Sep 17 00:00:00 2001 From: Stephan Holljes klaxa1...@googlemail.com Date: Fri, 29 May 2015 16:47:11 +0200

[FFmpeg-devel] [PATCH] * mpegts demuxer should recognize private streams

2015-05-29 Thread Wolfgang Lorenz
The patch addresses this problem: https://lists.ffmpeg.org/pipermail/libav-user/2014-September/007475.html What it does is this: * Except stream type 0x06 as a private stream. (AVMEDIA_TYPE_DATA, AV_CODEC_ID_NONE) (It was necessary to convince mpegts_set_stream_info(), that AV_CODEC_ID_NONE

Re: [FFmpeg-devel] [PATCH] * mpegts demuxer should recognize private streams

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 10:45:47PM +0200, Wolfgang Lorenz wrote: The patch addresses this problem: https://lists.ffmpeg.org/pipermail/libav-user/2014-September/007475.html What it does is this: * Except stream type 0x06 as a private stream. (AVMEDIA_TYPE_DATA, AV_CODEC_ID_NONE) (It

Re: [FFmpeg-devel] [PATCH] lavf/tls: Support Secure Transport

2015-05-29 Thread Michael Niedermayer
On Thu, May 28, 2015 at 02:46:16PM -0500, Rodger Combs wrote: --- configure | 14 +- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/avio.c| 4 +- libavformat/tls.h | 2 +-

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread Nicolas George
Le decadi 10 prairial, an CCXXIII, Stephan Holljes a écrit : From 33a479200b9a941d0783d941c6ea68f8b85cc4de Mon Sep 17 00:00:00 2001 From: Stephan Holljes klaxa1...@googlemail.com Date: Fri, 29 May 2015 16:47:11 +0200 Subject: [PATCH] lavf/http: Parse and set HTTP method when listening on

Re: [FFmpeg-devel] [PATCH v2] build: add configure option pkgconfigdir

2015-05-29 Thread Michael Niedermayer
On Fri, May 29, 2015 at 07:44:21PM +0200, Andreas Cadhalpun wrote: On 29.05.2015 16:08, Ingo Brückl wrote: This allows the user to override the directory for the installation of the pkg-config files (from the default LIBDIR/pkgconfig). It follows the usual behaviour of Makefiles

Re: [FFmpeg-devel] [PATCH][GSoC] lavf/http: Parse and set HTTP method when listening on HTTP(S)

2015-05-29 Thread wm4
On Fri, 29 May 2015 16:12:27 +0200 Stephan Holljes klaxa1...@googlemail.com wrote: Hi, On Fri, May 29, 2015 at 11:54 AM, Michael Niedermayer michae...@gmx.at wrote: On Fri, May 29, 2015 at 05:05:08AM +0200, Stephan Holljes wrote: Signed-off-by: Stephan Holljes klaxa1...@googlemail.com

[FFmpeg-devel] [PATCH v2] build: add configure option pkgconfigdir

2015-05-29 Thread Ingo Brückl
This allows the user to override the directory for the installation of the pkg-config files (from the default LIBDIR/pkgconfig). It follows the usual behaviour of Makefiles generated by automake. Signed-off-by: Ingo Brückl i...@wupperonline.de diff --git a/configure b/configure index

Re: [FFmpeg-devel] [PATCH] ffmpeg_dxva2: call GetDesktopWindow() in place of GetShellWindow()

2015-05-29 Thread Hendrik Leppkes
On Fri, May 29, 2015 at 3:21 PM, Stefano Sabatini stefa...@gmail.com wrote: This fixes compilation with latest MinGW32 and MSYS2/MinGW64. --- ffmpeg_dxva2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg_dxva2.c b/ffmpeg_dxva2.c index 741c55b..6b20195 100644 ---

Re: [FFmpeg-devel] [PATCH] * mpegts demuxer should recognize private streams

2015-05-29 Thread Hendrik Leppkes
On Fri, May 29, 2015 at 10:45 PM, Wolfgang Lorenz wl-c...@gmx.de wrote: The patch addresses this problem: https://lists.ffmpeg.org/pipermail/libav-user/2014-September/007475.html What it does is this: * Except stream type 0x06 as a private stream. (AVMEDIA_TYPE_DATA, AV_CODEC_ID_NONE)