Re: [FFmpeg-devel] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder

2017-08-10 Thread Jun Zhao
On 2017/8/10 6:05, Mark Thompson wrote: > On 02/08/17 06:56, Jun Zhao wrote: >> From f9b42385faedd64dacf613785c393c7b025237c9 Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Tue, 1 Aug 2017 23:05:44 -0400 >> Subject: [PATCH V2 3/4] lavc/vaapi_encode_h264: respect

Re: [FFmpeg-devel] [PATCH V2 1/4] lavc/vaapi_encode: Change the slice/parameter buffers to dynamic alloc.

2017-08-11 Thread Jun Zhao
On 2017/8/10 5:11, Mark Thompson wrote: > On 02/08/17 06:53, Jun Zhao wrote: >> V2: Change the slice/parameter buffers to dynamic alloc and split >> the mutil-slice support for AVC/HEVC. >> >> From 39fd7852df0c96217310c525107da06a7ec0a062 Mon Sep 17 00:00:00 2001

Re: [FFmpeg-devel] [PATCH V2] lavc/vaapi_encode_h264: add "coder" option support

2017-08-14 Thread Jun Zhao
ping? On 2017/8/9 9:39, Jun Zhao wrote: > V2: Follow libx264 "coder" option style, base on Hendrik Leppkes code review. > ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH V2] lavc/vaapi_encode_h264: add "coder" option support

2017-08-14 Thread Jun Zhao
On 2017/8/15 10:41, Steven Liu wrote: > 2017-08-15 8:48 GMT+08:00 Jun Zhao : >> ping? > No Documentation for the coder options? Do you means man page or the other docs ? >> >> On 2017/8/9 9:39, Jun Zhao wrote: >>> V2: Follow libx264 "coder"

[FFmpeg-devel] [PATCH V3 1/2] lavc/vaapi_encode_h264: add "coder" option support

2017-08-15 Thread Jun Zhao
V3: Clean the code and add docs for "coder" option base on Steven code review. V2: Follow libx264 "coder" option style, base on Hendrik Leppkes code review. From 5a8927c04ed7b7f4820d26a124df99b5419deab1 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 8 Aug 2017 03:33:53 -

[FFmpeg-devel] [PATCH V3 2/2] doc/encoders: add "coder" option documentation for h264_vaapi

2017-08-15 Thread Jun Zhao
From 64dc352ba30e3cf179784c19009bf9a771801f20 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 15 Aug 2017 21:49:08 -0400 Subject: [PATCH V3 2/2] doc/encoders: add "coder" option documentation for h264_vaapi add "coder" option documentation for h264_vaapi. Signed-off-by

Re: [FFmpeg-devel] [PATCH V3 2/2] doc/encoders: add "coder" option documentation for h264_vaapi

2017-08-15 Thread Jun Zhao
On 2017/8/16 13:56, Steven Liu wrote: > 2017-08-16 10:47 GMT+08:00 Jun Zhao : >> > > > I saw there have one option name is "coder", the option have four > flags: cavlc cabac, vlc, ac, but the doc only two options? > ac == cabac, vlc == cavlc in the docs.

Re: [FFmpeg-devel] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder

2017-08-17 Thread Jun Zhao
On 2017/8/10 6:14, Mark Thompson wrote: > On 02/08/17 06:57, Jun Zhao wrote: >> From 82eb7d1c3120081a7073cfb379802a28c769ae18 Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Tue, 1 Aug 2017 23:07:34 -0400 >> Subject: [PATCH V2 4/4] lavc/vaapi_encode_h265: respect

[FFmpeg-devel] [PATCH V3 1/4] lavc/vaapi_encode: Change the slice/parameter buffers to dynamic alloc.

2017-08-17 Thread Jun Zhao
ge the slice/parameter buffers to dynamic alloc and split the mutil-slice support for AVC/HEVC. From 4b2414cf589b8b64639e87c2ab1b4045099b8ba0 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 31 Jul 2017 22:46:23 -0400 Subject: [PATCH V3 1/4] lavc/vaapi_encode: Change the slice/parameter buffe

[FFmpeg-devel] [PATCH V3 2/4] lavc/vaapi_encode: Add max slices number query.

2017-08-17 Thread Jun Zhao
From 23201c7288b07fc117279a2efca7372158564730 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 04:16:30 -0400 Subject: [PATCH V3 2/4] lavc/vaapi_encode: Add max slices number query. Add max slices number query. Signed-off-by: Jun Zhao --- libavcodec/vaapi_encode.c | 4

