Re: [FFmpeg-devel] [PATCH] ffmpeg_opt: set correct priv_data for feed stream

2014-11-05 Thread Michael Niedermayer
On Thu, Nov 06, 2014 at 12:59:45AM +0100, Lukasz Marek wrote: > new_output_stream creates a codec context with arbitraty picked codec. > Later data is updated, but priv_data are left alone. > There is a bit chance there is a mismatch between codecs. > > Signed-off-by: Lukasz Marek > --- > ffmpeg

Re: [FFmpeg-devel] FFserver bug?

2014-11-05 Thread Lukasz Marek
On 05.11.2014 02:15, Lukasz Marek wrote: On 31.10.2014 02:14, 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

[FFmpeg-devel] [PATCH] ffmpeg_opt: set correct priv_data for feed stream

2014-11-05 Thread Lukasz Marek
new_output_stream creates a codec context with arbitraty picked codec. Later data is updated, but priv_data are left alone. There is a bit chance there is a mismatch between codecs. Signed-off-by: Lukasz Marek --- ffmpeg_opt.c | 16 libavformat/ffmdec.c | 6 -- 2 fi

Re: [FFmpeg-devel] [PATCH] v4l2: setting device parameters early

2014-11-05 Thread Michael Niedermayer
On Wed, Oct 22, 2014 at 04:12:31PM +0200, Giorgio Vazzana wrote: > Hello, > > this was probably wrong and has caused i can revert it if you want ? > https://trac.ffmpeg.org/ticket/3517 . Will investigate. > > Giorgio Vazzana > > 2014-01-05 17:17 GMT+01:00 Michael Niedermayer : > > On Sun, Jan

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

2014-11-05 Thread Nicolas George
Le quintidi 15 brumaire, an CCXXIII, Binathi Bingi a écrit : > I see, we need dup2() to redirect the output to logfile. Therefore, I put > it back in the patch. > > But, I am not sure if we should definitely use it, because I can't see any > messages on the console as all are being redirected to l

Re: [FFmpeg-devel] [PATCH] ffmpeg: init sub2video.last_pts.

2014-11-05 Thread Michael Niedermayer
On Sat, Nov 01, 2014 at 02:38:02PM +0100, Nicolas George wrote: > Get the heartbeat working when the video has negative timestamps. > > Fix trac ticket #4062. > > Signed-off-by: Nicolas George > --- > ffmpeg_filter.c | 1 + > 1 file changed, 1 insertion(+) looks ok, applied thanks [...] --

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 07:39:19PM +0100, wm4 wrote: > On Wed, 5 Nov 2014 18:06:42 +1100 > Matt Oliver wrote: > > > Currently the extra filters provided by mpcodecs require inline asm support > > to compile. However these filters all provide non-asm alternatives that can > > be used with the corr

Re: [FFmpeg-devel] [PATCH] v4l2: support MPEG4 compressed streams

2014-11-05 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 04:38:30PM +0400, Andrey Utkin wrote: > --- > libavdevice/v4l2-common.c | 3 +++ > 1 file changed, 3 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The greatest way to live with honor in this world is to be

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread wm4
On Wed, 5 Nov 2014 18:06:42 +1100 Matt Oliver wrote: > Currently the extra filters provided by mpcodecs require inline asm support > to compile. However these filters all provide non-asm alternatives that can > be used with the correct pre-processor guard. > > Based on some recent discussions it

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread Michael Niedermayer
On Thu, Nov 06, 2014 at 12:43:35AM +1100, Matt Oliver wrote: > > > > > > did you post this to mplayer-dev ? > > > > No not as yet, thought I would put it up here for feedback first. Also > someone more familiar with mpcodecs in mplayer might know of other places > that could benefit from a similar

[FFmpeg-devel] [PATCH] doc/examples: add avio_writing examples

2014-11-05 Thread Stefano Sabatini
Show how to use the AVIO writing API. --- .gitignore | 1 + configure | 1 + doc/examples/Makefile | 1 + doc/examples/avio_writing.c | 225 4 files changed, 228 insertions(+) create mode 100644 doc/exampl

Re: [FFmpeg-devel] [PATCH 3/3] idet improvements: add repeated field detection

2014-11-05 Thread Michael Niedermayer
On Tue, Nov 04, 2014 at 01:14:07PM -0800, Kevin Mitchell wrote: > oops. fixed. > doc/filters.texi | 19 +-- > libavfilter/version.h |2 +- > libavfilter/vf_idet.c | 41 +++-- > libavfilter/vf_idet.h | 10 ++ > 4 files chan

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread Matt Oliver
> > > did you post this to mplayer-dev ? > No not as yet, thought I would put it up here for feedback first. Also someone more familiar with mpcodecs in mplayer might know of other places that could benefit from a similar change. ___ ffmpeg-devel mailing

