Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 10:01:38 AM Reimar Döffinger wrote: > > Interestingly, the --pkg-config=/bin/true workaround needs you to be > careful to actually put libraries in --extra-libs, not --extra-ldflags or > the check will fail for static libraries, which is not completely > obvious/100% matching

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 5:02:28 AM Reimar Döffinger wrote: > > I don't care much, but I still find not having to use pkg-config > somewhat more convenient in a cross-compilation environment where > you don't want to install all dependencies just to make it work with > pkg-config (or alternatively ma

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Timothy Gu
On Wed Dec 31 2014 at 5:11:37 AM Clément Bœsch wrote: > > [1]: there is a glib2 free version of pkg-config @ > http://sourceforge.net/projects/pkgconfiglite/files/ Another one (a reimplementation, not just a de-glibed version of pkg-config): https://github.com/pkgconf/pkgconf Timothy _

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Matt Oliver
On 1 January 2015 at 07:51, wm4 wrote: > On Wed, 31 Dec 2014 19:32:23 +0100 > Jean-Baptiste Kempf wrote: > > > On 31 Dec, wm4 wrote : > > > On Wed, 31 Dec 2014 14:11:20 +0100 > > > Clément Bœsch wrote: > > > > > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > > > Nic

Re: [FFmpeg-devel] [PATCH] avcodec/utils/avpriv_find_start_code: optimization. If HAVE_FAST_UNALIGNED is true, handle "1 + sizeof(long)" bytes per step.

2014-12-31 Thread Michael Niedermayer
On Thu, Jan 01, 2015 at 10:13:58AM +0800, zhaoxiu.zeng wrote: > libavcodec/utils.c | 68 > -- > 1 file changed, 56 insertions(+), 12 deletions(-) > > diff --git a/libavcodec/utils.c b/libavcodec/utils.c > index 1ec5cae..14a43e2 100644 > --- a/l

[FFmpeg-devel] [PATCH] Changelog: Add cropdetect non 8bpp

2014-12-31 Thread Michael Niedermayer
Suggested-by: Reimar Signed-off-by: Michael Niedermayer --- Changelog |1 + 1 file changed, 1 insertion(+) diff --git a/Changelog b/Changelog index 37ce0f0..e9d8355 100644 --- a/Changelog +++ b/Changelog @@ -9,6 +9,7 @@ version : - RTP/mpegts muxer - non continuous cache protocol support

[FFmpeg-devel] [PATCH] avcodec/utils/avpriv_find_start_code: optimization. If HAVE_FAST_UNALIGNED is true, handle "1 + sizeof(long)" bytes per step.

2014-12-31 Thread zhaoxiu.zeng
libavcodec/utils.c | 68 -- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 1ec5cae..14a43e2 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -3772,30 +3772,74 @@ const uint

[FFmpeg-devel] [PATCH] avfilter/vf_idet: Add analyze_interlaced_flag mode

2014-12-31 Thread Michael Niedermayer
This should allow us to insert idet before scale and let scale have interl=-1 as default in that case Signed-off-by: Michael Niedermayer --- doc/filters.texi |7 +++ libavfilter/vf_idet.c | 41 +++-- libavfilter/vf_idet.h |4 3 files c

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > That might sound minor, but I consider that more than worth a few extra > lines of configure code. This is definitely worth a few extra lines of code, but I believe the best place to put them is not configure. Do we agree that (1) we

[FFmpeg-devel] [PATCH] doc/ffmpeg: fix suffix of preset files

2014-12-31 Thread Werner Robitza
Probably something from Libav that got carried over. ffmpeg uses .ffpreset files instead of .avpreset, and it uses $FFMPEG_DATADIR instead of $AVCONV_DATADIR. Signed-off-by: Werner Robitza --- doc/ffmpeg.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/ffmpeg.te

Re: [FFmpeg-devel] [PATCH] apache-spark 1.2.0

2014-12-31 Thread Werner Robitza
Sorry about that, I sent the wrong commit. On Wed, Dec 31, 2014 at 10:08 PM, Werner Robitza wrote: > From: Kashif Rasul > > Closes #35158. > > Signed-off-by: Tim D. Smith > --- > Library/Formula/apache-spark.rb | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/Lib

[FFmpeg-devel] [PATCH] apache-spark 1.2.0

2014-12-31 Thread Werner Robitza
From: Kashif Rasul Closes #35158. Signed-off-by: Tim D. Smith --- Library/Formula/apache-spark.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Formula/apache-spark.rb b/Library/Formula/apache-spark.rb index b79385b..95e6d90 100644 --- a/Library/Formula/apac

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread wm4
On Wed, 31 Dec 2014 19:32:23 +0100 Jean-Baptiste Kempf wrote: > On 31 Dec, wm4 wrote : > > On Wed, 31 Dec 2014 14:11:20 +0100 > > Clément Bœsch wrote: > > > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > > Nicolas George nsup.org> writes: > > > > > > > > > Le prim

Re: [FFmpeg-devel] [PATCH] Progressive HLS support. When switched on 2 HLS streams will be generated: full + audio only. Also will be generated root m3u8 file for both streams. That functionality test

2014-12-31 Thread Vlad Kuznetsov
Could you explain the reason of using separate HLS encoder? It just repeats part of segment's functionality (and even not all necessary). Moving this patch there requires lot of unrelated changes there just for make basic HLS functionality working there. On Wed, Dec 31, 2014 at 11:08 AM, Hendrik L

Re: [FFmpeg-devel] [PATCH] Progressive HLS support. When switched on 2 HLS streams will be generated: full + audio only. Also will be generated root m3u8 file for both streams. That functionality test

2014-12-31 Thread Hendrik Leppkes
On Wed, Dec 31, 2014 at 7:33 PM, Vlad Kuznetsov <> wrote: > From: Vladimir Kuznetsov > > Client (mobile or desctop) will automatically choose the stream (full or > adio only) depends on current network conditions. > --- > The patch reads like a giant ugly hack, and I don't think the segment mux

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread James Almer
On 31/12/14 12:45 PM, Reimar Döffinger wrote: > On Wed, Dec 31, 2014 at 04:03:59PM +0100, Clément Bœsch wrote: >> On Wed, Dec 31, 2014 at 03:58:50PM +0100, wm4 wrote: >>> On Wed, 31 Dec 2014 14:11:20 +0100 >>> Clément Bœsch wrote: >>> On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Jean-Baptiste Kempf
On 31 Dec, compn wrote : > there was some talk on irc about people using mingw with pkg-config > 100% , so i'm going to ask if they could update the toolchain > recommendations that ffmpeg gives? just write down what you use > and whats easiest and i'll update the docs. Install Msys2, run a shell.

[FFmpeg-devel] [PATCH] Progressive HLS support. When switched on 2 HLS streams will be generated: full + audio only. Also will be generated root m3u8 file for both streams. That functionality tested o

2014-12-31 Thread Vlad Kuznetsov <>
From: Vladimir Kuznetsov Client (mobile or desctop) will automatically choose the stream (full or adio only) depends on current network conditions. --- libavformat/segment.c | 630 +- 1 file changed, 418 insertions(+), 212 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Jean-Baptiste Kempf
On 31 Dec, Reimar Döffinger wrote : > On MinGW it is in the FAQ and either needs the full GTK runtime or an > alternative implementation it seems: http://www.mingw.org/wiki/FAQ It's a lie. Not to mention that MinGW is old and deprecated and that the FAQ mentions pkg-config-lite. With my kindest

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Jean-Baptiste Kempf
On 31 Dec, wm4 wrote : > On Wed, 31 Dec 2014 14:11:20 +0100 > Clément Bœsch wrote: > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > Nicolas George nsup.org> writes: > > > > > > > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > > > Please make this

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread compn
On Wed, 31 Dec 2014 19:04:46 +0100 wm4 wrote: > On Wed, 31 Dec 2014 16:03:59 +0100 > Clément Bœsch wrote: > > > On Wed, Dec 31, 2014 at 03:58:50PM +0100, wm4 wrote: > > > On Wed, 31 Dec 2014 14:11:20 +0100 > > > Clément Bœsch wrote: > > > > > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Jean-Baptiste Kempf
On 31 Dec, Reimar Döffinger wrote : > I don't care much, but I still find not having to use pkg-config > somewhat more convenient in a cross-compilation environment where > you don't want to install all dependencies just to make it work with > pkg-config (or alternatively manually hack those files)

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread wm4
On Wed, 31 Dec 2014 16:03:59 +0100 Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 03:58:50PM +0100, wm4 wrote: > > On Wed, 31 Dec 2014 14:11:20 +0100 > > Clément Bœsch wrote: > > > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > > Nicolas George nsup.org> writes: >

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On 31.12.2014, at 16:52, Nicolas George wrote: > Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : >> >> Also I'm not arguing it's impossible, I'm arguing it's inconvenient. >> It's something like 2-3 additional steps for each library. > > How do you usually install a library? You are

Re: [FFmpeg-devel] [PATCH] x86/swr: add missing alignment check to pack_6ch functions

2014-12-31 Thread James Almer
On 31/12/14 8:48 AM, Michael Niedermayer wrote: > On Wed, Dec 31, 2014 at 02:16:20AM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> libswresample/x86/audio_convert.asm | 2 ++ >> 1 file changed, 2 insertions(+) > > LGTM > > thx Pushed. __

Re: [FFmpeg-devel] libavutil: added camellia block cipher

2014-12-31 Thread supraja reddy
Hello, I have made the following changes. > create mode 100644 libavutil/camellia.h > > Missing changelog entry. > I have updated the changelog. I had earlier ignored this because i also had to update changelog for cast128 cbc mode and wanted to do both together. > > We don't need it in this ca

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > "Just install it" might not quite apply though. > On MinGW it is in the FAQ and either needs the full GTK runtime or an > alternative implementation it seems: http://www.mingw.org/wiki/FAQ How is it a problem? I see a link to a downloa

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > > How is that really a problem? You can just ./configure > > --prefix=$PWD/install (or wherever you fancy) from the library source > > directory > If you do that you end up with an unmaintainable mess where you have all > the files from

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 04:03:59PM +0100, Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 03:58:50PM +0100, wm4 wrote: > > On Wed, 31 Dec 2014 14:11:20 +0100 > > Clément Bœsch wrote: > > > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > > Nicolas George nsup.org> write

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 03:43:32PM +0100, Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 02:57:43PM +0100, Reimar Döffinger wrote: > > On Wed, Dec 31, 2014 at 02:38:20PM +0100, Clément Bœsch wrote: > > > On Wed, Dec 31, 2014 at 02:23:54PM +0100, Reimar Döffinger wrote: > > > > On Wed, Dec 31, 2014

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 03:58:50PM +0100, wm4 wrote: > On Wed, 31 Dec 2014 14:11:20 +0100 > Clément Bœsch wrote: > > > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > > Nicolas George nsup.org> writes: > > > > > > > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écri

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread wm4
On Wed, 31 Dec 2014 14:11:20 +0100 Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > > Nicolas George nsup.org> writes: > > > > > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > > Please make this use_pkg_config ... || require libfdk_a

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 02:57:43PM +0100, Reimar Döffinger wrote: > On Wed, Dec 31, 2014 at 02:38:20PM +0100, Clément Bœsch wrote: > > On Wed, Dec 31, 2014 at 02:23:54PM +0100, Reimar Döffinger wrote: > > > On Wed, Dec 31, 2014 at 02:09:42PM +0100, Nicolas George wrote: > > > > Le primidi 11 nivôse

[FFmpeg-devel] FFMPEG audio codec parameter problem

2014-12-31 Thread praveen . gandam
Dear Friend, We have tried porting FFMPEG to iOS 8.0 and made the following changes to the main function , We have replaced it with our own implementation ffmpegInit(). Following are the contents of the function as it starts. char **argv=malloc(14*sizeof(char*)); int argc=14; argv[1

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 02:38:20PM +0100, Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 02:23:54PM +0100, Reimar Döffinger wrote: > > On Wed, Dec 31, 2014 at 02:09:42PM +0100, Nicolas George wrote: > > > Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > > > > I don't care much, but I

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 02:23:06PM +0100, Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 02:02:20PM +0100, Reimar Döffinger wrote: > [...] > > There is also a (minority) of projects with pkg-config files that > > cause undesirable side-effects which can hide errors. > > From my system: > > 1) SDL a

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Michael Niedermayer
On Wed, Dec 31, 2014 at 02:02:20PM +0100, Reimar Döffinger wrote: > On Wed, Dec 31, 2014 at 01:25:33PM +0100, Nicolas George wrote: > > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > Attached patch fixes ticket #4197 for me. > > > > Installing pkg-config fixes ticket #4197 for

Re: [FFmpeg-devel] [PATCH 3/3] avformat: add basic timeline support

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 01:33:44PM +0100, Nicolas George wrote: > Le decadi 10 nivôse, an CCXXIII, Clement Boesch a écrit : > > From: Clément Bœsch > > > > --- > > Another approach this time: exporting a filtergraph from the demuxer > > (when requested) and inserting it in the tools automatically

Re: [FFmpeg-devel] SCTE-35 development

2014-12-31 Thread Michael Niedermayer
On Wed, Dec 31, 2014 at 01:58:20PM +0530, Anshul wrote: > On 12/31/2014 02:14 AM, Michael Niedermayer wrote: > > On Wed, Dec 31, 2014 at 01:35:59AM +0530, Anshul wrote: > >> On 12/30/2014 10:06 PM, Michael Niedermayer wrote: > >>> On Tue, Dec 30, 2014 at 07:39:38PM +0530, Anshul wrote: > On 12

Re: [FFmpeg-devel] [PATCH 2/2] Adding closed caption decoder

2014-12-31 Thread Anshul
On 12/30/2014 11:13 PM, Michael Niedermayer wrote: > On Tue, Dec 30, 2014 at 07:46:29PM +0530, Anshul wrote: >> On 12/12/2014 04:23 PM, Anshul wrote: >>> On 12/06/2014 04:24 PM, Anshul wrote: On 12/06/2014 04:22 PM, Anshul wrote: > On 12/05/2014 07:56 PM, Nicolas George wrote: >> Hi. I

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 02:23:54PM +0100, Reimar Döffinger wrote: > On Wed, Dec 31, 2014 at 02:09:42PM +0100, Nicolas George wrote: > > Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > > > I don't care much, but I still find not having to use pkg-config > > > somewhat more convenient

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 02:09:42PM +0100, Nicolas George wrote: > Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > > I don't care much, but I still find not having to use pkg-config > > somewhat more convenient in a cross-compilation environment where > > you don't want to install all

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 02:02:20PM +0100, Reimar Döffinger wrote: [...] > There is also a (minority) of projects with pkg-config files that > cause undesirable side-effects which can hide errors. > From my system: > 1) SDL and apr add -D_GNU_SOURCE=1 > 2) fuse adds -D_FILE_OFFSET_BITS=64 > 3) xorg

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 01:23:41PM +0100, Carl Eugen Hoyos wrote: > Hi! > > Attached patch fixes ticket #4197 for me. > > Please merge, Carl Eugen > From 56ce16fd3f10c4259df7abbbcc1f9681f055564b Mon Sep 17 00:00:00 2001 > From: Carl Eugen Hoyos > Date: Wed, 31 Dec 2014 13:20:58 +0100 > Subject:

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 12:14:03PM +, Carl Eugen Hoyos wrote: > Nicolas George nsup.org> writes: > > > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > Please make this use_pkg_config ... || require libfdk_aac... > > > > Is there a known instance where fdk_aac is > > not b

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Reimar Döffinger a écrit : > I don't care much, but I still find not having to use pkg-config > somewhat more convenient in a cross-compilation environment where > you don't want to install all dependencies just to make it work with > pkg-config (or alternatively m

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Reimar Döffinger
On Wed, Dec 31, 2014 at 01:25:33PM +0100, Nicolas George wrote: > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > Attached patch fixes ticket #4197 for me. > > Installing pkg-config fixes ticket #4197 for you. > > I object to any useless obfuscation to configure. I don't care mu

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Michael Niedermayer
On Wed, Dec 31, 2014 at 01:22:13PM +0100, Nicolas George wrote: > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > Is there a known instance where fdk_aac is > > > not bundled with valid pkg-config files? > > All systems without pkg-config. > > Untrue. The pkg-config files are j

Re: [FFmpeg-devel] [PATCH 3/3] avformat: add basic timeline support

2014-12-31 Thread Nicolas George
Le decadi 10 nivôse, an CCXXIII, Clement Boesch a écrit : > From: Clément Bœsch > > --- > Another approach this time: exporting a filtergraph from the demuxer > (when requested) and inserting it in the tools automatically. > > FIXME: doesn't work when using -ss with ffmpeg, maybe because it's >

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > I don't understand what you mean with "is a problem". > pkg-config is not installed on all operating systems THEN INSTALL IT! Just like the C compiler and the rest of the build tools. > and we know that it often causes issues so we

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Carl Eugen Hoyos
Nicolas George nsup.org> writes: > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > > Is there a known instance where fdk_aac is > > > not bundled with valid pkg-config files? > > All systems without pkg-config. > > Untrue. The pkg-config files are just files. > > > Or do I mis

Re: [FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > Attached patch fixes ticket #4197 for me. Installing pkg-config fixes ticket #4197 for you. I object to any useless obfuscation to configure. Regards, -- Nicolas George signature.asc Description: Digital signature _

[FFmpeg-devel] [PATCH]Allow libspeex detection also without pkg-config

2014-12-31 Thread Carl Eugen Hoyos
Hi! Attached patch fixes ticket #4197 for me. Please merge, Carl Eugen From 56ce16fd3f10c4259df7abbbcc1f9681f055564b Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 31 Dec 2014 13:20:58 +0100 Subject: [PATCH] configure: Allow libspeex detection with and without pkg-config. Fixes tic

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > Is there a known instance where fdk_aac is > > not bundled with valid pkg-config files? > All systems without pkg-config. Untrue. The pkg-config files are just files. > Or do I misunderstand? You still have not given a single prac

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Carl Eugen Hoyos
Nicolas George nsup.org> writes: > Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > > Please make this use_pkg_config ... || require libfdk_aac... > > Is there a known instance where fdk_aac is > not bundled with valid pkg-config files? All systems without pkg-config. Or do I mis

Re: [FFmpeg-devel] [PATCH] x86/swr: add missing alignment check to pack_6ch functions

2014-12-31 Thread Michael Niedermayer
On Wed, Dec 31, 2014 at 02:16:20AM -0300, James Almer wrote: > Signed-off-by: James Almer > --- > libswresample/x86/audio_convert.asm | 2 ++ > 1 file changed, 2 insertions(+) LGTM thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Those who are best at talk

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Nicolas George
Le primidi 11 nivôse, an CCXXIII, Carl Eugen Hoyos a écrit : > Please make this use_pkg_config ... || require libfdk_aac... Is there a known instance where fdk_aac is not bundled with valid pkg-config files? Regards, -- Nicolas George signature.asc Description: Digital signature ___

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Carl Eugen Hoyos
Michal Feix feix.cz> writes: > +enabled libfdk_aac&& require_pkg_config Please make this use_pkg_config ... || require libfdk_aac... Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-de

Re: [FFmpeg-devel] C File name for video conversion in ffmpeg

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 03:41:05PM +0530, Akash Talole wrote: > I want to know C files for .avi to .mp4 conversion > Please do not top post on this mailing list. AVI and MOV are containers, you will find the muxers and demuxers in libavformat. If you don't know what that means, look at http://f

Re: [FFmpeg-devel] [PATCH] Add pkg-config for libfdk_aac

2014-12-31 Thread Clément Bœsch
On Tue, Dec 30, 2014 at 03:20:19AM +0100, Michal Feix wrote: > Hi, > > whne installed into non-default prefix path, configure will not find the > header and library file for libfdk_aac. Since the library now employs > pkg-config, we should use it. > You're probably going to get objections from

Re: [FFmpeg-devel] C File name for video conversion in ffmpeg

2014-12-31 Thread Akash Talole
I want to know C files for .avi to .mp4 conversion On Wed, Dec 31, 2014 at 3:32 PM, Clément Bœsch wrote: > On Wed, Dec 31, 2014 at 03:22:41PM +0530, Akash Talole wrote: > > I want to know the C file for the video conversion in ffmpeg. Please give > > me detail list of all video conversion files

Re: [FFmpeg-devel] [PATCH] tests/regression-funcs: Remove hardcoded therads 1

2014-12-31 Thread Clément Bœsch
> Subject: Re: [FFmpeg-devel] [PATCH] tests/regression-funcs: Remove hardcoded > therads 1 threads* On Tue, Dec 23, 2014 at 03:38:12AM +0100, Michael Niedermayer wrote: > The tests which use encoders which either use slices or store the encoder > thread count > keep a hardcoded value of 1 > Y

Re: [FFmpeg-devel] C File name for video conversion in ffmpeg

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 03:22:41PM +0530, Akash Talole wrote: > I want to know the C file for the video conversion in ffmpeg. Please give > me detail list of all video conversion files in ffmpeg. ffmpeg*.c ...but it probably involves some of the lib*/**/*.[ch] -- Clément B. pgpWXsA6w383I.pgp

Re: [FFmpeg-devel] ffmpeg nvenc

2014-12-31 Thread Clément Bœsch
On Wed, Dec 31, 2014 at 05:40:00PM +0800, Agatha Hu wrote: [...] > Yes we plan to work on base of nvenc.c, libnvenc.patch is sent for > comparison. > I see, then it's fine. Thank you :) -- Clément B. pgpQkRk7b_EBC.pgp Description: PGP signature ___

Re: [FFmpeg-devel] [PATCH 3/3] avformat: add basic timeline support

2014-12-31 Thread Clément Bœsch
On Tue, Dec 30, 2014 at 08:33:49PM +0100, Michael Niedermayer wrote: > On Tue, Dec 30, 2014 at 06:25:26PM +0100, Clément Bœsch wrote: > > From: Clément Bœsch > > > > --- > > Another approach this time: exporting a filtergraph from the demuxer > > (when requested) and inserting it in the tools aut

[FFmpeg-devel] C File name for video conversion in ffmpeg

2014-12-31 Thread Akash Talole
I want to know the C file for the video conversion in ffmpeg. Please give me detail list of all video conversion files in ffmpeg. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] ffmpeg nvenc

2014-12-31 Thread Agatha Hu
On 2014/12/29 22:10, Clément Bœsch wrote: I hope you understand that this patch is likely to get rejected for several reasons. Here is a (probably) non exhaustive list: - There are still some license uncertainties about the licensing (see "die_license_disabled nonfree nvenc" in the config

Re: [FFmpeg-devel] SCTE-35 development

2014-12-31 Thread Anshul
On 12/31/2014 02:14 AM, Michael Niedermayer wrote: > On Wed, Dec 31, 2014 at 01:35:59AM +0530, Anshul wrote: >> On 12/30/2014 10:06 PM, Michael Niedermayer wrote: >>> On Tue, Dec 30, 2014 at 07:39:38PM +0530, Anshul wrote: On 12/30/2014 03:56 PM, Clément Bœsch wrote: > They are also probab

Re: [FFmpeg-devel] Parallelization

2014-12-31 Thread Reimar Döffinger
On 31.12.2014, at 04:00, David Ison wrote: > 3. I am planning initial implementations using OpenMP. There is good > support on Gnu, LLVM and other compilers > . That is _not_ true. There is no OpenMP support in LLVM, what they misleadingly list is an u