[FFmpeg-devel] [PATCH V3 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder

2017-08-17 Thread Jun Zhao
From 183ee30f5d9c1d4bb33ddbb0f0a8dcc952e3572e Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:07:34 -0400 Subject: [PATCH V3 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder Enable multi-slice support in AVC/H.265 vaapi encoder. Signed-of

[FFmpeg-devel] [PATCH V3 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder

2017-08-17 Thread Jun Zhao
From 64c53df3134c0b478d212f141e6dbe4c3743b3c6 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:05:44 -0400 Subject: [PATCH V3 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder Enable multi-slice support in AVC/H.264 vaapi encoder. Signed-of

Re: [FFmpeg-devel] [PATCH 1/2] vaapi_hevc: Add an option to set quality level

2017-08-20 Thread Jun Zhao
On 2017/8/21 11:04, Zhong Li wrote: > Just like vaapi_h264 encoder, quality_level is set for tradeoff quality > and performance. > > Signed-off-by: Zhong Li > --- > libavcodec/vaapi_encode_h265.c | 27 +++ > 1 file changed, 27 insertions(+) > > diff --git a/libavcodec/

Re: [FFmpeg-devel] [PATCH V3 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder

2017-08-23 Thread Jun Zhao
On 2017/8/21 1:16, Mark Thompson wrote: > On 18/08/17 03:14, Jun Zhao wrote: >> From 64c53df3134c0b478d212f141e6dbe4c3743b3c6 Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Tue, 1 Aug 2017 23:05:44 -0400 >> Subject: [PATCH V3 3/4] lavc/vaapi_encode_h264: respect

[FFmpeg-devel] [PATCH V4 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder

2017-08-23 Thread Jun Zhao
From 8795c55762da131ae29554290c1c352eab092580 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:05:44 -0400 Subject: [PATCH V4 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder Enable multi-slice support in AVC/H.264 vaapi encoder. Signed-of

[FFmpeg-devel] [PATCH V4 1/4] lavc/vaapi_encode: Change the slice/parameter buffers to dynamic alloc.

2017-08-23 Thread Jun Zhao
00:00:00 2001 From: Jun Zhao Date: Mon, 31 Jul 2017 22:46:23 -0400 Subject: [PATCH V4 1/4] lavc/vaapi_encode: Change the slice/parameter buffers to dynamic alloc. Change the slice/parameter buffers to be allocated dynamically. Signed-off-by: Wang, Yi A Signed-off-by: Jun Zhao --- liba

[FFmpeg-devel] [PATCH V4 2/4] lavc/vaapi_encode: Add max slices number query.

2017-08-23 Thread Jun Zhao
From 4cac77cf990e91fececaf3dc5bffe606fcdae17c Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 04:16:30 -0400 Subject: [PATCH V4 2/4] lavc/vaapi_encode: Add max slices number query. Add max slices number query. Signed-off-by: Jun Zhao --- libavcodec/vaapi_encode.c | 4

[FFmpeg-devel] [PATCH V4 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder

2017-08-23 Thread Jun Zhao
From dae9051c0828f7c86417308d06f1deb0640534bc Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:07:34 -0400 Subject: [PATCH V4 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder Enable multi-slice support in AVC/H.265 vaapi encoder. Signed-of

Re: [FFmpeg-devel] [PATCH V4 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder

2017-08-23 Thread Jun Zhao
On 2017/8/23 19:12, Steven Liu wrote: > 2017-08-23 18:34 GMT+08:00 Jun Zhao : > >From dae9051c0828f7c86417308d06f1deb0640534bc Mon Sep 17 00:00:00 2001 > From: Jun Zhao > Date: Tue, 1 Aug 2017 23:07:34 -0400 > Subject: [PATCH V4 4/4] lavc/vaapi_encode_h265: respect "sl

[FFmpeg-devel] [V5 1/4] lavc/vaapi_encode: Change the slice/parameter buffers to dynamic alloc.

2017-08-23 Thread Jun Zhao
- Change the slice/parameter buffers to dynamic alloc and split the mutil-slice support for AVC/HEVC. From a1078385915d53ec94559ed897eb253e537d1f65 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 31 Jul 2017 22:46:23 -0400 Subject: [V5 1/4] lavc/vaapi_encode: Change the slice/parameter b

[FFmpeg-devel] [V5 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder

2017-08-23 Thread Jun Zhao
From 9baf5d8b4b2a6119a8406bb52a05d4a1b67f9a3e Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:07:34 -0400 Subject: [V5 4/4] lavc/vaapi_encode_h265: respect "slices" option in h265 vaapi encoder Enable multi-slice support in AVC/H.265 vaapi encoder. Signed-off-by:

[FFmpeg-devel] [V5 2/4] lavc/vaapi_encode: Add max slices number query.

2017-08-23 Thread Jun Zhao
From 4cac77cf990e91fececaf3dc5bffe606fcdae17c Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 04:16:30 -0400 Subject: [V5 2/4] lavc/vaapi_encode: Add max slices number query. Add max slices number query. Signed-off-by: Jun Zhao --- libavcodec/vaapi_encode.c | 4 libavcodec

[FFmpeg-devel] [V5 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder

2017-08-23 Thread Jun Zhao
From 8795c55762da131ae29554290c1c352eab092580 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 1 Aug 2017 23:05:44 -0400 Subject: [V5 3/4] lavc/vaapi_encode_h264: respect "slices" option in h264 vaapi encoder Enable multi-slice support in AVC/H.264 vaapi encoder. Signed-off-by:

Re: [FFmpeg-devel] [PATCH V6] lavfi/scale_vaapi: add denoise/sharpness support.

2017-08-23 Thread Jun Zhao
ping? On 2017/8/4 15:25, Jun Zhao wrote: > V6 : - Re-work with current scale_vaapi and double check i965 have fix the > sharpness issue. >https://bugs.freedesktop.org/show_bug.cgi?id=96988 > v5 : - fix the commit message as review(Mark Thompson and Moritz Barsnick) >

[FFmpeg-devel] [PATCH] lavc/vaapi_encode_h265: Enable VBR mode

2017-08-25 Thread Jun Zhao
From 483204cf7c25077d556c86b9e70f591fc2c0d4a3 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Fri, 25 Aug 2017 03:50:37 -0400 Subject: [PATCH] lavc/vaapi_encode_h265: Enable VBR mode Follow vaapi_h264 style, enable the VBR mode. Signed-off-by: Jun Zhao --- libavcodec/vaapi_encode_h265.c | 15

[FFmpeg-devel] [PATCH 1/4] lavc/vvc_parser: Remove max_b_frames setting

2024-04-19 Thread Jun Zhao
From: Jun Zhao We don't used the max_b_frames field in decoder normally Signed-off-by: Jun Zhao --- libavcodec/vvc_parser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/vvc_parser.c b/libavcodec/vvc_parser.c index e3501fa139..a0e10e1a7c 100644 --- a/libavcodec/vvc_par

[FFmpeg-devel] [PATCH 2/4] lavc/libxevd: Fixed the has_b_frames setting

2024-04-19 Thread Jun Zhao
From: Jun Zhao has_b_frames used in decoder for size of the frame reordering buffer, and we don't used the max_b_frames in decoder. Signed-off-by: Jun Zhao --- libavcodec/libxevd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/libxevd.c b/libav

[FFmpeg-devel] [PATCH 3/4] lavc/vvc_parser: Fixed the has_b_frames setting

2024-04-19 Thread Jun Zhao
From: Jun Zhao has_b_frames used in decoder for size of the frame reordering buffer, setting this field from dpb_max_num_reorder_pics. Signed-off-by: Jun Zhao --- libavcodec/vvc_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/vvc_parser.c b

[FFmpeg-devel] [PATCH 4/4] lavc/vvc/refs: Use dpb_max_num_reorder_pics to control output

2024-04-19 Thread Jun Zhao
From: Jun Zhao Use dpb_max_num_reorder_pics to control output instead of dpb_max_dec_pic_buffering, when dpb_max_dec_pic_buffering is much larger than dpb_max_num_reorder_pics, it may cause dpb overflow error. Signed-off-by: Jun Zhao Signed-off-by: elinyhuang --- libavcodec/vvc/refs.c | 2

Re: [FFmpeg-devel] [PATCH 01/10] lavu/opt: add AV_OPT_FLAG_BSF_PARAM

2018-03-11 Thread Jun Zhao
On 2018/3/10 3:32, Michael Niedermayer wrote: > On Thu, Mar 08, 2018 at 04:41:43PM +0800, Jun Zhao wrote: >> opt.c |1 + >> opt.h |1 + >> 2 files changed, 2 insertions(+) >> f19d1e433e7008fa7ea9868c973367833dc86878 >> 0001-lavu-opt-add-AV

Re: [FFmpeg-devel] [PATCH 2/8] cbs_h265: Use helper macro for maximum values of fixed-width elements

2018-03-11 Thread Jun Zhao
On 2018/3/12 2:30, Mark Thompson wrote: > Apply the same logic as the previous patch to H.265. There are no cases > which currently overflow here, but this is still more consistent. > --- > libavcodec/cbs_h265_syntax_template.c | 16 > 1 file changed, 8 insertions(+), 8 deletio

[FFmpeg-devel] [PATCH V2 03/11] lavc/dump_extradata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From e45988a0feece217ffed7f019e2978572526b9e3 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:01:48 +0800 Subject: [PATCH V2 03/11] lavc/dump_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V2 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM

2018-03-11 Thread Jun Zhao
V2: update opt fate test ref file From 5cd2a18ebe1494e11b08e33ca5587f7d17f41964 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 13:47:23 +0800 Subject: [PATCH V2 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM add AV_OPT_FLAG_BSF_PARAM for bit stream filter options. Signed-off-by: Jun

[FFmpeg-devel] [PATCH V2 02/11] ffmpeg: support dump bit stream filter options.

2018-03-11 Thread Jun Zhao
From 32486e2c95683e1a215f5a4cbec3d4fc01a71e87 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 13:50:31 +0800 Subject: [PATCH V2 02/11] ffmpeg: support dump bit stream filter options. Support dump bit stream filter option in ffmpeg -h full and ffmpeg -h bsf=FooBar. Signed-off-by

[FFmpeg-devel] [PATCH V2 05/11] lavc/h264_metadata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From 70221e1330749ea09b2bfbe682326f4bad913c55 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:22:25 +0800 Subject: [PATCH V2 05/11] lavc/h264_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec/h264_metadata_bsf.c

[FFmpeg-devel] [PATCH V2 06/11] lavc/h265_metadata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From 914eb177fc86418f584a8472d83c8017a4531458 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:28:13 +0800 Subject: [PATCH V2 06/11] lavc/h265_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec/h265_metadata_bsf.c

[FFmpeg-devel] [PATCH V2 07/11] lavc/mpeg2_metadata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From e1829b0456a20b6c6e2cfaedb2c581e8ad374d49 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:31:30 +0800 Subject: [PATCH V2 07/11] lavc/mpeg2_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V2 08/11] lavc/noise_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From be6e5bb9188574096f1a4de2d3c9c71e14aafe3e Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:57:47 +0800 Subject: [PATCH V2 08/11] lavc/noise_bsf: support dump options. support dump bit stream filter options. Signed-off-by: Jun Zhao --- libavcodec/noise_bsf.c | 5 +++-- 1

[FFmpeg-devel] [PATCH V2 09/11] lavc/remove_extradata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From 6f808695a291f8ddf9b56b4d26d3e9fdd47aadd5 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 15:00:27 +0800 Subject: [PATCH V2 09/11] lavc/remove_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V2 10/11] doc/fftools-common-opts: allow printing bsf details.

2018-03-11 Thread Jun Zhao
From 4e2d8947a614c664be843532dfefa7976be4b720 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 15:18:11 +0800 Subject: [PATCH V2 10/11] doc/fftools-common-opts: allow printing bsf details. Signed-off-by: Jun Zhao --- doc/fftools-common-opts.texi | 4 1 file changed, 4

[FFmpeg-devel] [PATCH V2 11/11] lavu/opt: update fate to support dump bit stream filter option.

2018-03-11 Thread Jun Zhao
From ec00625932e794c52c816d35cca5fade8cdfa4a9 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sat, 10 Mar 2018 13:35:03 +0800 Subject: [PATCH V2 11/11] lavu/opt: update fate to support dump bit stream filter option. Signed-off-by: Jun Zhao --- tests/ref/fate/opt | 50

[FFmpeg-devel] [PATCH V2 04/11] lavc/extract_extradata_bsf: support dump options.

2018-03-11 Thread Jun Zhao
From b6af8d9d77411c15922d98b710f3c335ee898603 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:05:53 +0800 Subject: [PATCH V2 04/11] lavc/extract_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

Re: [FFmpeg-devel] [PATCH 2/8] cbs_h265: Use helper macro for maximum values of fixed-width elements

2018-03-12 Thread Jun Zhao
On 2018/3/12 20:47, Mark Thompson wrote: > On 12/03/18 00:41, Jun Zhao wrote: >> On 2018/3/12 2:30, Mark Thompson wrote: >>> Apply the same logic as the previous patch to H.265. There are no cases >>> which currently overflow here, but this is still more consiste

Re: [FFmpeg-devel] [PATCH V2 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM

2018-03-12 Thread Jun Zhao
On 2018/3/12 22:23, James Almer wrote: > On 3/11/2018 10:23 PM, Jun Zhao wrote: >> V2: update opt fate test ref file > Unrelated to this patch, but can you please make sure to the patchsets > you send are contained in a single thread? Every email in a set after > the first sh

Re: [FFmpeg-devel] [PATCH V2 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM

2018-03-13 Thread Jun Zhao
On 2018/3/14 6:02, Michael Niedermayer wrote: > On Mon, Mar 12, 2018 at 09:23:02AM +0800, Jun Zhao wrote: >> V2: update opt fate test ref file >> opt.c |1 + >> opt.h |1 + >> 2 files changed, 2 insertions(+) >> 5e930c1851c198bd35369b87965c6e

Re: [FFmpeg-devel] [PATCH V2 11/11] lavu/opt: update fate to support dump bit stream filter option.

2018-03-13 Thread Jun Zhao
On 2018/3/14 6:00, Michael Niedermayer wrote: > On Mon, Mar 12, 2018 at 09:25:36AM +0800, Jun Zhao wrote: >> opt | 50 +- >> 1 file changed, 25 insertions(+), 25 deletions(-) >> 2038c71aba538e2cf97de3c43e645359ad6e96b0 &g

Re: [FFmpeg-devel] [PATCH] avcodec/extract_extradata: don't uninitialize the H2645Packet on every processed packet

2018-03-13 Thread Jun Zhao
On 2018/3/11 7:00, James Almer wrote: > Based on hevc_parser code. This prevents repeated unnecessary allocations > and frees on every packet processed by the bsf. > > Signed-off-by: James Almer > --- > libavcodec/extract_extradata_bsf.c | 33 +++-- > 1 file changed,

[FFmpeg-devel] [PATCH V3 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM

2018-03-13 Thread Jun Zhao
V3: rearrange the patch-sets as Michael's comments V2: update opt fate test ref file From c1b532a76153033efa5585915660a8d29a5f8649 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 13:47:23 +0800 Subject: [PATCH V3 01/11] lavu/opt: add AV_OPT_FLAG_BSF_PARAM add AV_OPT_FLAG_BSF_

[FFmpeg-devel] [PATCH V3 02/11] lavu/opt: add bit stream filter option dump support

2018-03-13 Thread Jun Zhao
From e479afdf27ab250ad545ea9518644e56be38d185 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Wed, 14 Mar 2018 10:05:05 +0800 Subject: [PATCH V3 02/11] lavu/opt: add bit stream filter option dump support. enable dump bit stream filter and update opt fate test ref. Signed-off-by: Jun Zhao

[FFmpeg-devel] [PATCH V3 04/11] lavc/dump_extradata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From fed84536f3c3c0fc11c63104fb6d8d93faf2000f Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:01:48 +0800 Subject: [PATCH V3 04/11] lavc/dump_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V3 03/11] ffmpeg: support dump bit stream filter options

2018-03-13 Thread Jun Zhao
From 6b8f199d0028afb3f0a6a10275e4055ddce91a6a Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 13:50:31 +0800 Subject: [PATCH V3 03/11] ffmpeg: support dump bit stream filter options. Support dump bit stream filter option in ffmpeg -h full and ffmpeg -h bsf=FooBar. Signed-off-by

[FFmpeg-devel] [PATCH V3 07/11] lavc/h265_metadata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From c558ab3512d8fcbc50f4c0a8e93f6a103fbea7e6 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:28:13 +0800 Subject: [PATCH V3 07/11] lavc/h265_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec/h265_metadata_bsf.c

[FFmpeg-devel] [PATCH V3 06/11] lavc/h264_metadata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From 4db1a0f7cccabe1f74991ba160b8f8506bb5f865 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:22:25 +0800 Subject: [PATCH V3 06/11] lavc/h264_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec/h264_metadata_bsf.c

[FFmpeg-devel] [PATCH V3 08/11] lavc/mpeg2_metadata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From b406ee9499bd2f8557c350538a810bf92a828099 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:31:30 +0800 Subject: [PATCH V3 08/11] lavc/mpeg2_metadata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V3 05/11] lavc/extract_extradata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From 3d49b455b8bea2ee311b011fd9078e180c7bdf9a Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:05:53 +0800 Subject: [PATCH V3 05/11] lavc/extract_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH V3 09/11] lavc/noise_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From b7f927496b32256db266564c413ed99675bac097 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 14:57:47 +0800 Subject: [PATCH V3 09/11] lavc/noise_bsf: support dump options. support dump bit stream filter options. Signed-off-by: Jun Zhao --- libavcodec/noise_bsf.c | 5 +++-- 1

[FFmpeg-devel] [PATCH V3 11/11] doc/fftools-common-opts: allow printing bsf details.

2018-03-13 Thread Jun Zhao
From a268c566b90cf7fde52ec49b0aad13dae697d443 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 15:18:11 +0800 Subject: [PATCH V3 11/11] doc/fftools-common-opts: allow printing bsf details. Signed-off-by: Jun Zhao --- doc/fftools-common-opts.texi | 4 1 file changed, 4

[FFmpeg-devel] [PATCH V3 10/11] lavc/remove_extradata_bsf: support dump options.

2018-03-13 Thread Jun Zhao
From d307ac53eaa1fa4b05d4701150fbdf62d74d16e7 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 8 Mar 2018 15:00:27 +0800 Subject: [PATCH V3 10/11] lavc/remove_extradata_bsf: support dump options. support dump bit stream filter options Signed-off-by: Jun Zhao --- libavcodec

[FFmpeg-devel] [PATCH] ffmpeg_filter: enable stream_loop in HWAccel transcoding.

2018-03-14 Thread Jun Zhao
From 731b6cb1f3a13fa18cfe39c1ddba92050b999668 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Wed, 14 Mar 2018 16:13:39 +0800 Subject: [PATCH] ffmpeg_filter: enable stream_loop in HWAccel transcoding. use the cmd: ffmpeg -y -stream_loop 1 -hwaccel vaapi -hwaccel_device /dev/dri/renderD128

Re: [FFmpeg-devel] [PATCH V3 06/11] lavc/h264_metadata_bsf: support dump options.

2018-03-18 Thread Jun Zhao
On 2018/3/19 4:35, Mark Thompson wrote: > On 14/03/18 05:42, Jun Zhao wrote: >> Subject: [PATCH V3 06/11] lavc/h264_metadata_bsf: support dump options. >> Subject: [PATCH V3 07/11] lavc/h265_metadata_bsf: support dump options. >> Subject: [PATCH V3 08/11] lavc/mpeg2_metad

Re: [FFmpeg-devel] [PATCH V3 05/11] lavc/extract_extradata_bsf: support dump options.

2018-03-18 Thread Jun Zhao
On 2018/3/17 23:19, James Almer wrote: > On 3/14/2018 2:42 AM, Jun Zhao wrote: >> 0005-lavc-extract_extradata_bsf-support-dump-options.patch >> >> >> From 3d49b455b8bea2ee311b011fd9078e180c7bdf9a Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Th

Re: [FFmpeg-devel] [PATCH V3 04/11] lavc/dump_extradata_bsf: support dump options.

2018-03-19 Thread Jun Zhao
-common-opts: allow printing bsf details. patches 1-3, 5-8 have been pushed, Tks. On 2018/3/14 13:42, Jun Zhao wrote: ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH V3 04/11] lavc/dump_extradata_bsf: support dump options.

2018-03-21 Thread Jun Zhao
On 2018/3/22 9:05, James Almer wrote: > On 3/20/2018 2:59 AM, Jun Zhao wrote: >> Ping?  >> >> Anybody will help to review or apply: >> >> Subject: [PATCH V3 04/11] lavc/dump_extradata_bsf: support dump options. >> Subject: [PATCH V3 09/11] lavc/noise_bsf: s

Re: [FFmpeg-devel] [PATCH] cmdutils: print supported codecs in show_help_bsf()

2018-03-21 Thread Jun Zhao
On 2018/3/22 9:11, James Almer wrote: > Signed-off-by: James Almer > --- > fftools/cmdutils.c | 2 ++ > fftools/cmdutils.h | 3 +++ > 2 files changed, 5 insertions(+) > > diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c > index 708a849f51..c0ddf0b287 100644 > --- a/fftools/cmdutils.c > +++

Re: [FFmpeg-devel] [PATCH] ffmpeg_filter: enable stream_loop in HWAccel transcoding.

2018-03-22 Thread Jun Zhao
Ping? The other thing: do we have a clean way to handle auto insert scale filter in pipeline for HWaccel transcoding case in FFmpeg? On 2018/3/14 16:26, Jun Zhao wrote: ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman

Re: [FFmpeg-devel] [PATCH] ffmpeg_filter: enable stream_loop in HWAccel transcoding.

2018-03-25 Thread Jun Zhao
On 2018/3/24 8:14, Michael Niedermayer wrote: > On Wed, Mar 14, 2018 at 04:26:54PM +0800, Jun Zhao wrote: >> ffmpeg_filter.c |4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> 170327a7137d3ce26124c86525566d32c523a948 >> 0001-ffmpeg_filter-en

Re: [FFmpeg-devel] [PATCH 2/2] doc/examples/hw_decode: Remove logically dead code in decode_write()

2018-03-25 Thread Jun Zhao
On 2018/3/26 2:21, Michael Niedermayer wrote: > Fixes CID1415951 > > Signed-off-by: Michael Niedermayer > --- > doc/examples/hw_decode.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/doc/examples/hw_decode.c b/doc/examples/hw_decode.c > index 74a0ca32db..77ae8df35b

[FFmpeg-devel] [PATCH] kmsgrab: add category for kmsgrab

2018-03-25 Thread Jun Zhao
From fc9b04d95b1e21fa9985dc611fcf43d2a4c635c0 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Fri, 23 Mar 2018 21:32:03 +0800 Subject: [PATCH] kmsgrab: add category for kmsgrab add category for kmsgrab, then we can display kmsgrab in "ffmpeg -devices". Signed-off-by: Jun Zhao --- l

[FFmpeg-devel] [PATCH V2] ffmpeg_filter: enable stream_loop in HWAccel transcoding.

2018-03-25 Thread Jun Zhao
V2: simplified the logic as Michael's review. From 6c332c65d64977c4d6220acfb7e9db3505281f87 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Wed, 14 Mar 2018 16:13:39 +0800 Subject: [PATCH V2] ffmpeg_filter: enable stream_loop in HWAccel transcoding. use the cmd: ffmpeg -y -stream_loop 1 -hw

Re: [FFmpeg-devel] [PATCH] kmsgrab: add category for kmsgrab

2018-03-26 Thread Jun Zhao
On 2018/3/27 6:01, Mark Thompson wrote: > On 26/03/18 01:22, Jun Zhao wrote: >> From fc9b04d95b1e21fa9985dc611fcf43d2a4c635c0 Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Fri, 23 Mar 2018 21:32:03 +0800 >> Subject: [PATCH] kmsgrab: add category for kmsgrab >

[FFmpeg-devel] [PATCH] cmdutils: fix new API break the "ffmpeg -muxers/demuxers"

2018-04-01 Thread Jun Zhao
From ebc23fc12671783dc2f77b14c3b61f95b16e01c9 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 1 Apr 2018 22:29:46 +0800 Subject: [PATCH] cmdutils: fix new API break the "ffmpeg -muxers/demuxers" fix commit 2238190 break the "ffmpeg -muxers/demuxers". Signed-off-by: Ju

[FFmpeg-devel] [PATCH] avformat/options_table: Change the seek2any location in opt table.

2018-04-01 Thread Jun Zhao
From 2fcdbfe24d82b3d287d6f4f70144bc2ee16820dc Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 1 Apr 2018 15:53:11 +0800 Subject: [PATCH] avformat/options_table: Change the seek2any location in opt table. Change the seek2any location in avformat_options to make code more readable. Signed

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

2018-04-01 Thread Jun Zhao
From 96de206d191264d2a5aacff5f877caad1d861439 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 1 Apr 2018 11:17:45 +0800 Subject: [PATCH] lavf/hls: Remove the dead code in parse_playlist() Signed-off-by: Jun Zhao --- libavformat/hls.c | 7 --- 1 file changed, 7 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH 6/6] lavf/format: use const AVInputFormat for iteration

2018-04-01 Thread Jun Zhao
On 2018/4/1 10:39, Josh de Kock wrote: > Signed-off-by: Josh de Kock > --- > libavformat/format.c | 10 +- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/libavformat/format.c b/libavformat/format.c > index 1b2ce22e25..1c66afb7e6 100644 > --- a/libavformat/format.c >

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

2018-04-02 Thread Jun Zhao
Want to close work with this community, so I request as a general developer. From 4a21d75db2070031986d92cde45d3c1ea64f0cfa Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 3 Apr 2018 07:14:46 +0800 Subject: [PATCH] MAINTAINERS: add myself to the general developers list Signed-off-by: Jun Zhao

[FFmpeg-devel] [PATCH 2/2] lavf/format: Remove the dead code in av_probe_input_buffer2.

2018-04-07 Thread Jun Zhao
From df6293f42fad1e4521389c23c984519caa98d3f5 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 8 Apr 2018 08:09:13 +0800 Subject: [PATCH 2/2] lavf/format: Remove the dead code in av_probe_input_buffer2. Remove the dead code in av_probe_input_buffer2 Signed-off-by: Jun Zhao --- libavformat

[FFmpeg-devel] [PATCH 1/2] avformat/avio: make the logic simple

2018-04-07 Thread Jun Zhao
From 733dfb98152a7a629e0440f6f807f76c2b2a9584 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Sun, 8 Apr 2018 08:05:08 +0800 Subject: [PATCH 1/2] avformat/avio: make the logic simple remove the "ret" to make the code simple and generic. Signed-off-by: Jun Zhao --- libavformat/

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

2018-04-08 Thread Jun Zhao
On 2018/4/3 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>__

[FFmpeg-devel] [PATCH 2/4] lavf/hls: use ff_get_chomp_line

2018-04-09 Thread Jun Zhao
From 4cd7996babcb80a0bae6bb4c0f31600d70b5f575 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 9 Apr 2018 23:11:02 +0800 Subject: [PATCH 2/4] lavf/hls: use ff_get_chomp_line Signed-off-by: Jun Zhao --- libavformat/hls.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions

[FFmpeg-devel] [PATCH 4/4] lavf/hlsproto: use ff_get_chomp_line

2018-04-09 Thread Jun Zhao
From beace363b11e4a472d84d001458ffd4017788cfb Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 9 Apr 2018 23:13:03 +0800 Subject: [PATCH 4/4] lavf/hlsproto: use ff_get_chomp_line Signed-off-by: Jun Zhao --- libavformat/hlsproto.c | 12 ++-- 1 file changed, 2 insertions(+), 10

[FFmpeg-devel] [PATCH 3/4] lavf/hlsenc: use ff_get_chomp_line

2018-04-09 Thread Jun Zhao
From a883ac7d3db7c42e87f645dbc00423ad906ede0d Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 9 Apr 2018 23:12:16 +0800 Subject: [PATCH 3/4] lavf/hlsenc: use ff_get_chomp_line Signed-off-by: Jun Zhao --- libavformat/hlsenc.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions

[FFmpeg-devel] [PATCH 1/4] lavf/aviobuf: add ff_get_chomp_line

2018-04-09 Thread Jun Zhao
From 58e8cb520eeeb727ee834ee81877db7c81fe089b Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Mon, 9 Apr 2018 23:05:42 +0800 Subject: [PATCH 1/4] lavf/aviobuf: add ff_get_chomp_line Same as ff_get_line but strip the white-space characters in the string tail. Signed-off-by: Jun Zhao

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

2018-04-09 Thread Jun Zhao
On 2018/4/10 6:58, Michael Niedermayer wrote: > On Tue, Apr 03, 2018 at 07:24:21AM +0800, Jun Zhao wrote: >> Want to close work with this community, so I request as >> a general developer. >> MAINTAINERS |1 + >> 1 file changed, 1 insertion(+) >> b874d13

Re: [FFmpeg-devel] [PATCH 1/4] lavf/aviobuf: add ff_get_chomp_line

2018-04-10 Thread Jun Zhao
On 2018/4/10 21:54, Marton Balint wrote: > > > On Tue, 10 Apr 2018, Jun Zhao wrote: > >> >> > > Maybe you should use ff_read_line_to_bprint instead? It already chops > the trailing line endings, not any whitespace though. Generally I > think we should deprec

Re: [FFmpeg-devel] [PATCH 1/4] lavf/aviobuf: add ff_get_chomp_line

2018-04-11 Thread Jun Zhao
On 2018/4/11 16:52, Marton Balint wrote: > > > On Wed, 11 Apr 2018, Jun Zhao wrote: > >> >> >> On 2018/4/10 21:54, Marton Balint wrote: >>> >>> >>> On Tue, 10 Apr 2018, Jun Zhao wrote: >>> >>>> >>>> >

Re: [FFmpeg-devel] [PATCH v2 1/2] lavf: make overlay_qsv work based on framesync

2018-04-11 Thread Jun Zhao
On 2018/4/3 9:50, Ruiling Song wrote: > The existing version which was cherry-picked from Libav does not work > with FFmpeg framework, because ff_request_frame() was totally > different between Libav (recursive) and FFmpeg (non-recursive). > The existing overlay_qsv implementation depends on the

Re: [FFmpeg-devel] [PATCH 1/4] lavf/aviobuf: add ff_get_chomp_line

2018-04-12 Thread Jun Zhao
On 2018/4/11 16:52, Marton Balint wrote: > > > On Wed, 11 Apr 2018, Jun Zhao wrote: > >> >> >> On 2018/4/10 21:54, Marton Balint wrote: >>> >>> >>> On Tue, 10 Apr 2018, Jun Zhao wrote: >>> >>>> >>>> >

Re: [FFmpeg-devel] [PATCH] avformat/hls: remove redundant code

2018-04-13 Thread Jun Zhao
On 2018/4/12 16:48, Steven Liu wrote: > Signed-off-by: Steven Liu > --- > libavformat/hls.c | 27 +-- > 1 file changed, 9 insertions(+), 18 deletions(-) > > diff --git a/libavformat/hls.c b/libavformat/hls.c > index ae0545a086..74f0c2ccc5 100644 > --- a/libavformat/hls.c

Re: [FFmpeg-devel] [PATCH] avformat/hls: remove redundant code

2018-04-15 Thread Jun Zhao
On 2018/4/13 20:29, Steven Liu wrote: > 2018-04-13 16:19 GMT+08:00 Jun Zhao : >> >> On 2018/4/12 16:48, Steven Liu wrote: >>> Signed-off-by: Steven Liu >>> --- >>> libavformat/hls.c | 27 +-- >>> 1 file changed, 9

[FFmpeg-devel] [PATCH 3/3] doc/examples/filtering_audio: Remove setting deprecated refcounted_frames

2018-04-21 Thread Jun Zhao
When use new decode APIs(avcodec_send_packet/avcodec_receive_frame), don't need to setting the deprecated field refcounted_frames. Signed-off-by: Jun Zhao --- doc/examples/filtering_audio.c | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/examples/filtering_audio.c b/doc/exa

[FFmpeg-devel] [PATCH 1/3] doc/examples/hw_decode: Remove setting deprecated refcounted_frames

2018-04-21 Thread Jun Zhao
When use new decode APIs(avcodec_send_packet/avcodec_receive_frame), don't need to setting the deprecated field refcounted_frames. Signed-off-by: Jun Zhao --- doc/examples/hw_decode.c | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/examples/hw_decode.c b/doc/examples/hw_decode.c

[FFmpeg-devel] [PATCH 2/3] doc/examples/filtering_video: Remove setting deprecated refcounted_frames

2018-04-21 Thread Jun Zhao
When use new decode APIs(avcodec_send_packet/avcodec_receive_frame), don't need to setting the deprecated field refcounted_frames. Signed-off-by: Jun Zhao --- doc/examples/filtering_video.c | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/examples/filtering_video.c b/doc/exa

[FFmpeg-devel] [PATCH 2/2] lavfi/tests/filtfmts: fix the build warning.

2018-05-05 Thread Jun Zhao
fix the build warning: ignoring return value. Signed-off-by: Jun Zhao --- libavfilter/tests/filtfmts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/tests/filtfmts.c b/libavfilter/tests/filtfmts.c index a958621..317df86 100644 --- a/libavfilter/tests

[FFmpeg-devel] [PATCH 1/2] checkasm/sw_rgb: fix the function declaration warning

2018-05-05 Thread Jun Zhao
fix the warning: "function declaration isn’t a prototype", in C int foo() and int foo(void) are different functions. int foo() accepts an arbitrary number of arguments, while int foo(void) accepts 0 arguments. Signed-off-by: Jun Zhao --- tests/checkasm/sw_rgb.c | 2 +- 1 file

[FFmpeg-devel] [PATCH 3/3] doc/protocols: documents tcp_mss

2018-05-06 Thread Jun Zhao
Signed-off-by: Jun Zhao --- doc/protocols.texi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index e19504d..4a0bbc8 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -1397,6 +1397,9 @@ Set send buffer size, expressed bytes. @item

[FFmpeg-devel] [PATCH 2/3] lavf/tcp: add option to setting Maximum Segment Size

2018-05-06 Thread Jun Zhao
This can change the the MSS value announced to the other end in the initial TCP packet, it's can be used when failed Path MTU discovery. Signed-off-by: Jun Zhao --- libavformat/tcp.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index b0

[FFmpeg-devel] [PATCH 1/3] lavf/network: fix doxygen comments.

2018-05-06 Thread Jun Zhao
Signed-off-by: Jun Zhao --- libavformat/network.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/network.h b/libavformat/network.h index e3fda4d..efaa789 100644 --- a/libavformat/network.h +++ b/libavformat/network.h @@ -87,9 +87,9 @@ int

[FFmpeg-devel] [PATCH v2 1/3] lavf/network: fix doxygen comments.

2018-05-08 Thread Jun Zhao
Signed-off-by: Jun Zhao --- libavformat/network.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/network.h b/libavformat/network.h index e3fda4d..efaa789 100644 --- a/libavformat/network.h +++ b/libavformat/network.h @@ -87,9 +87,9 @@ int

[FFmpeg-devel] [PATCH v2 2/3] lavf/tcp: add option to setting Maximum Segment Size

2018-05-08 Thread Jun Zhao
This can change the the MSS value announced to the other end in the initial TCP packet, it's can be used when failed Path MTU discovery. Signed-off-by: Jun Zhao --- libavformat/tcp.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/libavformat/tcp.c b/libavformat/tcp.c

[FFmpeg-devel] [PATCH v2 3/3] doc/protocols: documents tcp_mss

2018-05-08 Thread Jun Zhao
Signed-off-by: Jun Zhao --- doc/protocols.texi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/protocols.texi b/doc/protocols.texi index e19504d..e9091e0 100644 --- a/doc/protocols.texi +++ b/doc/protocols.texi @@ -1397,6 +1397,9 @@ Set send buffer size, expressed bytes. @item

<    3   4   5   6   7   8   9   10   11   >