Re: [FFmpeg-devel] [PATCH] fate: Test pullup and fieldmatch with 5 instead of 1 frame

2015-05-10 Thread Clément Bœsch
On Mon, May 11, 2015 at 12:44:14AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > tests/fate-run.sh|3 ++- > tests/fate/filter-video.mak |4 ++-- > tests/ref/fate/filter-pixfmts-fieldmatch | 10 +- > tests/ref/

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add av_format_option_for_user() callback system

2015-05-10 Thread Timothy Gu
On May 10, 2015 10:26 PM, "James Almer" wrote: > > On 10/05/15 10:18 PM, Michael Niedermayer wrote: > > Signed-off-by: Michael Niedermayer > > --- > > libavutil/opt.c | 32 > > libavutil/opt.h | 21 + > > 2 files changed, 53 insertions(+)

Re: [FFmpeg-devel] [PATCH] avformat/subtitles: Use size_t for len

2015-05-10 Thread Clément Bœsch
On Sun, May 10, 2015 at 03:38:40PM +0200, Michael Niedermayer wrote: > string length could theoretically be larger than int > > Signed-off-by: Michael Niedermayer > --- > libavformat/subtitles.c |4 ++-- > libavformat/subtitles.h |2 +- > 2 files changed, 3 insertions(+), 3 deletions(-)

Re: [FFmpeg-devel] [PATCH 1/4] avutil: add av_format_option_for_user() callback system

2015-05-10 Thread James Almer
On 10/05/15 10:18 PM, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavutil/opt.c | 32 > libavutil/opt.h | 21 + > 2 files changed, 53 insertions(+) > If this is meant to solve the whole debate from the "Tell

Re: [FFmpeg-devel] [PATCH] avcodec/libx265: use x265 Multi-library Interface to query the API

2015-05-10 Thread Gopu Govindaswamy
Hello Derek, Thanks for review, Do i need to send a new patch or this patch itself can move into ffmpeg repo? Regards Gopu On Sat, May 9, 2015 at 12:38 AM, Derek Buitenhuis < derek.buitenh...@gmail.com> wrote: > On 5/7/2015 10:17 AM, Gopu Govindaswamy wrote: > > Hello, > > > > this patch is ffm

Re: [FFmpeg-devel] ffserver jpg patch

2015-05-10 Thread ill
It applies for me. Konsole output $ patch -p1 I still haven't gotten a reply about the author. Can I just set the author as anybody or does it have to be someone specific? On Sun, May 10, 2015 at 07:20:02PM -0600, ill wrote: Can the patch be applied now? please provide a patch which applies

[FFmpeg-devel] [PATCH 2/2] avcodec: optimize mpegvideo decoder for Loongson-3 v1

2015-05-10 Thread 周晓勇
>From 3d5a9d0d38c96d6b6ec51b082102f3a231b5b881 Mon Sep 17 00:00:00 2001 From: ZhouXiaoyong Date: Mon, 11 May 2015 09:27:00 +0800 Subject: [PATCH 2/2] avcodec: optimize mpegvideo decoder for Loongson-3 v1 Signed-off-by: ZhouXiaoyong --- libavcodec/mips/Makefile |4 + libavcodec/m

[FFmpeg-devel] [PATCH 1/2] configure: disabled -mips64 option for loongson and remove redundant flags

2015-05-10 Thread 周晓勇
>From 9837274dcee5e1900160901cf28d883246a7ecfb Mon Sep 17 00:00:00 2001 From: Zhou Xiaoyong Date: Mon, 11 May 2015 03:28:52 -0400 Subject: [PATCH 1/2] configure: disabled -mips64 option for loongson and remove redundant flags 1.Option -march=loongson3a conflicts with -mips64 or -mips64r2. 2.Opti

Re: [FFmpeg-devel] ffserver jpg patch

2015-05-10 Thread Michael Niedermayer
On Sun, May 10, 2015 at 07:20:02PM -0600, ill wrote: > Can the patch be applied now? please provide a patch which applies this one does not (see below) also make sure the patch is a proper git patch for example one generated by "git format-patch -1" also please make sure it has a matching commit m

[FFmpeg-devel] ffserver jpg patch

2015-05-10 Thread ill
Can the patch be applied now? On Mon, May 04, 2015 at 06:35:36PM -0600, ill wrote: I changed it to git and add the .write header to the last part. The first part compiled after I changed ffserver.c, so it is no longer corrupted. Muxer detection seems to work when I tried it for the middle pa

