Re: [FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 06:33:52PM +0300, Vadim Belov wrote: --- libavformat/Makefile | 2 +- libavformat/asf.c| 4 + libavformat/asf.h| 12 ++- libavformat/asf_ex.h | 58 ++ libavformat/asf_trim.c | 228

Re: [FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Vadim Belov
Sorry, please don't post, I'll send a new one, Thanks! On Jul 1, 2015 7:12 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Jul 01, 2015 at 06:33:52PM +0300, Vadim Belov wrote: --- libavformat/Makefile | 2 +- libavformat/asf.c| 4 +

[FFmpeg-devel] GSoC Weekly Report (libswscale refactor)

2015-07-01 Thread Pedro Arthur
Hi, The past week I spent most of the time working in a fix for the crash when using ./ffmpeg -i lena.pnm -vf format=gbrp test.avi I'm now working in the line pool and ring buffer. Soon I should send a patch which fixes the crash and one for the line pool e ring buffer implementation.

Re: [FFmpeg-devel] GreenMetadata complexity metric access through high level API

2015-07-01 Thread Vittorio Giovara
On Wed, Jul 1, 2015 at 11:08 AM, Nicolas Derouineau nicolas.derouin...@vitec.com wrote: Hello, H264 GreenMetadata parsing is now supported in ffmpeg, but the informations are stored in the h264context, which is not available at a higher level. Is it possible to add a new field named

Re: [FFmpeg-devel] [PATCH 5/5] tabs to spaces and comments

2015-07-01 Thread Paul B Mahol
On 7/1/15, Vadim Belov vadim.be...@gmail.com wrote: From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/asf.h | 8 +- libavformat/asf_ex.h| 29 ++-- libavformat/asf_trim.c | 366 libavformat/asf_trim.h | 42 +++---

[FFmpeg-devel] [PATCH 3/5] ASF write indexing object with duration

2015-07-01 Thread Vadim Belov
From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/asf_ex.h | 66 ++ libavformat/asf_trim.c | 26 libavformat/asf_trim.h | 49 + 3 files changed, 141 insertions(+) create mode

Re: [FFmpeg-devel] [PATCH 1/5] Metadata attribute passing in ASF

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 02:27:30PM +0300, Vadim Belov wrote: --- ffmpeg.c | 7 ++- libavformat/asf.h| 9 ++- libavformat/asfdec.c | 32 +- libavformat/asfenc.c | 60 --- libavformat/cache.c

Re: [FFmpeg-devel] [PATCH 2/5] copy stream metadata when using concat

2015-07-01 Thread Vadim Belov
Thanks! On Wed, Jul 1, 2015 at 3:56 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Jul 01, 2015 at 01:49:06PM +0300, Vadim Belov wrote: --- libavformat/concatdec.c | 2 ++ 1 file changed, 2 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint:

[FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Vadim Belov
--- libavformat/Makefile | 2 +- libavformat/asf.c| 4 + libavformat/asf.h| 12 ++- libavformat/asf_ex.h | 58 ++ libavformat/asf_trim.c | 228 +++ libavformat/asf_trim.h

Re: [FFmpeg-devel] [PATCH] lavu: add an API function to return the FFmpeg version string

2015-07-01 Thread Michael Niedermayer
On Tue, Jun 30, 2015 at 11:57:53PM +0200, wm4 wrote: This returns something like N-73264-gb54ac84. This is much more useful than the individual library versions, of which there are too much and which are very hard to map back to releases or git commits. --- This actually just returns the

[FFmpeg-devel] FFV1 and Matroska at IETF 93

2015-07-01 Thread Tessa Fallon
The MediaArea PREFORMA team is pleased to share that standardization of FFV1 and Matroska will be on the agenda at IETF 93 in Prague. Discussion about IETF involvement in standardization of these two formats will be held on Wednesday, July 22, as part of the IETF DISPATCH Working Group meeting.

Re: [FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 03:49:11PM +0300, Vadim Belov wrote: --- libavformat/Makefile | 2 +- libavformat/asf.c| 4 + libavformat/asf.h| 12 ++- libavformat/asf_ex.h | 58 ++ libavformat/asf_trim.c | 228

Re: [FFmpeg-devel] [PATCH 2/5] copy stream metadata when using concat

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 01:49:06PM +0300, Vadim Belov wrote: --- libavformat/concatdec.c | 2 ++ 1 file changed, 2 insertions(+) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Into a blind darkness they enter who follow after the Ignorance,

Re: [FFmpeg-devel] GSoC update

2015-07-01 Thread Nicolas George
Le duodi 12 messidor, an CCXXIII, Stephan Holljes a écrit : This might be a stupid question, but how would I go about that? Just use open() and read() from stdio.h or are there structs that allow me to do that even more easily? You must use the avio family of function, not the OS functions

[FFmpeg-devel] [PATCH] avfilter/vf_lut: 10bit planar yuv support

2015-07-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol one...@gmail.com --- The fate test should be redone. --- libavfilter/vf_lut.c | 57 --- tests/ref/fate/filter-pixfmts-lut | 4 +++ 2 files changed, 51 insertions(+), 10 deletions(-) diff --git a/libavfilter/vf_lut.c

[FFmpeg-devel] [PATCH 1/5] Metadata attribute passing in ASF

2015-07-01 Thread Vadim Belov
From: unknown vad...@vadimb-t440.nice.com --- ffmpeg.c | 7 ++- libavformat/asf.h| 9 ++- libavformat/asfdec.c | 32 +- libavformat/asfenc.c | 60 --- libavformat/cache.c | 6 +-

[FFmpeg-devel] [PATCH 3/5] ASF write indexing object with duration

2015-07-01 Thread Vadim Belov
From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/asf_ex.h | 66 ++ libavformat/asf_trim.c | 26 libavformat/asf_trim.h | 49 + 3 files changed, 141 insertions(+) create mode

[FFmpeg-devel] [PATCH 4/5] ASF write indexing object with duration

2015-07-01 Thread Vadim Belov
From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/Makefile | 2 +- libavformat/asf.c | 4 + libavformat/asf.h | 17 ++-- libavformat/asf_ex.h | 27 ++- libavformat/asf_trim.c | 206 - libavformat/asf_trim.h | 86

[FFmpeg-devel] [PATCH 0/5] Extended ASF functionality

2015-07-01 Thread Vadim Belov
ASF streams metadata copy Vadim Belov (3): ASF write indexing object with duration ASF write indexing object with duration tabs to spaces and comments unknown (2): Metadata attribute passing in ASF copy stream metadata when using concat ffmpeg.c | 7 +-

[FFmpeg-devel] [PATCH 5/5] tabs to spaces and comments

2015-07-01 Thread Vadim Belov
From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/asf.h | 8 +- libavformat/asf_ex.h| 29 ++-- libavformat/asf_trim.c | 366 libavformat/asf_trim.h | 42 +++--- libavformat/asfdec.c| 24 ++-- libavformat/asfenc.c

[FFmpeg-devel] [PATCH 2/5] copy stream metadata when using concat

2015-07-01 Thread Vadim Belov
From: unknown vad...@vadimb-t440.nice.com --- libavformat/concatdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index f07cfd7..c61d5c2 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -172,6 +172,8 @@ static int

[FFmpeg-devel] [PATCH 2/5] copy stream metadata when using concat

2015-07-01 Thread Vadim Belov
--- libavformat/concatdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c index f07cfd7..c61d5c2 100644 --- a/libavformat/concatdec.c +++ b/libavformat/concatdec.c @@ -172,6 +172,8 @@ static int copy_stream_props(AVStream *st, AVStream

[FFmpeg-devel] GreenMetadata complexity metric access through high level API

2015-07-01 Thread Nicolas Derouineau
Hello, H264 GreenMetadata parsing is now supported in ffmpeg, but the informations are stored in the h264context, which is not available at a higher level. Is it possible to add a new field named upcoming complexity metrics, which should be codec agnostic, either in the avcodeccontext struct

Re: [FFmpeg-devel] [PATCH 2/5] copy stream metadata when using concat

2015-07-01 Thread Nicolas George
Le tridi 13 messidor, an CCXXIII, Vadim Belov a écrit : From: unknown vad...@vadimb-t440.nice.com Not good. Please configure Git to include a valid name and address. --- libavformat/concatdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/concatdec.c

[FFmpeg-devel] [PATCH 4/5] ASF write indexing object with duration

2015-07-01 Thread Vadim Belov
From: Vadim Belov vad...@vadimb-t440.nice.com --- libavformat/Makefile | 2 +- libavformat/asf.c | 4 + libavformat/asf.h | 17 ++-- libavformat/asf_ex.h | 27 ++- libavformat/asf_trim.c | 206 - libavformat/asf_trim.h | 86

[FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Vadim Belov
--- libavformat/Makefile | 2 +- libavformat/asf.c| 4 + libavformat/asf.h| 12 ++- libavformat/asf_ex.h | 58 ++ libavformat/asf_trim.c | 228 +++ libavformat/asf_trim.h

Re: [FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Vadim Belov
Thanks Michael, I've sent a fix of this patch, Currently it doesn't change PACKET_SIZE, which was pretty specific for the product I'm dealing with. On Wed, Jul 1, 2015 at 4:21 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Jul 01, 2015 at 03:49:11PM +0300, Vadim Belov wrote: ---

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for mpegvideo functions

2015-07-01 Thread Michael Niedermayer
On Mon, Jun 29, 2015 at 08:57:12PM +0530, shivraj.pa...@imgtec.com wrote: From: Shivraj Patil shivraj.pa...@imgtec.com This patch adds MSA (MIPS-SIMD-Arch) optimizations for mpegvideo functions in new file mpegvideo_msa.c Signed-off-by: Shivraj Patil shivraj.pa...@imgtec.com ---

[FFmpeg-devel] [PATCH] lavu: Makefile: skip atomic.c if native atomics are available

2015-07-01 Thread Rodger Combs
This prevents a linker warning and skips a useless compilation --- libavutil/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavutil/Makefile b/libavutil/Makefile index abfd10f..6fa810e 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -78,7 +78,6 @@

Re: [FFmpeg-devel] [PATCH 1/1] Extended ASF functionality

2015-07-01 Thread Vadim Belov
Hi, Please see the last patch with more detailed explanation. Thanks, Vadim On Wed, Jul 1, 2015 at 7:16 PM, Hendrik Leppkes h.lepp...@gmail.com wrote: On Wed, Jul 1, 2015 at 6:11 PM, Michael Niedermayer michae...@gmx.at wrote: On Wed, Jul 01, 2015 at 06:33:52PM +0300, Vadim Belov wrote:

Re: [FFmpeg-devel] [PATCH] avformat/rtmpproto: increase hardcoded url/path lengths

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 04:35:16PM +, Carl Eugen Hoyos wrote: Paul B Mahol onemda at gmail.com writes: #define APP_MAX_LENGTH 1024 -#define PLAYPATH_MAX_LENGTH 256 -#define TCURL_MAX_LENGTH 512 +#define PLAYPATH_MAX_LENGTH 512 +#define TCURL_MAX_LENGTH 1024 Please mention

Re: [FFmpeg-devel] [PATCH] lavu: Makefile: skip atomic.c if native atomics are available

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 02:20:08PM -0500, Rodger Combs wrote: This prevents a linker warning and skips a useless compilation --- libavutil/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavutil/Makefile b/libavutil/Makefile index abfd10f..6fa810e 100644

[FFmpeg-devel] [PATCH] ffmpeg_opt: allow the user to ignore unused stream maps

2015-07-01 Thread Rodger Combs
--- ffmpeg_opt.c | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index 5c2bd48..d374d89 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -231,6 +231,7 @@ static int opt_map(void *optctx, const char *opt, const char *arg) int

[FFmpeg-devel] [PATCH 1/1] Extended ASF functionality:

2015-07-01 Thread Vadim Belov
1. Copy stream metadata specific attribute named streamDirection 2. Create top-level Index Object for output file with intervals of 10sec 3. Change of Preroll time to 0 for player to start playing the file immediately --- libavformat/Makefile | 2 +- libavformat/asf.c

Re: [FFmpeg-devel] [FFmpeg-cvslog] aacenc: add support for coding of intensity stereo scalefactor indices

2015-07-01 Thread James Almer
ffmpeg | branch: master | Rostislav Pehlivanov atomnuker at gmail.com | Fri Jun 26 21:16:34 2015 +0100| [7c10b87b5744179f16411f5981e96738021ec7ca] | committer: Michael Niedermayer aacenc: add support for coding of intensity stereo scalefactor indices This commit adds support for the

[FFmpeg-devel] [PATCH] avformat/rtmpproto: increase hardcoded url/path lengths

2015-07-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol one...@gmail.com --- libavformat/rtmpproto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 43ddfe8..0abeadc 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -49,8

Re: [FFmpeg-devel] [PATCH] avfilter/af_astats: export metadata

2015-07-01 Thread Paul B Mahol
On 6/30/15, Dave Rice d...@dericed.com wrote: Hi Paul, On Jun 29, 2015, at 7:40 PM, Paul B Mahol one...@gmail.com wrote: Signed-off-by: Paul B Mahol one...@gmail.com --- doc/filters.texi| 35 ++ libavfilter/af_astats.c | 80

[FFmpeg-devel] [PATCH] avcodec/nvenc: Add support for H.264 High 444 Predictive encoding

2015-07-01 Thread Philip Langdale
Newer versions of the nvenc hardware support The High 444 Predictive profile of H.264, and can also do lossless encoding under this profile if desired. This change introduces support for the profile, and exposes the appropriate presets for requesting lossless encoding. I tested lossless by

Re: [FFmpeg-devel] PATCH: log more information on failure to init simple filter graph

2015-07-01 Thread Michael Niedermayer
On Wed, Jul 01, 2015 at 01:24:26PM -0600, Roger Pack wrote: See attached. Feel free to adjust it, but having more information helped me a bit today. Cheers! -roger- ffmpeg_filter.c | 23 +-- 1 file changed, 21 insertions(+), 2 deletions(-)