Re: [FFmpeg-devel] FFserver bug?

2014-10-30 Thread Michael Niedermayer
On Fri, Oct 31, 2014 at 02:14:29AM +0100, Sevan Gelici wrote: > Hi, > > Two days ago i updated my linux system and also ffmpeg was updated. When i > started to stream it was not working anymore. I am using ffserver. i > determined the problem which causes the problem thats the bitrate it makes > l

Re: [FFmpeg-devel] [PATCH 1/3] ffplay: implement separete audio decoder thread

2014-10-30 Thread Marton Balint
On Thu, 30 Oct 2014, wm4 wrote: On Thu, 30 Oct 2014 00:31:25 +0100 Marton Balint wrote: Signed-off-by: Marton Balint --- ffplay.c | 265 --- 1 file changed, 153 insertions(+), 112 deletions(-) diff --git a/ffplay.c b/ffplay.c ind

[FFmpeg-devel] Discuss: Improved hardware acceleration support

2014-10-30 Thread Rodger Combs
libavcodec currently has support for hardware-accelerated decoding, but no support for encoding, and libavcodec+libavfilter+ffmpeg provide no support for a decode->filter->encode pipeline that doesn't involve copying buffers back and forth from the video card and cutting out a significant amount

Re: [FFmpeg-devel] [PATCH] libavformat/assenc: Add ignore_gaps option

2014-10-30 Thread Rodger Combs
> On Oct 30, 2014, at 07:48, wm4 wrote: > ... > The option name is a bit unspecific - how about "ignore_readorder"? > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > http://ffmpeg.org/mailman/listinfo/ffmpeg-devel No objections here; new pa

[FFmpeg-devel] FFserver bug?

2014-10-30 Thread Sevan Gelici
Hi, Two days ago i updated my linux system and also ffmpeg was updated. When i started to stream it was not working anymore. I am using ffserver. i determined the problem which causes the problem thats the bitrate it makes like 50mb of it. i reinstalled the system a couple times because of some te

Re: [FFmpeg-devel] [PATCH] libxcb-xshape in configure.

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 09:26:17PM +0100, Horváth Balázs wrote: > This is my attempt at fixing the broken build because xcbgrab > uses xcb_shape_rectangles, but doesn't link xcb-shape. > > Signed-off-by: Horváth Balázs > --- > configure | 11 +-- > 1 file changed, 9 insertions(+), 2 dele

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-30 Thread Michael Niedermayer
On Fri, Oct 31, 2014 at 01:36:46AM +0530, arwa arif wrote: > On Thu, Oct 30, 2014 at 9:34 PM, Stefano Sabatini > wrote: > > > On date Thursday 2014-10-30 18:23:35 +0530, arwa arif encoded: > > > On Wed, Oct 29, 2014 at 3:36 AM, Clément Bœsch wrote: > > > > > > > On Tue, Oct 28, 2014 at 10:51:27P

[FFmpeg-devel] [PATCH] libxcb-xshape in configure.

2014-10-30 Thread Horváth Balázs
This is my attempt at fixing the broken build because xcbgrab uses xcb_shape_rectangles, but doesn't link xcb-shape. Signed-off-by: Horváth Balázs --- configure | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e6e3de3..49feee3 100755 ---

[FFmpeg-devel] [PATCH] libxcb-xhsape in configure

2014-10-30 Thread Horváth Balázs
This is my attempt at fixing the broken build because xcbgrab uses xcb_shape_rectangles, but doesn't link xcb-shape. Horváth Balázs (1): libxcb-xshape in configure. configure | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) -- 2.1.3 _

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-30 Thread arwa arif
On Thu, Oct 30, 2014 at 9:34 PM, Stefano Sabatini wrote: > On date Thursday 2014-10-30 18:23:35 +0530, arwa arif encoded: > > On Wed, Oct 29, 2014 at 3:36 AM, Clément Bœsch wrote: > > > > > On Tue, Oct 28, 2014 at 10:51:27PM +0100, Michael Niedermayer wrote: > > > > On Tue, Oct 28, 2014 at 07:16

Re: [FFmpeg-devel] [PATCH] psy_snr:Psychoacoustic SNR for audio files

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 11:33:51PM +0530, Senjuti Kundu wrote: > Implemented an SNR for audio files which takes into a account the > psychoacoustic masking. This results in an SNR which is closer to how humans > percieve sound, compared to tiny_psnr which directly compares audio signals > > Sign

Re: [FFmpeg-devel] Use ffmpeg as an Android stagefright plugin

