Re: [FFmpeg-devel] [PATCH v8 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-12-22 Thread Steven Liu
2017-12-22 19:30 GMT+08:00 刘歧 : > > >> On 22 Dec 2017, at 19:05, Dixit, Vishwanath wrote: >> >> On 12/19/17 11:53 AM, 刘歧 wrote: >>> On 19 Dec 2017, at 14:09, vdi...@akamai.com wrote: From: Vishwanath Dixit ---

[FFmpeg-devel] [PATCH 0/1] oma: move some constants into libavcodec

2017-12-22 Thread misty
From: Misty De Meo Thanks for the feedback! I checked in with #ffmpeg-devel on IRC, and they suggested simply making them static consts in the headers since they're small enough. Updated patch is included. Misty De Meo (1): oma: move some constants into libavcodec

[FFmpeg-devel] [PATCH 1/1] oma: move some constants into libavcodec

2017-12-22 Thread misty
From: Misty De Meo Most of the constants in libavcodec/oma aren't specific to libavformat; moving them into libavcodec makes them available to libavcodec as well as keeping them compatible with libavformat. ff_oma_codec_tags uses a libavformat-specific type, so it has been

[FFmpeg-devel] [PATCH] h264: add AVOption to set x264_build default

2017-12-22 Thread wm4
This provides a generic way to the API user to deal with files that either lack this SEI, or which have the SEI only in packets not passed to the decoder (such as the common case of the SEI being in the very firsat video packet, but decoding is started somewhere in the middle of the file). Bugs

Re: [FFmpeg-devel] [PATCH] avformat/internal: log errno with ff_rename failure

2017-12-22 Thread Aman Gupta
On Fri, Dec 22, 2017 at 3:37 PM, wm4 wrote: > On Fri, 22 Dec 2017 15:17:33 -0800 > Aman Gupta wrote: > > > From: Aman Gupta > > > > --- > > libavformat/internal.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff

Re: [FFmpeg-devel] [PATCH 2/5] lavc: replace and deprecate the lock manager

2017-12-22 Thread wm4
On Sat, 23 Dec 2017 02:25:11 +0100 Michael Niedermayer wrote: > On Thu, Dec 21, 2017 at 11:22:21PM +0100, wm4 wrote: > > Use static mutexes instead of requiring a lock manager. The behavior > > should be roughly the same before and after this change for API users > >

Re: [FFmpeg-devel] [PATCH 2/5] lavc: replace and deprecate the lock manager

2017-12-22 Thread James Almer
On 12/22/2017 10:25 PM, Michael Niedermayer wrote: > On Thu, Dec 21, 2017 at 11:22:21PM +0100, wm4 wrote: >> Use static mutexes instead of requiring a lock manager. The behavior >> should be roughly the same before and after this change for API users >> which did not set the lock manager at all

Re: [FFmpeg-devel] [PATCH 2/5] lavc: replace and deprecate the lock manager

2017-12-22 Thread Michael Niedermayer
On Thu, Dec 21, 2017 at 11:22:21PM +0100, wm4 wrote: > Use static mutexes instead of requiring a lock manager. The behavior > should be roughly the same before and after this change for API users > which did not set the lock manager at all (except that a minor memory > leak disappears). > --- >

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/h264_cabac: Fix CABAC+8x8dct in 4:4:4

2017-12-22 Thread wm4
On Thu, 15 Jun 2017 15:50:31 -0400 "Ronald S. Bultje" wrote: > From: Anton Mitrofanov > > Use the correct ctxIdxInc calculation for coded_block_flag. > Keep old behavior for old versions of x264 for backward compatibility. > > Signed-off-by: Ronald S.

Re: [FFmpeg-devel] [PATCH] avformat/internal: log errno with ff_rename failure

2017-12-22 Thread wm4
On Fri, 22 Dec 2017 15:17:33 -0800 Aman Gupta wrote: > From: Aman Gupta > > --- > libavformat/internal.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/internal.h b/libavformat/internal.h > index 36a57214ce..aac566aace

[FFmpeg-devel] [PATCH] avformat/hlsenc: improve compute target_duration way

2017-12-22 Thread Steven Liu
just use lrint(lrint(duration * 10.0) / 10.0) fix ticket: 6915 Suggested-by: beloko Signed-off-by: Steven Liu --- libavformat/dashenc.c | 2 +- libavformat/hlsenc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/dashenc.c

[FFmpeg-devel] [PATCH] avformat/internal: log errno with ff_rename failure

2017-12-22 Thread Aman Gupta
From: Aman Gupta --- libavformat/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/internal.h b/libavformat/internal.h index 36a57214ce..aac566aace 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -542,7 +542,7 @@ static

Re: [FFmpeg-devel] [PATCH v2 3/5] avformat/hls: add http_persistent option

2017-12-22 Thread Aman Gupta
On Wed, Dec 20, 2017 at 11:36 AM, Aman Gupta wrote: > > > On Sun, Dec 17, 2017 at 1:13 PM, Anssi Hannula > wrote: > >> Aman Gupta kirjoitti 2017-12-17 22:41: >> >>> On Sun, Dec 17, 2017 at 12:34 PM Anssi Hannula >>> wrote: >>> >>>

Re: [FFmpeg-devel] [PATCH v2] w32pthreads: always use Vista+ API, drop XP support

2017-12-22 Thread wm4
On Fri, 22 Dec 2017 23:17:21 +0100 wm4 wrote: > This removes the XP compatibility code, and switches entirely to SWR > locks, which are available starting at Windows Vista. > > This removes CRITICAL_SECTION use, which allows us to add > PTHREAD_MUTEX_INITIALIZER, which

[FFmpeg-devel] [PATCH v2] w32pthreads: always use Vista+ API, drop XP support

2017-12-22 Thread wm4
This removes the XP compatibility code, and switches entirely to SWR locks, which are available starting at Windows Vista. This removes CRITICAL_SECTION use, which allows us to add PTHREAD_MUTEX_INITIALIZER, which will be useful later. Windows XP is hereby not a supported build target anymore.

Re: [FFmpeg-devel] [FFmpeg-cvslog] [ffmpeg-web] branch master updated. 979b3a6 web/contact: note that no discussions occur on cvslog and trac mailing lists

2017-12-22 Thread Compn
On Fri, 22 Dec 2017 14:39:40 -0500, Compn wrote: > carl if you have a suggestion for better wording, please send patch ? also as the other ml admin, i agree with lou's commit and community agreed upon policy change. what discussions do you want to have on -cvslog that would

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-12-22 Thread Felix Matouschek
Am 22.12.2017 20:50, schrieb Lou Logan: I think you forgot to attach the patch. Sorry, flaky mail client... attached it again.From ba2ccca1200a55b0f1c0331ebd6d26324941fb2e Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Fri, 22 Dec 2017 20:10:41 +0100 Subject:

Re: [FFmpeg-devel] [PATCH 1/5] oma: move some constants into libavcodec

2017-12-22 Thread wm4
On Fri, 22 Dec 2017 22:35:08 +0800 mi...@brew.sh wrote: > From: Misty De Meo > > Most of the constants in libavcodec/oma aren't specific to > libavformat; moving them into libavcodec makes them available to > libavcodec as well as keeping them compatible with libavformat.

[FFmpeg-devel] [PATCH 3/5] atrac3plus_parser: use libavcodec's oma

2017-12-22 Thread misty
From: Misty De Meo --- libavcodec/Makefile| 2 +- libavcodec/atrac3plus_parser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index e0e3f1ebac..0e1c6d53ea 100644 --- a/libavcodec/Makefile +++

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-12-22 Thread Lou Logan
On Fri, Dec 22, 2017, at 10:34 AM, Felix Matouschek wrote: > Hello Michael, > > I fixed the things you mentioned. New patch attached. > > Felix I think you forgot to attach the patch. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH 2/5] mpeg: add experimental support for PSMF audio.