[FFmpeg-devel] [PATCH 4/4] ffmpeg: set format_option_for_user() callback

2015-05-10 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- cmdutils.c |6 ++ cmdutils.h |2 ++ ffmpeg.c |3 +++ ffmpeg_opt.c |2 ++ 4 files changed, 13 insertions(+) diff --git a/cmdutils.c b/cmdutils.c index db89256..f24f65d 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -2111,6 +2111,12 @

[FFmpeg-devel] [PATCH 2/4] avcodec: add format_option_for_user_func callback

2015-05-10 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/avcodec.h |3 +++ libavcodec/options_table.h |1 + 2 files changed, 4 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4aeb57a..4560d8c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -37,

[FFmpeg-devel] [PATCH 1/4] avutil: add av_format_option_for_user() callback system

2015-05-10 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavutil/opt.c | 32 libavutil/opt.h | 21 + 2 files changed, 53 insertions(+) diff --git a/libavutil/opt.c b/libavutil/opt.c index 62db1b5..12b5532 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c

[FFmpeg-devel] [PATCH 3/4] avcodec/mpeg12enc: Use av_format_option_for_user()

2015-05-10 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/mpeg12enc.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavcodec/mpeg12enc.c b/libavcodec/mpeg12enc.c index edcce35..33725ba 100644 --- a/libavcodec/mpeg12enc.c +++ b/libavcodec/mpeg12enc.c @@ -199,8 +199,10 @@ stat

Re: [FFmpeg-devel] [PATCH] dashenc: replace attribute id with contentType for the AdaptationSet element

2015-05-10 Thread Michael Niedermayer
On Sun, May 10, 2015 at 03:31:44AM -0300, James Almer wrote: > id should be an integer, not a string. It is also optional, so use > contentType instead which is the proper attribute for these values. > > This addresses ticket #4545, fixing an MPD validation error. > > Signed-off-by: James Almer

[FFmpeg-devel] [PATCH] fate: Test pullup and fieldmatch with 5 instead of 1 frame

2015-05-10 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- tests/fate-run.sh|3 ++- tests/fate/filter-video.mak |4 ++-- tests/ref/fate/filter-pixfmts-fieldmatch | 10 +- tests/ref/fate/filter-pixfmts-pullup | 24 4 files changed,

[FFmpeg-devel] Enable all tracks in Mov file

2015-05-10 Thread Kevin Wells
What lines of code do I need to change in libavformat/movenc.c file to enable all audio tracks, and timecode track (basically all tracks) in a quicktime mov file please? I searched through the list and found the answer, but it related to a much older version of ffmpeg, so didn't relate. Kind regar

Re: [FFmpeg-devel] [PATCH]Tell users about -use_absolute_path

2015-05-10 Thread Carl Eugen Hoyos
wm4 googlemail.com> writes: > > Carl Eugen: > > > > > > > + "Absolute path %s not tried for security reasons, " > > > > > > > + "pass -use_absolute_path 1 to force using absolute paths\n", > --demuxer-lavf-o=use_absolute_path=1 Please make this a whole sentence like above to I can commit it.

[FFmpeg-devel] [PATCH] avformat/subtitles: Use size_t for len

2015-05-10 Thread Michael Niedermayer
string length could theoretically be larger than int Signed-off-by: Michael Niedermayer --- libavformat/subtitles.c |4 ++-- libavformat/subtitles.h |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/subtitles.c b/libavformat/subtitles.c index 67624fc..5bdb

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxf: Simplify PRINT_KEY()

2015-05-10 Thread Michael Niedermayer
On Thu, May 07, 2015 at 03:48:25AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavformat/mxf.h | 12 ++-- > 1 file changed, 2 insertions(+), 10 deletions(-) applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Re: [FFmpeg-devel] [PATCH 2/2] avformat/mxf: Always evaluate PRINT_KEY() arguments at compile time

2015-05-10 Thread Michael Niedermayer
On Thu, May 07, 2015 at 03:48:26AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavformat/mxf.h | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) applied [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Ever

Re: [FFmpeg-devel] [PATCH] avformat_alloc_context: initialize raw_packet_buffer_remaining_size.

2015-05-10 Thread Reimar Döffinger
On Sat, May 09, 2015 at 11:41:17PM +0200, Michael Niedermayer wrote: > On Sat, May 09, 2015 at 08:57:26PM +0200, Reimar Döffinger wrote: > > This currently works for most users because > > avformat_open_input sets it, but this patch fixes any > > applications not using that function. > > > > Signe