2014-10-30 Thread Fabio Fumi
Hi Chih, I've completed the merge of frameworks/av and framewroks/native and added the stagefright-plugins and ffmpeg to my project. I enabld the USES_NAM and built new system. Startup wnet fine, but on YouTube test playback (which went just fine before), I get a crash (below). Note how I hav

Re: [FFmpeg-devel] Use ffmpeg as an Android stagefright plugin

2014-10-30 Thread Fabio Fumi
Also after adding new ffmpeg codecs to I still get a crash on H264 (avc) playback. Added ffmpeg codecs to device/renesas/emev/media_codecs.xml Rebuilt... test... still crashing: V/AwesomePlayer( 758): track of type 'video/avc' does not publish bitrate V/AwesomePlayer( 758): mBitrate = -1 bit

Re: [FFmpeg-devel] Encode2() function in libavcodec/avcodec.h

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 11:31:25AM +0530, greeshma wrote: > Hi, > > the attributes has been changed to (AVCodecContext *avctx, AVPacket *avpkt, > const AVFrame *frame, int *got_packet_ptr); > > what is the exact change made in the function. if you want to know which commit introduced a change th

[FFmpeg-devel] [PATCH] psy_snr:Psychoacoustic SNR for audio files

2014-10-30 Thread Senjuti Kundu
Implemented an SNR for audio files which takes into a account the psychoacoustic masking. This results in an SNR which is closer to how humans percieve sound, compared to tiny_psnr which directly compares audio signals Signed-off-by: Senjuti Kundu --- tests/psy_snr.c | 421

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-30 Thread Stefano Sabatini
On date Thursday 2014-10-30 18:23:35 +0530, arwa arif encoded: > On Wed, Oct 29, 2014 at 3:36 AM, Clément Bœsch wrote: > > > On Tue, Oct 28, 2014 at 10:51:27PM +0100, Michael Niedermayer wrote: > > > On Tue, Oct 28, 2014 at 07:16:45PM +0100, Clément Bœsch wrote: > > > > On Tue, Oct 28, 2014 at 06

Re: [FFmpeg-devel] [PATCH 4/6] dv: fix weight table for 2x4x8 transform

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 02:49:30PM +0100, Christophe Gisquet wrote: > Hi, > > 2014-10-26 19:20 GMT+01:00 Michael Niedermayer : > > I took the liberty to apply the patch and fix the bug instead of > > leaving it open until someone succeeds writing a fate test for it > > Hi, I wonder whether this s

Re: [FFmpeg-devel] "OPW Qualification Task: Enable daemon mode for FFserver"

2014-10-30 Thread Reynaldo H. Verdejo Pinochet
Hello On 10/30/2014 10:50 AM, Nicolas George wrote: > [..] Third, I do not think this exact version is correct. If you > make the daemon mode the default, then NoDaemon must not be > ignored, it must have its specified effect: turn daemon off; if you > do not make the daemon mode the default, then

Re: [FFmpeg-devel] "OPW Qualification Task: Enable daemon mode for FFserver"

2014-10-30 Thread Nicolas George
Le nonidi 9 brumaire, an CCXXIII, Binathi Bingi a écrit : > >From 0fb7dcf1f126bd137e2b2025c5cd6cff4af65801 Mon Sep 17 00:00:00 2001 > From: Binathi Bingi > Date: Thu, 30 Oct 2014 01:14:08 +0530 > Subject: [PATCH] ffserver: enable back deamon mode > > --- > ffserver.c| 34

Re: [FFmpeg-devel] [PATCH 4/6] dv: fix weight table for 2x4x8 transform

