Re: [FFmpeg-devel] [PATCH v5 4/4] avformat: add kvag muxer

2020-05-28 Thread Zane van Iperen
On Fri, 29 May 2020 01:15:09 +0200 "Michael Niedermayer" wrote: > > +static int kvag_write_trailer(AVFormatContext *s) > > +{ > > +int64_t file_size, data_size; > > + > > +if (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL)) { > > +av_log(s, AV_LOG_WARNING, > > + "Stream n

Re: [FFmpeg-devel] [PATCH] libavformat/dashenc.c:add mimetype

2020-05-28 Thread myp...@gmail.com
On Fri, May 29, 2020 at 11:41 AM 黄思远 wrote: > > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-requ...@ffmpeg.org with subject "un

[FFmpeg-devel] [PATCH] libavformat/dashenc.c:add mimetype

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] FW: [PATCH] libavfilter/vf_drawtext.c:add support to generte ms level

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:add mimetype

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:make a sample Latency element

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:add support to change update interval

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:keep same with streaming , when live end

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH v2 3/7] avcodec/h264dec: replace FF_ALLOCZ{_ARRAY}_OR_GOTO with av_mallocz_array()

2020-05-28 Thread lance . lmwang
From: Limin Wang remove the fail goto label and return AVERROR(ENOMEM) directly Signed-off-by: Limin Wang --- libavcodec/h264dec.c | 60 +--- 1 file changed, 17 insertions(+), 43 deletions(-) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c inde

[FFmpeg-devel] [PATCH v2 1/7] avcodec/h264dec: cosmetics

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264dec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index e463fde2a5..7c7a63ca12 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -253,8 +253,7 @@ int

[FFmpeg-devel] [PATCH v2 2/7] avcodec/h264dec: store count of the tables into const variable for long lines

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264dec.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index 7c7a63ca12..951b8c4802 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -182,6 +182,7

[FFmpeg-devel] [PATCH v2 4/7] avcodec/h264dec: prefer to use variable instead of type for sizeof

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264dec.c | 30 +++--- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index b3bd8c8a67..8a4c85018f 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h2

[FFmpeg-devel] [PATCH v2 5/7] avcodec/h264dec: define and use FF_ALLOCZ_TYPED_ARRAY helper macro

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/h264dec.c | 30 +++--- libavutil/internal.h | 3 +++ 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index 8a4c85018f..6dba6efe56 100644 --- a/libavcod

[FFmpeg-devel] [PATCH v2 7/7] avcodec/adpcmenc: remove gotos and error label

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/adpcmenc.c | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index bcb6783c0c..52f0f67958 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c @@ -6

[FFmpeg-devel] [PATCH v2 6/7] avcodec/adpcmenc: remove FF_ALLOC_OR_GOTO macros for gotos will be removed

2020-05-28 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/adpcmenc.c | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index d5fbc0b9a7..bcb6783c0c 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adp

Re: [FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:keep same with streaming , when live end

2020-05-28 Thread Andreas Rheinhardt
黄思远: > ___ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe". > Still no patch in your ema

Re: [FFmpeg-devel] FW: [PATCH] libavformat/dashenc.c:keep same with streaming , when live end

2020-05-28 Thread 黄思远
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH] avformat/dashenc: use AVCodecContext timebase when computing missing bitrate

2020-05-28 Thread Jeyapal, Karthick
On 5/27/20 8:37 PM, Przemysław Sobala wrote: > --- > libavformat/dashenc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c > index 0cf0df50ef..00a37b175d 100644 > --- a/libavformat/dashenc.c > +++ b/libavformat/dashenc.c > @@

[FFmpeg-devel] [Please Ignore] send test

2020-05-28 Thread Siyuan Huang
___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [Please Ignore] send test

2020-05-28 Thread Siyuan Huang/MM Platform Lab /SRC-Nanjing/Engineer/Samsung Electronics
Test content ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

<    1   2