From patchwork Wed Dec 5 06:18:40 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jeyapal, Karthick" X-Patchwork-Id: 11283 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 E5E5844CFCE for ; Wed, 5 Dec 2018 08:19:08 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9DC8668A393; Wed, 5 Dec 2018 08:19:00 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from a2i252.smtp2go.com (a2i252.smtp2go.com [103.47.204.252]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6C71F68A38A for ; Wed, 5 Dec 2018 08:18:53 +0200 (EET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=smtpservice.net; s=m78bu0.a1-4.dyn; x=1543991647; h=Feedback-ID: X-Smtpcorp-Track:Message-Id:Date:Subject:To:From:Reply-To:Sender: List-Unsubscribe; bh=upl6kEo6dErR9kitOs6cleo1D/lG8xjc7uXxIg8a3OM=; b=OdM1dUis G9FCXbYgq1ZYSqHvqNgJSek459vg39hNChsC30iao30Ba0MJiz36THwoger0VvkThXKcINC0OJVLm mrQUorlFR68YLCMIpUV6hJdXLwPTXCRKOnteG1Moq//xevXd0S5sTkdoja5IOnr3bMIsu2kTWMzw1 E2t6Vkx9lxbBRlv6afX/kWxKbck541eKva4BdcbTeDJGnk4lAfa7jmynZtamzxsDxa/OUmbk/W6pO ilzTb++qam4+a6HKooKdAbfhCspMRAYeGnF3sdBPGPLWhFc1RLmoOKUnBnfDCuaxVV9O7bnJsP8Ol I1wu44zkJ/rC96kt0dQqa1D6jQ==; Received: from [10.45.79.71] (helo=SmtpCorp) by smtpcorp.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.91) (envelope-from ) id 1gUQWS-095Exj-UE; Wed, 05 Dec 2018 06:19:00 +0000 Received: from [10.63.208.195] (helo=blr-mp4tf.bangalore.corp.akamai.com) by smtpcorp.com with esmtpa (Exim 4.91) (envelope-from ) id 1gUQWR-DuugNu-Hu; Wed, 05 Dec 2018 06:19:00 +0000 From: Karthick J To: ffmpeg-devel@ffmpeg.org Date: Wed, 5 Dec 2018 11:48:40 +0530 Message-Id: <20181205061840.26063-2-kjeyapal@akamai.com> X-Mailer: git-send-email 2.17.1 (Apple Git-112) In-Reply-To: <20181205061840.26063-1-kjeyapal@akamai.com> References: <20181205061840.26063-1-kjeyapal@akamai.com> X-Smtpcorp-Track: 1glQWRDIIgNIHI.Uy3SQ-fSI Feedback-ID: 337386m:337386asVRLGB:337386spi9SChgjz X-Report-Abuse: Please forward a copy of this message, including all headers, to Subject: [FFmpeg-devel] [PATCH v2 2/2] avformat/dashenc: Used the movenc option skip_sidx instead of global_sidx 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: Karthick J MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Anyways the intended behaviour was to disable SIDX atom. --- libavformat/dashenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 4d9b564a94..585b34cb97 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -1162,7 +1162,7 @@ static int dash_init(AVFormatContext *s) if (os->segment_type == SEGMENT_TYPE_MP4) { if (c->streaming) - av_dict_set(&opts, "movflags", "frag_every_frame+dash+delay_moov+global_sidx", 0); + av_dict_set(&opts, "movflags", "frag_every_frame+dash+delay_moov+skip_sidx", 0); else av_dict_set(&opts, "movflags", "frag_custom+dash+delay_moov", 0); } else {