Re: [FFmpeg-devel] [PATCH]Allow using libopenjpeg 2.x

2014-09-17 Thread Reimar Döffinger
On 16.09.2014, at 22:35, Carl Eugen Hoyos ceho...@ag.or.at wrote: Hi! Attached patch allows using libopenjpeg 2.x (tested with 2.1) here. Doesn't it make sense to prefer the newest version, i.e. we should check for this first and not last? ___

Re: [FFmpeg-devel] [PATCH 14/18] avfilter: remove obsolete FF_API_FILL_FRAME cruft

2014-09-17 Thread Paul B Mahol
On 9/15/14, James Almer jamr...@gmail.com wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavfilter/avcodec.c | 20 libavfilter/avcodec.h | 41 - libavfilter/version.h | 3 --- 3 files changed, 64 deletions(-) diff

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-17 Thread Roger Pack
On Mon, Sep 15, 2014 at 11:19 AM, Amnon Israely amno...@gmail.com wrote: It's work already more than 24h Maybe it's not a big problem but in some scenario may do some problem Input #0, decklink, from 'DeckLink SDI (3)@3': Duration: N/A, start: 0.00, bitrate: 172032 kb/s Stream

Re: [FFmpeg-devel] [FFmpeg-cvslog] x86/me_cmp: port mmxext and sse2 sad functions to yasm

2014-09-17 Thread Clément Bœsch
On Wed, Sep 17, 2014 at 11:41:32AM +0200, James Almer wrote: ffmpeg | branch: master | James Almer jamr...@gmail.com | Tue Sep 16 21:41:47 2014 -0300| [0456d169c469a79e305813d14c873fe698c8c572] | committer: Michael Niedermayer x86/me_cmp: port mmxext and sse2 sad functions to yasm Also

Re: [FFmpeg-devel] [PATCH 1/2] Fix miscompilation for i586.

2014-09-17 Thread Ronald S. Bultje
Hi, On Wed, Sep 17, 2014 at 4:08 AM, Michael Niedermayer michae...@gmx.at wrote: On Sun, Sep 14, 2014 at 01:01:45AM +0200, Mikulas Patocka wrote: In the program, you can easily determine what -march was passed to the compiler and react to it - if one of __i686__, __athlon__, __SSE__ is

Re: [FFmpeg-devel] [FFmpeg-cvslog] x86/me_cmp: port mmxext and sse2 sad functions to yasm

2014-09-17 Thread James Almer
On 17/09/14 9:07 AM, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 01:18:12PM +0200, Clément Bœsch wrote: On Wed, Sep 17, 2014 at 11:41:32AM +0200, James Almer wrote: ffmpeg | branch: master | James Almer jamr...@gmail.com | Tue Sep 16 21:41:47 2014 -0300|

[FFmpeg-devel] [PATCH] Adobe HTTP Dynamic Streaming (HDS) demuxer improvements

