Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread Timo Teras
On Wed, 4 Apr 2018 02:30:34 -0300 James Almer wrote: > On 4/4/2018 2:11 AM, Timo Teras wrote: > > On Wed, 4 Apr 2018 01:30:54 -0300 > > James Almer wrote: > > > >> From: Rodger Combs > >> > >> Signed-off-by: James Almer > >> --- > >> Now using the packet list API instead of duplicating the c

Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread James Almer
On 4/4/2018 2:11 AM, Timo Teras wrote: > On Wed, 4 Apr 2018 01:30:54 -0300 > James Almer wrote: > >> From: Rodger Combs >> >> Signed-off-by: James Almer >> --- >> Now using the packet list API instead of duplicating the code locally. >> >> libavformat/flacenc.c | 274 >> ++

Re: [FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread Timo Teras
On Wed, 4 Apr 2018 01:30:54 -0300 James Almer wrote: > From: Rodger Combs > > Signed-off-by: James Almer > --- > Now using the packet list API instead of duplicating the code locally. > > libavformat/flacenc.c | 274 > +++--- 1 file changed, > 238

[FFmpeg-devel] [PATCH] avformat/flacenc: support writing attached pictures

2018-04-03 Thread James Almer
From: Rodger Combs Signed-off-by: James Almer --- Now using the packet list API instead of duplicating the code locally. libavformat/flacenc.c | 274 +++--- 1 file changed, 238 insertions(+), 36 deletions(-) diff --git a/libavformat/flacenc.c b/liba

Re: [FFmpeg-devel] [PATCH] lavf/hls: Remove the dead code in parse_playlist()

2018-04-03 Thread Steven Liu
> On 2 Apr 2018, at 10:18, Steven Liu wrote: > > > >> On 2 Apr 2018, at 07:09, Jun Zhao wrote: >> >> <0001-lavf-hls-Remove-the-dead-code-in-parse_playlist.patch> > > From 96de206d191264d2a5aacff5f877caad1d861439 Mon Sep 17 00:00:00 2001 > From: Jun Zhao > Date: Sun, 1 Apr 2018 11:17:45 +0

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the general developers list

2018-04-03 Thread Steven Liu
> On 4 Apr 2018, at 12:06, Steven Liu wrote: > > > >> On 3 Apr 2018, at 11:29, Steven Liu wrote: >> >> >> >>> On 3 Apr 2018, at 07:24, Jun Zhao wrote: >>> >>> Want to close work with this community, so I request as >>> a general developer. >>> <0001-MAINTAINERS-add-myself-to-the-general

Re: [FFmpeg-devel] [PATCH] MAINTAINERS: add myself to the general developers list

2018-04-03 Thread Steven Liu
> On 3 Apr 2018, at 11:29, Steven Liu wrote: > > > >> On 3 Apr 2018, at 07:24, Jun Zhao wrote: >> >> Want to close work with this community, so I request as >> a general developer. >> <0001-MAINTAINERS-add-myself-to-the-general-developers-lis.patch>__

Re: [FFmpeg-devel] [PATCH 1/5 v2] avformat/utils: make AVPacketList helper functions shared

2018-04-03 Thread James Almer
On 4/3/2018 10:57 PM, James Almer wrote: > On 3/30/2018 2:28 PM, James Almer wrote: >> On 3/27/2018 7:48 PM, James Almer wrote: >>> Based on a patch by Luca Barbato. >>> >>> Signed-off-by: James Almer >>> --- >>> libavformat/internal.h | 38 + >>> libavformat/utils

Re: [FFmpeg-devel] No '.dav' conversion implemented?

2018-04-03 Thread Carl Eugen Hoyos
2018-04-03 17:56 GMT+02:00, yke...@free.fr : > [h264 @ 0x2194000] data partitioning is not implemented. Update your FFmpeg > version to the newest one from Git. If the problem still occurs, it means > that your file has a feature which has not been implemented. Please provide the sample. Thank y

Re: [FFmpeg-devel] [PATCH 1/5 v2] avformat/utils: make AVPacketList helper functions shared

2018-04-03 Thread James Almer
On 3/30/2018 2:28 PM, James Almer wrote: > On 3/27/2018 7:48 PM, James Almer wrote: >> Based on a patch by Luca Barbato. >> >> Signed-off-by: James Almer >> --- >> libavformat/internal.h | 38 + >> libavformat/utils.c| 57 >> +--

Re: [FFmpeg-devel] [PATCH 2/3] avformat/movenc: add rtp_hinting_needed() helper function

2018-04-03 Thread Michael Niedermayer
On Mon, Apr 02, 2018 at 11:36:57AM +0300, Timo Teräs wrote: > This is shared test and this simplifies code a bit. Follow up > commit will have additional tests for this function. > > Signed-off-by: Timo Teräs > --- > libavformat/movenc.c | 30 -- > 1 file changed, 12

Re: [FFmpeg-devel] [PATCH 1/3] ffmpeg: allow setting attached_pic disposition

2018-04-03 Thread Michael Niedermayer
On Mon, Apr 02, 2018 at 11:36:56AM +0300, Timo Teräs wrote: > This is used to signal that image should be stored in metadata > as cover image. > > Signed-off-by: Timo Teräs > --- > fftools/ffmpeg.c | 1 + > 1 file changed, 1 insertion(+) will apply thx [...] -- Michael GnuPG fingerprint:

[FFmpeg-devel] [PATCH] avfilter/vf_scale: Set full range for RGB formats

2018-04-03 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavfilter/vf_scale.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index f741419e7e..bd5c63aa9b 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -406,6 +406,7 @@

Re: [FFmpeg-devel] [PATCH] avfilter/vf_scale: Do not set YUV color range for RGB formats

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 01:30:32AM +0200, Michael Niedermayer wrote: > On Mon, Apr 02, 2018 at 11:52:42AM +0200, Vittorio Giovara wrote: > > On 3/20/18, Michael Niedermayer > > wrote: > > >* Signed-off-by: Michael Niedermayer > >

Re: [FFmpeg-devel] [PATCH] libavformat/aac: Parse all ID3 tags present between ADTS frames

2018-04-03 Thread James Almer
On 4/3/2018 10:40 PM, Carl Eugen Hoyos wrote: > 2018-04-04 3:38 GMT+02:00, James Almer : >> On 4/3/2018 10:33 PM, Carl Eugen Hoyos wrote: >>> 2018-04-03 7:58 GMT+02:00, Mattias Amnefelt : Yes, my feeling was also that it's better to handle this when possible. You are of course correc

Re: [FFmpeg-devel] [PATCH] libavformat/aac: Parse all ID3 tags present between ADTS frames

2018-04-03 Thread Carl Eugen Hoyos
2018-04-04 3:38 GMT+02:00, James Almer : > On 4/3/2018 10:33 PM, Carl Eugen Hoyos wrote: >> 2018-04-03 7:58 GMT+02:00, Mattias Amnefelt : >>> Yes, my feeling was also that it's better to handle this when possible. >>> >>> You are of course correct that the two tags needs to be inbetween >>> frames.

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/utvideodec: use cached bitstream reader

2018-04-03 Thread Carl Eugen Hoyos
2018-04-03 13:38 GMT+02:00, Paul B Mahol : > Signed-off-by: Paul B Mahol > --- > libavcodec/utvideodec.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c > index 82cb038ccd..99b37aa0f3 100644 > --- a/libavcodec/utvideodec.c > +++ b/libavco

Re: [FFmpeg-devel] [PATCH 2/3] doc/libav-merge: bitstream reader is now merged

2018-04-03 Thread Carl Eugen Hoyos
2018-04-03 13:38 GMT+02:00, Paul B Mahol : > Signed-off-by: Paul B Mahol > --- > doc/libav-merge.txt | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/doc/libav-merge.txt b/doc/libav-merge.txt > index 4ba08fc588..6821d0f196 100644 > --- a/doc/libav-merge.txt > +++ b/doc/libav-merge.txt > @@

Re: [FFmpeg-devel] [PATCH] libavformat/aac: Parse all ID3 tags present between ADTS frames

2018-04-03 Thread James Almer
On 4/3/2018 10:33 PM, Carl Eugen Hoyos wrote: > 2018-04-03 7:58 GMT+02:00, Mattias Amnefelt : >> Yes, my feeling was also that it's better to handle this when possible. >> >> You are of course correct that the two tags needs to be inbetween >> frames. Sorry about that, I stripped the sample down to

Re: [FFmpeg-devel] [PATCH] libavformat/aac: Parse all ID3 tags present between ADTS frames

2018-04-03 Thread Carl Eugen Hoyos
2018-04-03 7:58 GMT+02:00, Mattias Amnefelt : > Yes, my feeling was also that it's better to handle this when possible. > > You are of course correct that the two tags needs to be inbetween > frames. Sorry about that, I stripped the sample down too much. I updated > with a sample which has two fram

Re: [FFmpeg-devel] [PATCH] lavc/videotoolbox: fix failure to decode PAFF

2018-04-03 Thread Aman Gupta
On Wed, Mar 28, 2018 at 9:19 PM, Rodger Combs wrote: > --- > libavcodec/videotoolbox.c | 7 ++- > 1 file changed, 2 insertions(+), 5 deletions(-) > > diff --git a/libavcodec/videotoolbox.c b/libavcodec/videotoolbox.c > index f82c31c5df..57b6698e1b 100644 > --- a/libavcodec/videotoolbox.c > +

Re: [FFmpeg-devel] [PATCH] avformat/utils: Stream specifier enhancement

2018-04-03 Thread Michael Niedermayer
On Sun, Apr 01, 2018 at 11:42:34PM +0200, Bodecs Bela wrote: > Dear All, > > currently when specifying the program id you can only decide to select > all stream of the specified program (e.g. p:103 will select all streams > of program 103) or narrow the selection to a specific stream sub index > (

Re: [FFmpeg-devel] [PATCH] libavformat/aac: Parse all ID3 tags present between ADTS frames

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 07:58:53AM +0200, Mattias Amnefelt wrote: > Yes, my feeling was also that it's better to handle this when possible. > > You are of course correct that the two tags needs to be inbetween frames. > Sorry about that, I stripped the sample down too much. I updated with a > samp

Re: [FFmpeg-devel] [PATCH] avformat/hls: copy rw_timeout from parent to child AVIOContexts.

2018-04-03 Thread Steven Liu
2018-04-04 7:53 GMT+08:00 Steven Liu : >>> >>> Look at the code: >>> >>> 205 char *referer; ///< holds HTTP referer set >>> as an AVOption to the HTTP protocol context >>> 206 char *user_agent;///< holds HTTP user agent >>> set as an AVOption to t

Re: [FFmpeg-devel] [PATCH] avformat/hls: copy rw_timeout from parent to child AVIOContexts.

2018-04-03 Thread Steven Liu
>> >> Look at the code: >> >> 205 char *referer; ///< holds HTTP referer set >> as an AVOption to the HTTP protocol context >> 206 char *user_agent;///< holds HTTP user agent >> set as an AVOption to the HTTP protocol context >> 207 char *coo

Re: [FFmpeg-devel] [PATCH] use bcrypt instead of the old wincrypt API

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 11:44:25AM +0200, Steve Lhomme wrote: > Remove the wincrypt API calls since we don't support XP anymore and bcrypt is > available since Vista, even on Windows Store builds. > --- > configure | 6 +++--- > libavutil/random_seed.c | 19 ++- > 2

Re: [FFmpeg-devel] [PATCH 1/3] avformat/mov: Increase support for common encryption.

2018-04-03 Thread Jacob Trimble
>> >> Ping again. I know this is low priority, but I would like to get >> these merged soon. > > Ping. Despite being almost 2 months old, these patches still apply > cleanly. Please take a look. These have been in review for almost 3 > months. Ping (going to keep pinging this until someone mer

Re: [FFmpeg-devel] [PATCH 3/3] avcodec/utvideodec: use cached bitstream reader

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 01:38:14PM +0200, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavcodec/utvideodec.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c > index 82cb038ccd..99b37aa0f3 100644 > --- a/libavcodec/utvideod

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/get_bits: add cached bitstream reader

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 01:38:12PM +0200, Paul B Mahol wrote: [...] > > -static inline void skip_bits_long(GetBitContext *s, int n) > +static inline void refill_32(GetBitContext *s) > { > -#if UNCHECKED_BITSTREAM_READER > -s->index += n; > +#ifdef CACHED_BITSTREAM_READER > +#if !UNCHECKED_B

[FFmpeg-devel] No '.dav' conversion implemented?

2018-04-03 Thread ykerb2
Hi, i tried this ffmpeg -y -i /media/kerb/DVR-Video/NVR.dav -vcodec libx264 -crf 24 -filter:v "setpts=1*PTS" ~/Vidéos/ioutput-file.mp4 It says : Error while decoding stream #0:0: Invalid data found when processing inputkbits/s [NULL @ 0x198c340] missing picture in access unit with size 39t

Re: [FFmpeg-devel] [PATCH 1/2] avcodec/libaomdec: remove duplicate code

2018-04-03 Thread James Almer
On 4/1/2018 4:59 PM, James Almer wrote: > Signed-off-by: James Almer > --- > libaom generates all files as I4xx16 right now, so the code i'm > removing here is unused. And even if it ends up generating I4xx files > down the road, it's safe to assume the bit_depth field in aom_image_t > will still

Re: [FFmpeg-devel] [PATCH] avcodec/imgconvert: fix possible null pointer dereference

2018-04-03 Thread Michael Niedermayer
On Tue, Apr 03, 2018 at 02:41:33PM +0200, Simon Thelen wrote: > regression since 354b26a3945eadd4ed8fcd801dfefad2566241de > --- > libavcodec/imgconvert.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) Thanks alot ! [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF13361

Re: [FFmpeg-devel] [PATCH] avformat/hls: copy rw_timeout from parent to child AVIOContexts.

2018-04-03 Thread Richard Shaffer
On Tue, Apr 3, 2018 at 12:13 AM, Steven Liu wrote: > > > > On 3 Apr 2018, at 14:06, Richard Shaffer wrote: > > > > On Mon, Apr 2, 2018 at 10:15 PM, Steven Liu wrote: > >> > >> > >>> On 3 Apr 2018, at 12:33, Richard Shaffer wrote: > >>> > >>> On Mon, Apr 2, 2018 at 8:31 PM, Steven Liu wrote: >

Re: [FFmpeg-devel] [PATCH][RFC] avcodec/avutil: Add timeline side data

2018-04-03 Thread wm4
On Tue, 3 Apr 2018 17:06:03 +0100 Derek Buitenhuis wrote: > On 4/3/2018 4:15 AM, wm4 wrote: > > So I think all what you've been writing can be reduced to: should this > > really be side data, or would it be better to just make it a new > > AVStream field. > > I don't really have an opinion on

Re: [FFmpeg-devel] [PATCH][RFC] avcodec/avutil: Add timeline side data

2018-04-03 Thread Derek Buitenhuis
On 4/3/2018 4:15 AM, wm4 wrote: > So I think all what you've been writing can be reduced to: should this > really be side data, or would it be better to just make it a new > AVStream field. I don't really have an opinion on this one way or another. Do others? - Derek

Re: [FFmpeg-devel] [PATCH 2/2] pixdesc: deprecate AV_PIX_FMT_FLAG_PSEUDOPAL

2018-04-03 Thread wm4
On Tue, 3 Apr 2018 12:07:43 +0200 Vittorio Giovara wrote: > On Thu, Mar 29, 2018 at 03:30:43PM +0200, wm4 wrote: > >* PSEUDOPAL pixel formats are not paletted, but carried a palette with the > *>* intention of allowing code to treat unpaletted formats as paletted. The > *>* palette simply mapped

Re: [FFmpeg-devel] [PATCH v3 2/3] avutil/log: add av_log_set_opts function

2018-04-03 Thread wm4
On Tue, 3 Apr 2018 10:25:56 +0200 Paul B Mahol wrote: > On 4/3/18, Tobias Rapp wrote: > > On 29.03.2018 20:38, Michael Niedermayer wrote: > >> On Wed, Mar 28, 2018 at 05:03:39PM +0200, Tobias Rapp wrote: > >>> Allows to set log level and flag values from string. > >>> > >>> Signed-off-by: To

Re: [FFmpeg-devel] [PATCH] avcodec/imgconvert: fix possible null pointer dereference

2018-04-03 Thread Paul B Mahol
On 4/3/18, Simon Thelen wrote: > regression since 354b26a3945eadd4ed8fcd801dfefad2566241de > --- > libavcodec/imgconvert.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c > index 7b0005b308..1fd636c83d 100644 > --- a/

[FFmpeg-devel] [PATCH] doc/filters: some more details and modified example to, zmq/azmq

2018-04-03 Thread Bodecs Bela
Dear All, I added some more information about default value of bind_address option and its abbreviated version (b). I modified the example to have named instanced filter and to show its use. please review this patch. thanky you in advance, best regards, Bela Bodecs >From 5464b56e6d21f1e87

Re: [FFmpeg-devel] [PATCH] spdifenc: support ac3 core+eac3 dependent streams

2018-04-03 Thread Anssi Hannula
Hi, Hendrik Leppkes kirjoitti 2018-04-03 13:35: Such streams are found on Blu-ray, and identified as EAC3 type in avformat, while the bitstream of the core stream is actually a pure AC3 frame. Adjust the parsing accordingly, since AC3 frames always hold 6 blocks and the numblkscod syntax elemen

Re: [FFmpeg-devel] swscale/swscale_unscaled : add X86_64 (SSE2, AVX) for uyvyto422

2018-04-03 Thread Martin Vignali
Hello, > > > The mmxext version being slower than the mmx one seems however to be an > > existing issue in the tree, which we should probably deal with. Unless > > of course the test is wrong. > > Its mmx, dealing with it would probably entail just deleting it. Can > leave the ordinary mmx and rem

[FFmpeg-devel] [PATCH] avcodec/imgconvert: fix possible null pointer dereference

2018-04-03 Thread Simon Thelen
regression since 354b26a3945eadd4ed8fcd801dfefad2566241de --- libavcodec/imgconvert.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 7b0005b308..1fd636c83d 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgcon

[FFmpeg-devel] [PATCH 1/3] avcodec/get_bits: add cached bitstream reader

2018-04-03 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/get_bits.h | 268 +- libavcodec/golomb.h | 151 2 files changed, 393 insertions(+), 26 deletions(-) diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index d7cf28637

[FFmpeg-devel] [PATCH 2/3] doc/libav-merge: bitstream reader is now merged

2018-04-03 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/libav-merge.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/libav-merge.txt b/doc/libav-merge.txt index 4ba08fc588..6821d0f196 100644 --- a/doc/libav-merge.txt +++ b/doc/libav-merge.txt @@ -95,7 +95,6 @@ Stuff that didn't reach the codebase: - 0ce

[FFmpeg-devel] [PATCH 3/3] avcodec/utvideodec: use cached bitstream reader

2018-04-03 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavcodec/utvideodec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/utvideodec.c b/libavcodec/utvideodec.c index 82cb038ccd..99b37aa0f3 100644 --- a/libavcodec/utvideodec.c +++ b/libavcodec/utvideodec.c @@ -27,6 +27,7 @@ #include #include +

[FFmpeg-devel] [PATCH] spdifenc: support ac3 core+eac3 dependent streams

2018-04-03 Thread Hendrik Leppkes
Such streams are found on Blu-ray, and identified as EAC3 type in avformat, while the bitstream of the core stream is actually a pure AC3 frame. Adjust the parsing accordingly, since AC3 frames always hold 6 blocks and the numblkscod syntax element is not present. --- libavformat/spdifenc.c | 3 +

Re: [FFmpeg-devel] [PATCH 2/2] pixdesc: deprecate AV_PIX_FMT_FLAG_PSEUDOPAL

2018-04-03 Thread Vittorio Giovara
On Thu, Mar 29, 2018 at 03:30:43PM +0200, wm4 wrote: >* PSEUDOPAL pixel formats are not paletted, but carried a palette with the *>* intention of allowing code to treat unpaletted formats as paletted. The *>* palette simply mapped the byte values to the resulting RGB values, *>* making it some sort

[FFmpeg-devel] [PATCH] use bcrypt instead of the old wincrypt API

2018-04-03 Thread Steve Lhomme
Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. --- configure | 6 +++--- libavutil/random_seed.c | 19 ++- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/configure b

Re: [FFmpeg-devel] [PATCH] use bcrypt instead of the old wincrypt API

2018-04-03 Thread Steve Lhomme
Le 01/04/2018 à 03:37, Michael Niedermayer a écrit : On Fri, Mar 30, 2018 at 02:44:52PM +0200, Steve Lhomme wrote: Remove the wincrypt API calls since we don't support XP anymore and bcrypt is available since Vista, even on Windows Store builds. --- configure | 6 +++--- libavu

Re: [FFmpeg-devel] [PATCH] use bcrypt instead of the old wincrypt API

2018-04-03 Thread Steve Lhomme
Le 31/03/2018 à 16:46, Derek Buitenhuis a écrit : On 3/30/2018 1:44 PM, Steve Lhomme wrote: +if (BCRYPT_SUCCESS(ret)) { +NTSTATUS ret = BCryptGenRandom(algo_handle, &seed, sizeof(seed), 0); +BCryptCloseAlgorithmProvider(algo_handle, 0); +if (BCRYPT_SUCCESS(ret))

Re: [FFmpeg-devel] swscale/swscale_unscaled : add X86_64 (SSE2, AVX) for uyvyto422

2018-04-03 Thread Hendrik Leppkes
On Tue, Apr 3, 2018 at 2:10 AM, James Almer wrote: > On 4/2/2018 8:33 PM, Carl Eugen Hoyos wrote: >> 2018-04-02 23:26 GMT+02:00, Martin Vignali : >> >>> Around 20% faster (on a "benchmark cmd", who test pix_fmt conversion) >>> (4.2s with the patch, 5.2s without) >>> >>> Pass fate test for me. >>>

Re: [FFmpeg-devel] [PATCH v3 2/3] avutil/log: add av_log_set_opts function

2018-04-03 Thread Tobias Rapp
On 03.04.2018 10:25, Paul B Mahol wrote: On 4/3/18, Tobias Rapp wrote: On 29.03.2018 20:38, Michael Niedermayer wrote: On Wed, Mar 28, 2018 at 05:03:39PM +0200, Tobias Rapp wrote: Allows to set log level and flag values from string. Signed-off-by: Tobias Rapp --- doc/APIchanges | 3

Re: [FFmpeg-devel] [PATCH] avcodec/clearvideo: add inter-frame decoding

2018-04-03 Thread Paul B Mahol
On 4/3/18, Michael Niedermayer wrote: > On Mon, Apr 02, 2018 at 08:18:02PM +0200, Paul B Mahol wrote: >> Signed-off-by: Paul B Mahol >> --- >> libavcodec/clearvideo.c | 2394 >> ++- >> 1 file changed, 2378 insertions(+), 16 deletions(-) >> > [...] > >>

Re: [FFmpeg-devel] [PATCH v3 2/3] avutil/log: add av_log_set_opts function

2018-04-03 Thread Paul B Mahol
On 4/3/18, Tobias Rapp wrote: > On 29.03.2018 20:38, Michael Niedermayer wrote: >> On Wed, Mar 28, 2018 at 05:03:39PM +0200, Tobias Rapp wrote: >>> Allows to set log level and flag values from string. >>> >>> Signed-off-by: Tobias Rapp >>> --- >>> doc/APIchanges | 3 +++ >>> libavutil/lo

[FFmpeg-devel] [PATCH] doc: update loglevel option documentation

2018-04-03 Thread Tobias Rapp
Updates documentation after the changes to loglevel flag prefix parsing in 4b736bc921ed96ad6d312ce0cbe0de29b9e3fe81. Signed-off-by: Tobias Rapp --- doc/fftools-common-opts.texi | 26 ++ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/doc/fftools-common-opts

Re: [FFmpeg-devel] [PATCH v3 2/3] avutil/log: add av_log_set_opts function

2018-04-03 Thread Tobias Rapp
On 29.03.2018 20:38, Michael Niedermayer wrote: On Wed, Mar 28, 2018 at 05:03:39PM +0200, Tobias Rapp wrote: Allows to set log level and flag values from string. Signed-off-by: Tobias Rapp --- doc/APIchanges | 3 +++ libavutil/log.c | 76 +++

Re: [FFmpeg-devel] [PATCH v3 1/3] avutil/log: rename and initialize global log flags variable

2018-04-03 Thread Tobias Rapp
On 29.03.2018 20:40, Michael Niedermayer wrote: On Wed, Mar 28, 2018 at 05:03:38PM +0200, Tobias Rapp wrote: Rename global variable for symmetry with av_log_level. Signed-off-by: Tobias Rapp --- libavutil/log.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/l

Re: [FFmpeg-devel] [PATCH] avformat/hls: copy rw_timeout from parent to child AVIOContexts.

2018-04-03 Thread Steven Liu
> On 3 Apr 2018, at 14:06, Richard Shaffer wrote: > > On Mon, Apr 2, 2018 at 10:15 PM, Steven Liu wrote: >> >> >>> On 3 Apr 2018, at 12:33, Richard Shaffer wrote: >>> >>> On Mon, Apr 2, 2018 at 8:31 PM, Steven Liu wrote: > On 3 Apr 2018, at 09:12, rshaf...@tunein.com wrote