From patchwork Sun Mar 1 12:38:44 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jun Zhao X-Patchwork-Id: 17983 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 0277344AF63 for ; Sun, 1 Mar 2020 14:39:00 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C969368B01C; Sun, 1 Mar 2020 14:38:59 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-pl1-f195.google.com (mail-pl1-f195.google.com [209.85.214.195]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D6BF868AC53 for ; Sun, 1 Mar 2020 14:38:52 +0200 (EET) Received: by mail-pl1-f195.google.com with SMTP id g6so3083960plp.6 for ; Sun, 01 Mar 2020 04:38:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=NJHWC6Td3Rcp3TJx5tuKhJ4TgoKUxZXoD7iEapeINys=; b=WXFnYEgb7p/1tJW030+DdnZF5/amLiVc+UisHC2tyDgOK6fHzRgdPClwBxxR0cJ+HW lCMqhrxH8xxl5tRT4VdiIHPx1eCe60sL+ZYjnYomJT4T9jYIBUjtw96xwVZoXEDyIGLb e5b9zxr+FTnlUcpUUotiNv6DAKTRFGDg+vDijfK1mSxp5bgyxrSNLSk1p0VIhD6Jm3L/ DzhtYjK41XVqbBKiUYfl7wnJqO/2RVyomBg4FO9S655vyHubcDodFwBdkISOPAuaxxVb AeFKuWvuVkQ44Iaqh4OrgQD/UNNFXVVsICO9Olh3jovRp0L56o139WWhTzn3w9QwsK1Y HWCg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=NJHWC6Td3Rcp3TJx5tuKhJ4TgoKUxZXoD7iEapeINys=; b=nh2iBeubC4dovOo5FVPb6ijnfNy+/U4pNGfzMWrzfunpmaPucj9LFfVmnRbMdrz6tJ 6eeByJfgP/xzHZg6m0g+M141LUq/Rao3XEprILnQIZiwqRlNUmsdNMvb8OyrDQb7QpFS Z2ZFNrToCM2ahXGDF4snm22I5Rtv/KoEbh/YaHL9xirmTz94wewUJuSVz2MLcevTiowO 3qN1x0UOLywkvSXdmKVAms/TT7tRK/IR9Af1Hq90MYmdiVV4zyO/4iUFen/jZNyY0L6U oPKxNwMvcrxn6jUL/NkUMrQe5Gpy60TbDjiso7fKtI7kDP3eCCUqKsyS0nO6Ig56qN0Y g9qw== X-Gm-Message-State: APjAAAWSvjdfBIDRxJQH6KvEPpTOJIaqFKQtoOLSAMPZ6QcxQFR7Q4fi DmHS3IhfnZtDcla4VkYktfd63VSdxJM= X-Google-Smtp-Source: APXvYqwqyHnX2I8UgxGNkw7NI0rBaiK3hZg+pJHfdCDct/8ipZn+AuUK+6NcE/4twWpTZucJQBv2bw== X-Received: by 2002:a17:90a:c58f:: with SMTP id l15mr12668470pjt.102.1583066330941; Sun, 01 Mar 2020 04:38:50 -0800 (PST) Received: from localhost.localdomain ([47.90.47.25]) by smtp.gmail.com with ESMTPSA id 144sm18460769pfc.45.2020.03.01.04.38.49 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 01 Mar 2020 04:38:50 -0800 (PST) From: Jun Zhao To: ffmpeg-devel@ffmpeg.org Date: Sun, 1 Mar 2020 20:38:44 +0800 Message-Id: <1583066326-7307-1-git-send-email-mypopydev@gmail.com> X-Mailer: git-send-email 1.7.1 Subject: [FFmpeg-devel] [PATCH V1 1/3] lavf/dashenc: add 3GPP TS26.247 probe in dash demuxer X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Jun Zhao MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From: Jun Zhao Enabled the 3GP-DASH Release-10/Relase-11(3GPP TS26.247) profile to dash demuxer probe. Signed-off-by: Jun Zhao --- libavformat/dashdec.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 15e79fd..7be3276 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -2361,7 +2361,9 @@ static int dash_probe(const AVProbeData *p) if (av_stristr(p->buf, "dash:profile:isoff-on-demand:2011") || av_stristr(p->buf, "dash:profile:isoff-live:2011") || av_stristr(p->buf, "dash:profile:isoff-live:2012") || - av_stristr(p->buf, "dash:profile:isoff-main:2011")) { + av_stristr(p->buf, "dash:profile:isoff-main:2011") || + av_stristr(p->buf, "3GPP:PSS:profile:DASH10") || + av_stristr(p->buf, "3GPP:PSS:profile:DASH11")) { return AVPROBE_SCORE_MAX; } if (av_stristr(p->buf, "dash:profile")) { From patchwork Sun Mar 1 12:38:45 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jun Zhao X-Patchwork-Id: 17984 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 6710C44BD1E for ; Sun, 1 Mar 2020 15:03:09 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3B16F68AE72; Sun, 1 Mar 2020 15:03:09 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-io1-f66.google.com (mail-io1-f66.google.com [209.85.166.66]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 62F0A68AE28 for ; Sun, 1 Mar 2020 15:03:02 +0200 (EET) Received: by mail-io1-f66.google.com with SMTP id m22so2197343ioj.7 for ; Sun, 01 Mar 2020 05:03:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=d95tQhEXXiukjNrts+CxxjBMqJtKB0Icqvb2pG0nCsA=; b=eOLvbtt3Bsh+5uoq4crauYv2mPTxwqugzvzfMj/reC13lN4bjMmWGs+NDJfZAymM7I F0CIhbIc5a57WCWkkkobbuqSBpqSv088Ly3tJPXOWBQvxOI9XXfZso4K2Wpl7iOof9GT XY7IkTIKKzb2dUAwOhxMQZMBaCWHM/XaW/4qzpzAt7pgLmnV5LXQuH/mKaF47ZJ1fdCf kE/V6qXFq606wHGeu4WJV5rEe3KMqARiKDoQE8VWPd4fgUvgBAlKQwE/smycu3dL6eWf NMdImaD1/3Ut4lah3RiNoT8IgG67zVhIUNguCxXgq1ZfIWJoDOKJD4onrh2SLCMuI2Hi dG9w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=d95tQhEXXiukjNrts+CxxjBMqJtKB0Icqvb2pG0nCsA=; b=n3gOIzKYpuhFkKTMjDe9BZdw09F8r+npJxYxGHL91SW3kvjCki3Rfg+kowNURxW7Km ra+WDyVxxBowCv20XI6nRfiOAUmc9mG1JxUp81fMY3FY49p6So9SYxTC6DFEeWPqt9+o hbFoVhECsVab/+w72H8CKUw4fB01u1RYGMkb5lO+PMlcAsILvz5AXL8PeC1JWHIlzZ2l XlROG1esOGRCYo6wS4BLQ5cY1PVDK17N7YUdZ3x2RcZY18ZJ1JvMj/jsaOcZ0KPjhtrD GtD6XjjantvaKGSvFScHfysxAhAig2q6lmEwwNo/1if+d7YG0Bbau3Xp5fAL9ADpIOYy Gu7A== X-Gm-Message-State: APjAAAWDGSq1x/9PRqfujkvH5zwQHlQcihrE1w6Ghsjp07kXtmnFAGsO PTAmFO1PlKntHjzUzicTr3Pmuw+OpmA= X-Google-Smtp-Source: APXvYqzzqRGA/K6eIGpiVv9JjAfjJCK1T+1VvkJ9ykUIM04H+Y8a9U8WwNVx5NggKez2A9REOGMJ6A== X-Received: by 2002:a65:6909:: with SMTP id s9mr13585025pgq.92.1583066335390; Sun, 01 Mar 2020 04:38:55 -0800 (PST) Received: from localhost.localdomain ([47.90.47.25]) by smtp.gmail.com with ESMTPSA id 144sm18460769pfc.45.2020.03.01.04.38.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 01 Mar 2020 04:38:55 -0800 (PST) From: Jun Zhao To: ffmpeg-devel@ffmpeg.org Date: Sun, 1 Mar 2020 20:38:45 +0800 Message-Id: <1583066326-7307-2-git-send-email-mypopydev@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1583066326-7307-1-git-send-email-mypopydev@gmail.com> References: <1583066326-7307-1-git-send-email-mypopydev@gmail.com> Subject: [FFmpeg-devel] [PATCH V1 2/3] lavf/dashdec: Add ts to the list of allowed extensions. X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Jun Zhao MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From: Jun Zhao Dashdec can able to handle MPEG-2 TS streams by default as well, used MP4Box to create the segmented MPEG-2 TS files for verification. Signed-off-by: Jun Zhao --- libavformat/dashdec.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 7be3276..984c95b 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -2378,7 +2378,7 @@ static int dash_probe(const AVProbeData *p) static const AVOption dash_options[] = { {"allowed_extensions", "List of file extensions that dash is allowed to access", OFFSET(allowed_extensions), AV_OPT_TYPE_STRING, - {.str = "aac,m4a,m4s,m4v,mov,mp4,webm"}, + {.str = "aac,m4a,m4s,m4v,mov,mp4,webm,ts"}, INT_MIN, INT_MAX, FLAGS}, {NULL} }; From patchwork Sun Mar 1 12:38:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jun Zhao X-Patchwork-Id: 17985 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 57CD044BD1E for ; Sun, 1 Mar 2020 15:03:16 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4451C68AE28; Sun, 1 Mar 2020 15:03:16 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-oi1-f196.google.com (mail-oi1-f196.google.com [209.85.167.196]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 410C668B487 for ; Sun, 1 Mar 2020 15:03:09 +0200 (EET) Received: by mail-oi1-f196.google.com with SMTP id g6so5939050oiy.1 for ; Sun, 01 Mar 2020 05:03:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=/psBxA68lvBTmaqafEXeiIHarRgAYDpK1jrsaXdVIkE=; b=T4gKEt4trh0UNWXLH8NTZJbpigPkF1VKCoaJGDkP8yCYCrTHxzc3RAEEYp6/a8adgB MSzn4ZCfOGV0JgKNkJyngI+bVBzrOohv4JEgO1sLRrL1xbhRgmr/im59wr1suUOtU/EB k9kzglaDOXB2QL58n6/DCN8rMobojRpMYaATNxrDNGClops/+FUAQVQ4yY0L+0xdZ1pJ oGfoKOJ1zRhpK4exIQQ82pa1geRKlwq9T5cZitP9eYbKfjUdq/LDflC4CngPn/mNghy3 upM9JWBe3gXV9Q8FaW1QoHsfKKHE91nbzbcOCXjHMY7uRpAgb4eVcBJFw5UoyXb8Fhb/ GAdQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=/psBxA68lvBTmaqafEXeiIHarRgAYDpK1jrsaXdVIkE=; b=jcl8badDSMYccWCUg25Unn+Ax20ky46Ff19ZXKkuuNdy6vxq1O8/Z0HNFXMHK6qjcu LX7SkLecqaTq3mHitSvLjZfEnBrIjrGiQ8aSyLwAp6l9qrzw2sq0HIba1nVltLgze+fO ZC6SeT+4XqjZ467/ZWKhPucAI8LAqdNRMo4PKTDEUyUGG4rQ5tjG0jAN+tvRT7Oc9zet b0K8U1Y7EhYZ3YX3/wFbVH8tw76Ohu7y9hpZKVWdlSQg2Q0tUGnAPA74+HINL4nS+IMq 5gf3bgwA4PmMjkleKgpdIpHku0EoBxLm799MRfYPnBjtTZ2MQSvTfNWKcg5507ppTUB4 aKhg== X-Gm-Message-State: APjAAAX/nQ4ZLTN+LsX+njuxN8yW7Vi2F2tHJ4SMo/UO3x3dkQFTVMzB kaLEB6nug7+W0dWrIr1TaWBvM4i32Cs= X-Google-Smtp-Source: APXvYqw0k9efSWiO0gVO43pb7ydNhAIJt7kpMLENQaVjSZ2v3hKCAgfurPbkCNxz2scOzQbPzYz/Ig== X-Received: by 2002:a17:90a:d350:: with SMTP id i16mr15577272pjx.38.1583066338980; Sun, 01 Mar 2020 04:38:58 -0800 (PST) Received: from localhost.localdomain ([47.90.47.25]) by smtp.gmail.com with ESMTPSA id 144sm18460769pfc.45.2020.03.01.04.38.57 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 01 Mar 2020 04:38:58 -0800 (PST) From: Jun Zhao To: ffmpeg-devel@ffmpeg.org Date: Sun, 1 Mar 2020 20:38:46 +0800 Message-Id: <1583066326-7307-3-git-send-email-mypopydev@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1583066326-7307-1-git-send-email-mypopydev@gmail.com> References: <1583066326-7307-1-git-send-email-mypopydev@gmail.com> Subject: [FFmpeg-devel] [PATCH V1 3/3] doc/filters: add missed framesync part in filter docs X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Jun Zhao MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From: Jun Zhao Add missed framesync part in filter docs. Signed-off-by: Jun Zhao --- doc/filters.texi | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 1453ecd..73f9f0a 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -12242,6 +12242,8 @@ this value filter algorithm for connecting components is activated. By default value is 0. @end table +The @code{hysteresis} filter also supports the @ref{framesync} options. + @section idet Detect video interlacing type. @@ -13094,6 +13096,8 @@ set output bit depth, only available for @code{lut2} filter. By default is 0, which means bit depth is automatically picked from first input format. @end table +The @code{lut2} filter also supports the @ref{framesync} options. + Each of them specifies the expression to use for computing the lookup table for the corresponding pixel component values. @@ -21330,6 +21334,8 @@ Size of output frames. Defaults to the same as the first input. @end table +The @code{program_opencl} filter also supports the @ref{framesync} options. + The program source file must contain a kernel function with the given name, which will be run once for each plane of the output. Each run on a plane gets enqueued as a separate 2D global NDRange with one work-item for each