2017-12-22 Thread misty
From: Maxim Poliakovski --- libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcodec/atrac3plus_parser.c | 153 + libavformat/mpeg.c | 27 +++- 4 files changed, 181

[FFmpeg-devel] [PATCH 0/5] Sony MPEG with ATRAC-3 audio support, trac ticket #3233

2017-12-22 Thread misty
From: Misty De Meo This is based on Maxim Poliakovski's patch from this 2014 email: https://ffmpeg.org/pipermail/ffmpeg-devel/2014-December/166169.html This patchset is updated based on Michael Niedermayer's feedback. I've also included an improvement which ensures support for

[FFmpeg-devel] [PATCH 5/5] mpeg: fix use of deprecated struct

2017-12-22 Thread misty
From: Misty De Meo --- libavformat/mpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index a366ece0ed..210424faf3 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -547,8 +547,8 @@ redo:

[FFmpeg-devel] [PATCH 4/5] Fix detecting ATRAC3 audio from MPS files

2017-12-22 Thread misty
From: Misty De Meo MPS files are MPEG files used on PSP Video discs. They lack the PSMF header used by .pms files, and so the special casing in the original patch fails to support their audio. This patch fixes this by unconditionally reading a new byte for the startcode for

[FFmpeg-devel] [PATCH 1/5] oma: move some constants into libavcodec