2014-09-17 Thread Gorilla Maguila
After contacting the original author of the the patch posted in: http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2014-February/154612.html I attach a new patch with improvements: - Better codec detection in amfmetata - Better live streams handling (Get current segment, calculate next

Re: [FFmpeg-devel] [PATCH] Adobe HTTP Dynamic Streaming (HDS) demuxer improvements

2014-09-17 Thread Carl Eugen Hoyos
Gorilla Maguila gorilla.maguila at gmail.com writes: http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2014-February/154612.html I attach a new patch with improvements: I wanted to write an answer with a few minor remarks but just saw that several issues from the original review are still

Re: [FFmpeg-devel] [PATCH 14/18] avfilter: remove obsolete FF_API_FILL_FRAME cruft

2014-09-17 Thread James Almer
On 17/09/14 4:40 AM, Paul B Mahol wrote: On 9/15/14, James Almer jamr...@gmail.com wrote: Signed-off-by: James Almer jamr...@gmail.com --- libavfilter/avcodec.c | 20 libavfilter/avcodec.h | 41 - libavfilter/version.h | 3 ---

[FFmpeg-devel] [PATCH] Make swscale x86 ASM depend less on registers been preserved across blocks

2014-09-17 Thread Vitor Sessak
Hi! I'm not sure we can count on registers been preserved across ASM blocks. Moreover, this causes problems with utils that instrument the code by inserting function calls between lines (like ThreadSanitizer). The attached patch fix one instance of this problem in swscale. -Vitor

[FFmpeg-devel] More specific error codes

2014-09-17 Thread Andrey Utkin
I have got many complaints about FFmpeg error codes being too abstract. Not helpful for quick resolution, in a lot of such cases real issue with application must be investigated manually (by reviewing log with debug loglevel and/or sniffing traffic). E.g., Invalid data may mean almost everything,

Re: [FFmpeg-devel] Cross-origin resource error on fate.ffmpeg.org

2014-09-17 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 11:33:32AM -0700, Daniel Verkamp wrote: Hi FFmpeg web folks, When visiting http://fate.ffmpeg.org/ using a browser that enforces CORS[1], loading the FontAwesome icon font causes this error: Font from origin 'https://ffmpeg.org' has been blocked from loading by

Re: [FFmpeg-devel] archive ffmpeg all objs into one lib, feasible?

2014-09-17 Thread Marcus Johnson
No, it won't work because the libraries are for different purposes. as per your example, 4xm in the libavcodec directory is for decoding the file, it implements the actual algorithm. 4xm in the libavformat directory is for demuxing the codec from the 4xm container, you need both for it to work.

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-17 Thread Marton Balint
On Wed, 17 Sep 2014, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 03:47:09AM +0200, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: On Sat, 6 Sep 2014, Marton Balint wrote: Create a generic frame and a frame queue struct to handle video

Re: [FFmpeg-devel] More specific error codes

2014-09-17 Thread wm4
On Wed, 17 Sep 2014 22:56:27 +0300 Andrey Utkin andrey.krieger.ut...@gmail.com wrote: I have got many complaints about FFmpeg error codes being too abstract. Not helpful for quick resolution, in a lot of such cases real issue with application must be investigated manually (by reviewing log

Re: [FFmpeg-devel] [PATCH] Make swscale x86 ASM depend less on registers been preserved across blocks

2014-09-17 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 09:21:08PM +0200, Vitor Sessak wrote: Hi! I'm not sure we can count on registers been preserved across ASM blocks. Moreover, this causes problems with utils that instrument the code by inserting function calls between lines (like ThreadSanitizer). The attached

Re: [FFmpeg-devel] [PATCH] Make swscale x86 ASM depend less on registers been preserved across blocks

2014-09-17 Thread Vitor Sessak
On Wed, Sep 17, 2014 at 10:31 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Sep 17, 2014 at 09:21:08PM +0200, Vitor Sessak wrote: Hi! I'm not sure we can count on registers been preserved across ASM blocks. Moreover, this causes problems with utils that instrument the code by

Re: [FFmpeg-devel] [PATCH] vf_deshake: rename Transform.vector to Transform.vec to avoid compiler confusion

2014-09-17 Thread Carl Eugen Hoyos
Andreas Cadhalpun andreas.cadhalpun at googlemail.com writes: FFmpeg failed to build in Debian on powerpc/ppc64el with the following error: Out of curiosity: How can I reproduce this? I believe I tested on ppc64 Linux last week... In any case: No objections here, Carl Eugen

Re: [FFmpeg-devel] [PATCH] vf_deshake: rename Transform.vector to Transform.vec to avoid compiler confusion

2014-09-17 Thread Andreas Cadhalpun
On 18.09.2014 00:33, Carl Eugen Hoyos wrote: Andreas Cadhalpun andreas.cadhalpun at googlemail.com writes: FFmpeg failed to build in Debian on powerpc/ppc64el with the following error: Out of curiosity: How can I reproduce this? I believe I tested on ppc64 Linux last week... If you have a

Re: [FFmpeg-devel] [PATCH] Make swscale x86 ASM depend less on registers been preserved across blocks

2014-09-17 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 10:55:52PM +0200, Vitor Sessak wrote: On Wed, Sep 17, 2014 at 10:31 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Sep 17, 2014 at 09:21:08PM +0200, Vitor Sessak wrote: Hi! I'm not sure we can count on registers been preserved across ASM blocks.

Re: [FFmpeg-devel] [PATCH] vf_deshake: rename Transform.vector to Transform.vec to avoid compiler confusion

2014-09-17 Thread Michael Niedermayer
On Thu, Sep 18, 2014 at 12:16:42AM +0200, Andreas Cadhalpun wrote: Hi, FFmpeg failed to build in Debian on powerpc/ppc64el with the following error: libavfilter/deshake.h:51:24: warning: declaration does not declare anything MotionVector vector; /// Motion vector

Re: [FFmpeg-devel] [PATCH] avformat/rtpenc_chain: Set timebase

2014-09-17 Thread Michael Niedermayer
On Thu, Jul 24, 2014 at 12:14:14AM +0200, Michael Niedermayer wrote: Avoid warning that its not set Signed-off-by: Michael Niedermayer michae...@gmx.at --- libavformat/rtpenc_chain.c |2 ++ 1 file changed, 2 insertions(+) a variant of this was applied by martin and merged by me [...]

[FFmpeg-devel] [PATCH] x86/me_cmp: combine sad functions into a single macro

2014-09-17 Thread James Almer
No point in having the sad8 functions separate now that the loop is no longer unrolled. Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/me_cmp.asm | 221 +++--- 1 file changed, 93 insertions(+), 128 deletions(-) diff --git

Re: [FFmpeg-devel] Cross-origin resource error on fate.ffmpeg.org

2014-09-17 Thread Daniel Verkamp
On Wed, Sep 17, 2014 at 12:59 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Sep 17, 2014 at 11:33:32AM -0700, Daniel Verkamp wrote: Hi FFmpeg web folks, When visiting http://fate.ffmpeg.org/ using a browser that enforces CORS[1], loading the FontAwesome icon font causes this error:

Re: [FFmpeg-devel] [PATCH] x86/me_cmp: combine sad functions into a single macro

2014-09-17 Thread James Almer
On 17/09/14 11:44 PM, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 10:15:30PM -0300, James Almer wrote: No point in having the sad8 functions separate now that the loop is no longer unrolled. Signed-off-by: James Almer jamr...@gmail.com --- libavcodec/x86/me_cmp.asm | 221