2014-10-30 Thread Christophe Gisquet
Hi, 2014-10-26 19:20 GMT+01:00 Michael Niedermayer : > I took the liberty to apply the patch and fix the bug instead of > leaving it open until someone succeeds writing a fate test for it Hi, I wonder whether this should be reverted for now (and ticket #2970 reopened at the same time). I have be

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 06:23:35PM +0530, arwa arif wrote: > On Wed, Oct 29, 2014 at 3:36 AM, Clément Bœsch wrote: > > > On Tue, Oct 28, 2014 at 10:51:27PM +0100, Michael Niedermayer wrote: > > > On Tue, Oct 28, 2014 at 07:16:45PM +0100, Clément Bœsch wrote: > > > > On Tue, Oct 28, 2014 at 06:30:

Re: [FFmpeg-devel] Evolution of lavfi's design and API

2014-10-30 Thread Michael Niedermayer
On Thu, Oct 30, 2014 at 11:50:46AM +0100, Stefano Sabatini wrote: > Sorry for the slow reply. > > On date Wednesday 2014-10-22 23:45:42 +0200, Nicolas George encoded: > > [ CCing Anton, as most that is written here also apply to libav too, and > > this would be a good occasion to try a cross-fork

Re: [FFmpeg-devel] [PATCH] lavfi: add xbr filter

2014-10-30 Thread arwa arif
On Wed, Oct 29, 2014 at 3:36 AM, Clément Bœsch wrote: > On Tue, Oct 28, 2014 at 10:51:27PM +0100, Michael Niedermayer wrote: > > On Tue, Oct 28, 2014 at 07:16:45PM +0100, Clément Bœsch wrote: > > > On Tue, Oct 28, 2014 at 06:30:34PM +0100, Stefano Sabatini wrote: > > > [...] > > > > How much effo

Re: [FFmpeg-devel] [PATCH 1/3] ffplay: implement separete audio decoder thread

2014-10-30 Thread wm4
On Thu, 30 Oct 2014 00:31:25 +0100 Marton Balint wrote: > Signed-off-by: Marton Balint > --- > ffplay.c | 265 > --- > 1 file changed, 153 insertions(+), 112 deletions(-) > > diff --git a/ffplay.c b/ffplay.c > index a979164..24bcae2

Re: [FFmpeg-devel] [PATCH] libavformat/assenc: Add ignore_gaps option

2014-10-30 Thread wm4
On Thu, 30 Oct 2014 04:36:28 -0500 Rodger Combs wrote: > This patch lets the user ignore ReadOrder when writing ASS subtitles, which > is useful when e.g. streaming output. > > From d3d4cb4da2382a1d762fa1e9bfafbaf3d18cf5c5 Mon Sep 17 00:00:00 2001 > From: Rodger Combs > Date: Thu, 30 Oct 2014

Re: [FFmpeg-devel] [PATCH] ffprobe.xsd: Add packets_and_frames element definition

2014-10-30 Thread Stefano Sabatini
On date Thursday 2014-10-23 15:17:55 +0200, Tobias Rapp encoded: > Attached patch allows validation of ffprobe XML output if > -show_packets and -show_frames are both set. > From 0c10cf28993f61cbb8365caf8d06f5d5b6111a80 Mon Sep 17 00:00:00 2001 > From: Tobias Rapp > Date: Thu, 23 Oct 2014 15:10:2

Re: [FFmpeg-devel] [PATCH] avformat/subtitles: reduce log level of UTF-16 warning

2014-10-30 Thread Nicolas George
L'octidi 8 brumaire, an CCXXIII, wm4 a écrit : > Would a patch adding a "this is UTF-8" flag to the subtitle codec > headers be accepted? No. > What should it be named? sub_charenc Regards, -- Nicolas George signature.asc Description: Digital signature __

Re: [FFmpeg-devel] Evolution of lavfi's design and API

2014-10-30 Thread Stefano Sabatini
Sorry for the slow reply. On date Wednesday 2014-10-22 23:45:42 +0200, Nicolas George encoded: > [ CCing Anton, as most that is written here also apply to libav too, and > this would be a good occasion to try a cross-fork cooperation; if that is > not wanted, please let us know so we can drop the

Re: [FFmpeg-devel] [PATCH] ffprobe.xsd: Add packets_and_frames element definition

2014-10-30 Thread Tobias Rapp
On 23.10.2014 15:17, Tobias Rapp wrote: Attached patch allows validation of ffprobe XML output if -show_packets and -show_frames are both set. Steps to reproduce the issue: > ./ffprobe -show_packets -show_frames -print_format xml=q=1 \ $FATE_SAMPLES/qpeg/Clock.avi > /tmp/ffprobe-out01.xml >

[FFmpeg-devel] [PATCH] libavformat/assenc: Add ignore_gaps option

2014-10-30 Thread Rodger Combs
This patch lets the user ignore ReadOrder when writing ASS subtitles, which is useful when e.g. streaming output. >From d3d4cb4da2382a1d762fa1e9bfafbaf3d18cf5c5 Mon Sep 17 00:00:00 2001 From: Rodger Combs Date: Thu, 30 Oct 2014 04:33:17 -0500 Subject: [PATCH] libavformat/assenc: Add ignore_gaps

Re: [FFmpeg-devel] "OPW Qualification Task: Enable daemon mode for FFserver"

2014-10-30 Thread Binathi Bingi
I see your point. Changing the ffserver_config.c would help in addressing config files having NoDaemon option. You were right! Thanks. >From 476c8605fab4d6c575c38796dd9dccaf854cf536 Mon Sep 17 00:00:00 2001 From: Binathi Bingi Date: Thu, 30 Oct 2014 13:43:13 +0530 Subject: [PATCH] Restoring back