From patchwork Tue Jun 4 13:20:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Rheinhardt X-Patchwork-Id: 13410 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 87C5C449776 for ; Tue, 4 Jun 2019 16:29:57 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6AE69680353; Tue, 4 Jun 2019 16:29:57 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 1DFBF6802AC for ; Tue, 4 Jun 2019 16:29:51 +0300 (EEST) Received: by mail-wr1-f65.google.com with SMTP id n4so12804539wrs.3 for ; Tue, 04 Jun 2019 06:29:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=knhAXbmPCo6mKcwLYW5hHgvWUfmop5cI3NrM9F9LKto=; b=C33MKV0p0WBAFfliS/6iPMDWzvjrQ7Jr4ycsKBD7oVejiuUgrAis9iWEaSUPQCTdCS HEJUL5JGiiDgEfG8w34D6KnIYhCWen8wEjI6w51W1n9aUeQBzea0qlErx5yZZRV79PVk nBFCeMXlS+uB0+9aV3yKtZ+SHwZTVDs6PnRoqq30gJZF9M5n6l3g15mUX8RMlv0FR4cO 1rWiKUVGsTrGs+vFaEuePQLhn5ZZgc+hFQ8wZYHEs/IIVoAibiAR0JmYDg/V4iD1S4nk anYIDH3MFeo+iDLl9ijeazuKk/aLq39P8iJNgKC8YEiJ9to2ov+7tnRMdrZlcjYapFIn IVvw== 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:mime-version :content-transfer-encoding; bh=knhAXbmPCo6mKcwLYW5hHgvWUfmop5cI3NrM9F9LKto=; b=ooYVBcM9tbIhe/K/UbxWlEWys86xYqSUDPbMhvm9f59i7QvPJPbwqoHf5c4MM17wYK TAbUGMpjePGnjTeM7RIDXyeWx0X2Ek8cg3hVu5gfQe7Qh/AFl69CMcjiEggKzirKsgAb 6fhNdzO8QCod0Rq1SeC2WtTLkryRARx6Mb4yWGNzGru++xBocqtb85edI2bB7GtqGgGS X6T+TWEo/HOa5Qmjs7wxFYueXNxiuMCWMC37QnmpfbCfBs5u5bujgVE6hUGYimhZsxnm FqBoBevZQdyACc+KURnG+NFD6DxyMRhi4+pYDg/vHUEVzCMuZBaxZPoy+Vvh2Rfo22tw QMVw== X-Gm-Message-State: APjAAAUb1Wxw5E4NtCkOwoDFoo00DxUgKjT//9oDiEeiTofyujCSZL7s A/r2yKvQBStzLhScqxn4qS2255wH X-Google-Smtp-Source: APXvYqwrgBfV6HmjWEj1pS5nyQxphgddKqlSy/iF4Lg4eRnJNHgNRiVKe/PTEfnU98bdripcf5ETKA== X-Received: by 2002:adf:e591:: with SMTP id l17mr10189635wrm.231.1559654510189; Tue, 04 Jun 2019 06:21:50 -0700 (PDT) Received: from localhost.localdomain (ipbcc063db.dynamic.kabel-deutschland.de. [188.192.99.219]) by smtp.gmail.com with ESMTPSA id b136sm22015505wme.30.2019.06.04.06.21.48 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Tue, 04 Jun 2019 06:21:49 -0700 (PDT) From: Andreas Rheinhardt To: ffmpeg-devel@ffmpeg.org Date: Tue, 4 Jun 2019 15:20:46 +0200 Message-Id: <20190604132046.23312-1-andreas.rheinhardt@gmail.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] doc/bitstream_filters: Correct dump_extradata description 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: Andreas Rheinhardt Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" The default is to dump extradata to keyframes, not all frames. Signed-off-by: Andreas Rheinhardt --- doc/bitstream_filters.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/bitstream_filters.texi b/doc/bitstream_filters.texi index 25bbf8372b..40e8adad0f 100644 --- a/doc/bitstream_filters.texi +++ b/doc/bitstream_filters.texi @@ -120,7 +120,7 @@ add extradata to all packets @end table @end table -If not specified it is assumed @samp{e}. +If not specified it is assumed @samp{k}. For example the following @command{ffmpeg} command forces a global header (thus disabling individual packet headers) in the H.264 packets