From patchwork Mon Jul 27 04:13:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Rheinhardt X-Patchwork-Id: 21276 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 CE96544A2DA for ; Mon, 27 Jul 2020 07:13:20 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A415468B6AE; Mon, 27 Jul 2020 07:13:20 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-ej1-f65.google.com (mail-ej1-f65.google.com [209.85.218.65]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 0475268B2A6 for ; Mon, 27 Jul 2020 07:13:13 +0300 (EEST) Received: by mail-ej1-f65.google.com with SMTP id rk21so15656588ejb.2 for ; Sun, 26 Jul 2020 21:13:13 -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=ZCYZ7LwcoSARxCsa87TC4hzb4Xan32CxYRc/Yfu3ZtI=; b=g/jeP4JQnWLHV7aU75lHoX220rbYot6Bkk3DYemmGLSELHIReStm7blRLqQvXbjwnN j8T0prPxzVKU21SDGleLL28FOj51qhbGouMuZNp0mhmBpG62acC3lBQmwc3p2oZzlq+r ltJrsRQfKoqa6jl/nk8x+ycNWK/jPSzj09c35h55VjIlb5vmkcQpnJnOoWqt/aUW3QDC +gfg3dXZVR3u/Lba04uKjZvWhgo36wsBHXOJxmb2cSdfx1dfEt6DALiA8De6RNFvgg1x PW7HFGbRjngyvsyKrlga4AJPlpTww1qk+pZPvTHyzeKy3vbGO58xTk/KAg5aNyaYwGOG HX1Q== 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=ZCYZ7LwcoSARxCsa87TC4hzb4Xan32CxYRc/Yfu3ZtI=; b=nz0fI32BTbznjw4bpbKujysvyLNoyq/RqGhdakMoLzynY5ti4nDTaicQOptGOjsGCd yKinma6JS61eNa0o4xkPe2DyrKgGHMV2JGgBnIAJ+HSWTT9jzmMLMO4IhplU24aL7v91 0D4YbDIIf20siGW+lOws9f+qN7F2nn9REX6NAZpEJjldincSLZj8vzm8UaGfzHq6GyWl pz3oqJa0Q30A51Jt2fLuH6eRdDYgMn0butI7WHWbSvaPEC0kjQeTX3yBQLrXxE4hVu+J K/OjahPAsw9C3xsJS/nVlX0Vi/P9rwGzPUBkG0cU7zx7G2kCT8KV2sal073eww/6jCgU c0wg== X-Gm-Message-State: AOAM532U6meDbcJjXsw2XODMX0fUY25iiLUZ0pZNyFFsc8sHGK1h4NdD Of271XKqGkEpgdlPQbMjY60RBWxv X-Google-Smtp-Source: ABdhPJzjc7r9xsErArWfvgUW3JHz+clS/s89umKz0txDSL5hxIxtuCrlMy+2L3vy45DZVnrozqLKSA== X-Received: by 2002:a17:906:12cd:: with SMTP id l13mr13119828ejb.385.1595823192991; Sun, 26 Jul 2020 21:13:12 -0700 (PDT) Received: from sblaptop.fritz.box (ipbcc10296.dynamic.kabel-deutschland.de. [188.193.2.150]) by smtp.gmail.com with ESMTPSA id j5sm6562478edh.41.2020.07.26.21.13.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 26 Jul 2020 21:13:12 -0700 (PDT) From: Andreas Rheinhardt To: ffmpeg-devel@ffmpeg.org Date: Mon, 27 Jul 2020 06:13:05 +0200 Message-Id: <20200727041305.19051-1-andreas.rheinhardt@gmail.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] avformat/internal: Remove wrong documentation 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" Has apparently been copied from ff_choose_timebase() in commit a45cf639e6fb8c86aff91a00970060cd0be401c9. Signed-off-by: Andreas Rheinhardt --- Btw: There is exactly one user of this, namely the MXF muxer. Should this be moved to mxfenc.c? The same issue exists for ff_choose_timebase(), which is only used by the nut muxer. libavformat/internal.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavformat/internal.h b/libavformat/internal.h index 17a6ab07d3..a2eac3250d 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -538,9 +538,6 @@ enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags); */ AVRational ff_choose_timebase(AVFormatContext *s, AVStream *st, int min_precision); -/** - * Chooses a timebase for muxing the specified stream. - */ enum AVChromaLocation ff_choose_chroma_location(AVFormatContext *s, AVStream *st); /**