From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 802E443BE7 for ; Thu, 22 Sep 2022 02:04:49 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 71B4B68BB9E; Thu, 22 Sep 2022 05:04:15 +0300 (EEST) Received: from mail-ed1-f43.google.com (mail-ed1-f43.google.com [209.85.208.43]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E850768BB8A for ; Thu, 22 Sep 2022 05:04:07 +0300 (EEST) Received: by mail-ed1-f43.google.com with SMTP id z13so11437382edb.13 for ; Wed, 21 Sep 2022 19:04:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date; bh=rKwK6ztN1vrHpDVyVxriUP5hwMHKz/MbaF7S/7fKuJY=; b=ZlLp/QxFmHJYhNa+T0qRxFuOzyMyZoVgsuI5Wp3O5N7nr8DhLeO09uSNdquBuxuL4O pDYQiueeGVRnV2iE05fYDgJj116lyZrwGcs+IUd2uNvtX4HQETZ/3/uRb2jrAto4Lw3Y 1xei2H6ACX1iqiLAOQWNPzpcH3dBXjtgNzCGWS5GMz48CJcd7nOB0iCw1yQgpyc5Ydih MSAEeRpefvA/hm74flqp2HXlCk7sOWN/arukdFJfo8+gzbrhYi9oC+NAm5iH9Sy/gKLI sMXy1X7/g4avu4eSJ9sq75Jd4QUuR/B4MZmZpIFgvSMgMPhpyS/+M1eYcSH+uf2Wg5+w 9Lsw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date; bh=rKwK6ztN1vrHpDVyVxriUP5hwMHKz/MbaF7S/7fKuJY=; b=eRRZU8Ab2AJAmW+3BNhwYZ3/74LHQZuZfpDg+Ax1CGRzVqNQON/ssF9Rwui/Ro+JK1 gsyvRDdVcRu8q+ECXo3T4jMv+y4jdl0KyPilPQ1LUGVzjrs3sc+YfIM8S09rYkp/GyYs gHViC22KMlafrv7cje8naO+dx2OIMHoK2GZUkqCH/fNImuwMjZ+eRvDylm2gSNvr10ik baAgcxv7mLOWw9wyQLvrxcxamc3QxOLQYnRirhuJ7oZudQi98I1aJN5nyTUknKC4tWHQ 3QfG45h/A7O5y1jaVu1CxjO7WBvUX+/rLo7iiVYLLVDLr+7aRaXsrsJnYD8WQ/pPq6ee FqLQ== X-Gm-Message-State: ACrzQf0sBNidqRYIfsFP/58g9vbGtNy4vCsd1lZrq7bIab6g0lDTlaYz vBJK2YiI7skq7juCUvmL2zI29EoJ+Ks= X-Google-Smtp-Source: AMsMyM6EvQCSJi8zvTKjjpAV6QTTTKIdB5dfWvCI2kY+agcqv4LUuafEbgpEQOn3Soebmen/l7tQ/w== X-Received: by 2002:aa7:cd49:0:b0:451:e570:8a82 with SMTP id v9-20020aa7cd49000000b00451e5708a82mr901977edw.369.1663812247443; Wed, 21 Sep 2022 19:04:07 -0700 (PDT) Received: from MBP-von-Marvin.citadel.scalie.me (84-112-104-25.cable.dynamic.surfer.at. [84.112.104.25]) by smtp.gmail.com with ESMTPSA id b10-20020aa7df8a000000b0044e01e2533asm2836847edy.43.2022.09.21.19.04.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 21 Sep 2022 19:04:07 -0700 (PDT) From: Marvin Scholz To: ffmpeg-devel@ffmpeg.org Date: Thu, 22 Sep 2022 04:03:58 +0200 Message-Id: <20220922020400.46715-5-epirat07@gmail.com> X-Mailer: git-send-email 2.37.0 (Apple Git-136) In-Reply-To: <20220922020400.46715-1-epirat07@gmail.com> References: <20220922020400.46715-1-epirat07@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v2 5/7] swresample/swresample: Fix mismatching argument names X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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: Marvin Scholz Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libswresample/swresample.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libswresample/swresample.h b/libswresample/swresample.h index 980be65783..4c26468c63 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -354,8 +354,8 @@ int swr_convert(struct SwrContext *s, uint8_t **out, int out_count, * in this case the output timestamps will match output sample numbers. * See ffmpeg-resampler(1) for the two modes of compensation. * - * @param s[in] initialized Swr context - * @param pts[in] timestamp for the next input sample, INT64_MIN if unknown + * @param[in] s initialized Swr context + * @param[in] pts timestamp for the next input sample, INT64_MIN if unknown * @see swr_set_compensation(), swr_drop_output(), and swr_inject_silence() are * function used internally for timestamp compensation. * @return the output timestamp for the next output sample @@ -636,8 +636,8 @@ int swr_convert_frame(SwrContext *swr, * @see swr_close(); * * @param swr audio resample context - * @param output output AVFrame - * @param input input AVFrame + * @param out output AVFrame + * @param in input AVFrame * @return 0 on success, AVERROR on failure. */ int swr_config_frame(SwrContext *swr, const AVFrame *out, const AVFrame *in); -- 2.37.0 (Apple Git-136) _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".