[FFmpeg-devel] [PATCH] v4l2: support MPEG4 compressed streams

2014-11-05 Thread Andrey Utkin
--- libavdevice/v4l2-common.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavdevice/v4l2-common.c b/libavdevice/v4l2-common.c index 966b9a1..196c09b 100644 --- a/libavdevice/v4l2-common.c +++ b/libavdevice/v4l2-common.c @@ -46,6 +46,9 @@ const struct fmt_map ff_fmt_conversion_table[]

Re: [FFmpeg-devel] doc/examples/muxing.c

2014-11-05 Thread JULIAN GARDNER
> > From: Stefano Sabatini >To: FFmpeg development discussions and patches >Sent: Wednesday, 5 November 2014, 12:23 >Subject: Re: [FFmpeg-devel] doc/examples/muxing.c > > >On date Tuesday 2014-11-04 17:39:22 +, JULIAN GARDNER encoded: >> I have been working o

Re: [FFmpeg-devel] [PATCH 2/2] [RFC]lavf/ffm: update with more options.

2014-11-05 Thread Lukasz Marek
On 5 November 2014 12:25, Stefano Sabatini wrote: > On date Monday 2014-11-03 00:54:01 +0100, Lukasz Marek encoded: > > On 03.11.2014 00:40, Stefano Sabatini wrote: > > >On date Sunday 2014-11-02 19:19:14 +0100, Lukasz Marek encoded: > > >>TODO: bump micro > > >> > > >>Many common codec options a

Re: [FFmpeg-devel] [PATCH 2/2] [RFC]lavf/ffm: update with more options.

2014-11-05 Thread Stefano Sabatini
On date Monday 2014-11-03 00:54:01 +0100, Lukasz Marek encoded: > On 03.11.2014 00:40, Stefano Sabatini wrote: > >On date Sunday 2014-11-02 19:19:14 +0100, Lukasz Marek encoded: > >>TODO: bump micro > >> > >>Many common codec options are not via ffm protocol. > >>This commit adds common A/V encodin

Re: [FFmpeg-devel] doc/examples/muxing.c

2014-11-05 Thread Stefano Sabatini
On date Tuesday 2014-11-04 17:39:22 +, JULIAN GARDNER encoded: > I have been working on a program which needs to do audio resampling, and used > muxing.c as a base but now i am coming up against a problem. > > Changing muxing.c so that the sound produced by the routine > get_audio_frame is n

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 06:06:42PM +1100, Matt Oliver wrote: > Currently the extra filters provided by mpcodecs require inline asm support > to compile. However these filters all provide non-asm alternatives that can > be used with the correct pre-processor guard. > > Based on some recent discussi

Re: [FFmpeg-devel] Discuss mp4 fragmented: TFDT::BaseMediaDecodeTime. TRUN::SampleDuration

2014-11-05 Thread Michael Niedermayer
On Sun, Nov 02, 2014 at 06:16:58PM -0800, Alex Sukhanov wrote: > *Hi ffmpeg-devel, I’m sending this mail in order to encourage some > discussion about ISO BMFF specification and find out what people think > about problems described below and if anybody else also have seen these > problems.I’m softw

Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-05 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 03:37:04AM +0100, wm4 wrote: > On Wed, 5 Nov 2014 03:19:04 +0100 > Michael Niedermayer wrote: > > > On Wed, Nov 05, 2014 at 02:59:45AM +0100, wm4 wrote: > > > On Wed, 5 Nov 2014 02:44:12 +0100 > > > Michael Niedermayer wrote: > > > > > > > On Wed, Nov 05, 2014 at 02:13:2

Re: [FFmpeg-devel] [PATCH] Enable mpcodecs without needing inline asm

2014-11-05 Thread Carl Eugen Hoyos
Matt Oliver gmail.com> writes: > if anyone knows of why the _INLINE variants > werent/shouldnt be used then feel free to let me know. ^^ To keep the source code in sync with MPlayer iirc. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@

[FFmpeg-devel] Bypass video H264 IP UDP Multicast over FLV RTMP

2014-11-05 Thread Dang Duc Hung
Hi I’m using FFmpeg to convert UDP video to RTMP like that ffmpeg -i "udp://x.x.x.x:xxx -vcodec copy -acodec aac -strict -2 -b:a 32k -ac 1 -ar 32000 -f flv "rtmp://x.x.x.x/ app=testtv playpath=high" And then convert RTMP output to HLS by Server But when I use VLC player or other player to play