[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 genera

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(-) > b2e006e2a9e636520941

[FFmpeg-devel] [PATCH] texi2pod: fix an unescaped left brace

2015-07-01 Thread James Almer
This silences some deprecation warnings Signed-off-by: James Almer --- doc/texi2pod.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl index e1ff6b4..9a9b34f 100644 --- a/doc/texi2pod.pl +++ b/doc/texi2pod.pl @@ -384,7 +384,7 @@ sub postproce

[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] [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 100

[FFmpeg-devel] [PATCH] swscale: implement YA8 output

2015-07-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- Are _1_c and _2_c actually needed? --- libswscale/output.c | 99 + libswscale/utils.c | 2 +- 2 files changed, 100 insertions(+), 1 deletion(-) diff --git a/libswscale/output.c b/libswscale/output.c index f63

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 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 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 wrote: > On Wed, Jul 1, 2015 at 6:11 PM, Michael Niedermayer > wrote: > > On Wed, Jul 01, 2015 at 06:33:52PM +0300, Vadim Belov wrote: > >> --- > >> libavformat/Makefile

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

2015-07-01 Thread Roger Pack
See attached. Feel free to adjust it, but having more information helped me a bit today. Cheers! -roger- 0001-log-more-information-on-failure-to-init-simple-filte.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http

[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 @@ BUIL

[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 sync_f

[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] [FFmpeg-cvslog] aacenc: add support for coding of intensity stereo scalefactor indices

2015-07-01 Thread James Almer
> ffmpeg | branch: master | Rostislav Pehlivanov | 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 coding of intensity s

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

2015-07-01 Thread Carl Eugen Hoyos
Paul B Mahol 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 ticket #4103 in the commit message. Carl Eugen __

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

2015-07-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- 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 +49,8 @@ #endif

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

2015-07-01 Thread Hendrik Leppkes
On Wed, Jul 1, 2015 at 6:11 PM, Michael Niedermayer wrote: > 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

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" wrote: > On Wed, Jul 01, 2015 at 06:33:52PM +0300, Vadim Belov wrote: > > --- > > libavformat/Makefile | 2 +- > > libavformat/asf.c| 4 + > > libavformat/asf.h

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/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 > > This patch adds MSA (MIPS-SIMD-Arch) optimizations for mpegvideo functions in > new file mpegvideo_msa.c > > Signed-off-by: Shivraj Patil > --- > libavcodec/mips/Makefile | 2 + >

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 wrote: > On Wed, Jul 01, 2015 at 03:49:11PM +0300, Vadim Belov wrote: > > --- > > libavformat

[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 |

[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. T

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 d

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] 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 th

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 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: 9FF2128B147EF6

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 Ignoranc

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

[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/5] Metadata attribute passing in ASF

2015-07-01 Thread Hendrik Leppkes
On Wed, Jul 1, 2015 at 1:27 PM, Vadim Belov wrote: > --- > ffmpeg.c | 7 ++- > libavformat/asf.h| 9 ++- > libavformat/asfdec.c | 32 +- > libavformat/asfenc.c | 60 --- > libavformat/cache.c

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

2015-07-01 Thread Vadim Belov
From: Vadim Belov --- 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 +++-- liba

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

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

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

2015-07-01 Thread Vadim Belov
--- ffmpeg.c | 7 ++- libavformat/asf.h| 9 ++- libavformat/asfdec.c | 32 +- libavformat/asfenc.c | 60 --- libavformat/cache.c | 6 +- libavformat/dashenc.c| 6 +- libavform

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

2015-07-01 Thread Vadim Belov
Thanks Nicolas, I reconfigured Git and sent again. It was tested and the added functionality works. On Wed, Jul 1, 2015 at 1:19 PM, Nicolas George wrote: > Le tridi 13 messidor, an CCXXIII, Vadim Belov a écrit : > > From: unknown > > Not good. Please configure Git to include a valid name and a

[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 *so

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

2015-07-01 Thread Paul B Mahol
On 7/1/15, Vadim Belov wrote: > From: Vadim Belov > > --- > libavformat/asf.h | 8 +- > libavformat/asf_ex.h| 29 ++-- > libavformat/asf_trim.c | 366 > > libavformat/asf_trim.h | 42 +++--- > libavformat/asfdec.c| 24 ++-- >

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 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 "upcoming complexity metrics",

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 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 b/libavformat/concatdec.c > index f0

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

2015-07-01 Thread Vadim Belov
From: Vadim Belov --- 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| 105 +++--- liba

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

2015-07-01 Thread Vadim Belov
From: unknown --- 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 *s

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

2015-07-01 Thread Vadim Belov
From: Vadim Belov --- 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 +++-- liba

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

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

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

2015-07-01 Thread Vadim Belov
From: unknown --- ffmpeg.c | 7 ++- libavformat/asf.h| 9 ++- libavformat/asfdec.c | 32 +- libavformat/asfenc.c | 60 --- libavformat/cache.c | 6 +- libavformat/dashenc.c|

[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 +- libav

[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

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

2015-07-01 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- 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 b/libavfilter/vf_

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

2015-07-01 Thread Paul B Mahol
On 6/30/15, Dave Rice wrote: > Hi Paul, > >> On Jun 29, 2015, at 7:40 PM, Paul B Mahol wrote: >> >> Signed-off-by: Paul B Mahol >> --- >> doc/filters.texi| 35 ++ >> libavfilter/af_astats.c | 80 >> +++-- >> 2 files changed, 1