2017-12-22 Thread misty
From: Misty De Meo Most of the constants in libavcodec/oma aren't specific to libavformat; moving them into libavcodec makes them available to libavcodec as well as keeping them compatible with libavformat. ff_oma_codec_tags uses a libavformat-specific type, so it has been

Re: [FFmpeg-devel] [FFmpeg-cvslog] [ffmpeg-web] branch master updated. 979b3a6 web/contact: note that no discussions occur on cvslog and trac mailing lists

2017-12-22 Thread Compn
On Thu, 21 Dec 2017 10:32:50 -0900, Lou Logan wrote: > On Thu, Dec 21, 2017, at 4:07 AM, Carl Eugen Hoyos wrote: > > Where was this agreed upon? > > > > Carl Eugen > > I did not assume further discussion was required for this subject, but I am > confident that the vast majority

Re: [FFmpeg-devel] [PATCH] Add android_capture indev

2017-12-22 Thread Felix Matouschek
Hello Michael, I fixed the things you mentioned. New patch attached. Felix ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] avfilter/vf_lut: add support for gray formats

2017-12-22 Thread James Darnley
On 2017-12-22 10:57, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_lut.c | 6 +- > tests/ref/fate/filter-pixfmts-lut | 5 + > 2 files changed, 10 insertions(+), 1 deletion(-) > > diff --git a/libavfilter/vf_lut.c

Re: [FFmpeg-devel] [PATCH v8 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-12-22 Thread 刘歧
> On 22 Dec 2017, at 19:05, Dixit, Vishwanath wrote: > > On 12/19/17 11:53 AM, 刘歧 wrote: >> On 19 Dec 2017, at 14:09, vdi...@akamai.com wrote: >>> From: Vishwanath Dixit >>> >>> --- >>> doc/muxers.texi | 12 + >>> libavformat/dashenc.c

Re: [FFmpeg-devel] [PATCH v8 1/3] avformat/hlsenc:addition of #EXT-X-MEDIA tag and AUDIO attribute

2017-12-22 Thread Dixit, Vishwanath
On 12/19/17 11:53 AM, 刘歧 wrote: > On 19 Dec 2017, at 14:09, vdi...@akamai.com wrote: >> From: Vishwanath Dixit >> >> --- >> doc/muxers.texi | 12 + >> libavformat/dashenc.c | 3 ++- >> libavformat/hlsenc.c | 64 >>

[FFmpeg-devel] [PATCH] avfilter/vf_lut: add support for gray formats

2017-12-22 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_lut.c | 6 +- tests/ref/fate/filter-pixfmts-lut | 5 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index 11c039ead7..26f2945c84 100644 ---

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: Signal http end of chunk explicitly during hlsenc_io_close()

2017-12-22 Thread Jeyapal, Karthick
>On 12/22/17, 2:06 PM, "刘歧" wrote: > >> On 22 Dec 2017, at 15:04, Karthick J wrote: >> >> From: Karthick Jeyapal >> >> Currently http end of chunk is called implicitly in hlsenc_io_open(). >> This mean playlists http writes

Re: [FFmpeg-devel] [PATCH 1/2] avformat/http: Added a library-internal API for signalling end of chunk

2017-12-22 Thread Jeyapal, Karthick
On 12/22/17, 1:13 PM, "wm4" wrote: > >On Fri, 22 Dec 2017 12:34:41 +0530 >Karthick J wrote: > >> From: Karthick Jeyapal >> >> Right now there is no explicit way to signal end of chunk, when >> http_multiple is set. >>

[FFmpeg-devel] [PATCH v2 2/2] avformat/hlsenc: Signal http end of chunk(http_shutdown) during hlsenc_io_close()

2017-12-22 Thread Karthick J
From: Karthick Jeyapal Currently http end of chunk is signalled implicitly in hlsenc_io_open(). This mean playlists http writes would have to wait upto a segment duration to signal end of chunk causing delays. This patch will fix that problem and improve performance. ---

[FFmpeg-devel] [PATCH v2 1/2] avformat/http: Avoid calling http_shutdown() if end of chunk is signalled already

2017-12-22 Thread Karthick J
From: Karthick Jeyapal --- libavformat/http.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libavformat/http.c b/libavformat/http.c index cf86adc..4635a9a 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -307,9 +307,11 @@ int

Re: [FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: Signal http end of chunk explicitly during hlsenc_io_close()

2017-12-22 Thread 刘歧
> On 22 Dec 2017, at 15:04, Karthick J wrote: > > From: Karthick Jeyapal > > Currently http end of chunk is called implicitly in hlsenc_io_open(). > This mean playlists http writes would have to wait upto a segment duration to > signal end of chunk