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 7EFD044729 for ; Thu, 22 Sep 2022 02:04:29 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 95DBA68BB87; Thu, 22 Sep 2022 05:04:12 +0300 (EEST) Received: from mail-ej1-f43.google.com (mail-ej1-f43.google.com [209.85.218.43]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 717F168BB63 for ; Thu, 22 Sep 2022 05:04:06 +0300 (EEST) Received: by mail-ej1-f43.google.com with SMTP id lh5so17827655ejb.10 for ; Wed, 21 Sep 2022 19:04:06 -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=ycrLtmiQz5pawfk+gPVAhPc9vc0fSgQfZU8zhaNThhc=; b=Ez6x4B95Ne/WV2FERkMjP+GvMn+d+tfUaJSUz4odVygDUTj1KMUmmSmP7xLDydW2Fs 2Lv5CHTO9GS9bTQE0Cco+MHVvVRYW5t8Svzihgp/JBAryGBrdmDUQFvtic2GRvW1VkWt k21ABYeE4KVfl1AhrD9ZS2o6iuA36twVEsdfWFR8hkm18x9/uJkB46zPR031+ZdgR0tB oQfNLVEtdyfC/Uqx/Pbw8diy08y3GKJHOV/YonpAejnqX2xs6WltWuYMuqmMpo9/pnp9 bZa+YnOJPf64mwdd5HWo3hi7gr6tVA0mUaNS7p+wJhYkJXxE/N7IcDHSjp/qguyU2LUg UMKw== 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=ycrLtmiQz5pawfk+gPVAhPc9vc0fSgQfZU8zhaNThhc=; b=OGYd2yBR1PauIhzBif23gCBCRxFWQC88ZuofV2o2uBzG6oveMg2x4vjLAnO0jzqoJm 1w+K8kVkB1ikfZ5WWLK7qXTLt9FUaI2a1F4IX91pUXjKPmLBm8GM4R4hDKtRIc909wJH DX4TmM4Se0m4J+dZqr74VchY3Yzyn18Xjt8omOGqv77oUSnJcuuv/y7GFkM2t5dUbN2E gn+lrpF520Md3PECX5vFZvcOvbGHCZxFNQWo/fgP72P/EREbJQ9Mp/Uu4SGJpKvLcVZ1 5x1676Hb5xHg2EOeIT6K/dl9Hc8wiwhqvllpuFNortXZdoKCr4n0X++lWjYHBS5iArlN TKQg== X-Gm-Message-State: ACrzQf32IhqkW65f8IsWBXsB1oT6ZH91pbVlykeWDnmPDVp+IPEkn1HA 7ftJ/GmYkGBBzcuZG6YLE8J+d7wrywk= X-Google-Smtp-Source: AMsMyM6+D+dS/b4OcrVyy80WssX/EF8Qtfx5eA3wldimYJJmAIWHSsMcVIMqfLkS1L7/khnhCILhOA== X-Received: by 2002:a17:907:72d1:b0:781:bb32:7422 with SMTP id du17-20020a17090772d100b00781bb327422mr891705ejc.729.1663812245932; Wed, 21 Sep 2022 19:04:05 -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.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 21 Sep 2022 19:04:05 -0700 (PDT) From: Marvin Scholz To: ffmpeg-devel@ffmpeg.org Date: Thu, 22 Sep 2022 04:03:56 +0200 Message-Id: <20220922020400.46715-3-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 3/7] avformat/avformat: 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: --- libavformat/avformat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 9d46875cce..c695cfc6de 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -2003,7 +2003,7 @@ AVProgram *av_new_program(AVFormatContext *s, int id); * avformat_free_context() can be used to free the context and * everything allocated by the framework within it. * - * @param *ctx is set to the created format context, or to NULL in + * @param ctx pointee is set to the created format context, or to NULL in * case of failure * @param oformat format to use for allocating the context, if NULL * format_name and filename are used instead @@ -2656,7 +2656,7 @@ const AVIndexEntry *avformat_index_get_entry(AVStream *st, int idx); * Get the AVIndexEntry corresponding to the given timestamp. * * @param st Stream containing the requested AVIndexEntry. - * @param timestamp Timestamp to retrieve the index entry for. + * @param wanted_timestamp Timestamp to retrieve the index entry for. * @param flags If AVSEEK_FLAG_BACKWARD then the returned entry will correspond * to the timestamp which is <= the requested one, if backward * is 0, then it will be >= -- 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".