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 92B384451C for ; Thu, 15 Sep 2022 01:56:08 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6428168BAFE; Thu, 15 Sep 2022 04:56:06 +0300 (EEST) Received: from mail-wm1-f49.google.com (mail-wm1-f49.google.com [209.85.128.49]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id E975868B9B4 for ; Thu, 15 Sep 2022 04:55:59 +0300 (EEST) Received: by mail-wm1-f49.google.com with SMTP id u15-20020a05600c19cf00b003b4acef34b1so233682wmq.4 for ; Wed, 14 Sep 2022 18:55:59 -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=v+NSMw6xX5a4sfa3/acoCsx0Bj/ADZqh+65zJEWdg0g=; b=Htn+TmSiCtK7q7Cyn5jyAfOt2qMwCA89EBcalBcUSLGXQgw0/qquxeGWFDp/GdulMX cxR4naFsXrUeC+fQjY11vEWOVbqWCm/JBoiq8CFd62TeqBMHcJBRwOEpUtlfbbZ2CnIy iIyzd2PMbyPzdKLMuuVu2UXKYqB8InftuQ62r648tmzlV1q5aMeiWZzXUULskaQHx60I TwFdMgJYQHvxKNutmhzY0GclUZ73LWdL/7A0L26j9zfygYb0JePi+iHIERKmsnl3VS6S WZ37U82JDLHx74LHJyZrpSZpWLunba//wHTr5rWhALkCWDerayQrsuaaGASUDnO6KqrR zyXA== 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=v+NSMw6xX5a4sfa3/acoCsx0Bj/ADZqh+65zJEWdg0g=; b=CchatgtPBdWAJ1/dCjPCf6Qlkr9aXMt69SOQfVTxnry9R1C5Ds8XItXhaY1jCNmHY+ c0EiWZ58OMAU0iZypyUkHgMB74n7OdTxlsysTeJC7XVwUZi3becE7P5NyqOb6bduXe7B s0fPYtVw3honM4syqgDxbOzfYuVb0s9pSxlTtXgIst0rvYbrNlT9umlJ5AI+Ukopwz2+ 1AtLf0+LfvPCRXyfjhLfUCW0IuaK7jv3AzzVP2naQdigPgET8udO5tkCtEbqE1h56kco /7pXK1469t5DCE0pxuE92FneUietrZZe4S73jsAkQxm7nyWzdZXfX14Q1vRYt/mHi+VW d+Eg== X-Gm-Message-State: ACgBeo2YgHI6dGY/ce2PQOx4C2wXwGWctE+pEkCcPyH+SxB81tHA1oOy Zif67sEntiQzpVGQ3k0om+ns2bIHSHzwWA== X-Google-Smtp-Source: AA6agR6NJUz6wjTswwF4FVo0vk2UvjlD4GRvXxjpK/AC9ZYePTNruNitmlXfLLhnk9tk4NrK0kCdQQ== X-Received: by 2002:a05:600c:5122:b0:3b4:768d:f491 with SMTP id o34-20020a05600c512200b003b4768df491mr5260939wms.68.1663206959440; Wed, 14 Sep 2022 18:55:59 -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 q22-20020a7bce96000000b003b491f99a25sm909882wmj.22.2022.09.14.18.55.58 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 14 Sep 2022 18:55:59 -0700 (PDT) From: Marvin Scholz To: ffmpeg-devel@ffmpeg.org Date: Thu, 15 Sep 2022 03:55:49 +0200 Message-Id: <20220915015555.34841-1-epirat07@gmail.com> X-Mailer: git-send-email 2.37.0 (Apple Git-136) In-Reply-To: References: MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 1/7] avcodec: Fix Doxygen trailing brief comments 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: The //< comment is not any magic comment supported by Doxygen, instead use //!< to mark them as brief doc for the members. --- libavcodec/avcodec.h | 8 ++++---- libavcodec/codec_par.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7db5d1b1c5..665a5eadaf 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2804,10 +2804,10 @@ int avcodec_get_hw_frames_parameters(AVCodecContext *avctx, */ enum AVPictureStructure { - AV_PICTURE_STRUCTURE_UNKNOWN, //< unknown - AV_PICTURE_STRUCTURE_TOP_FIELD, //< coded as top field - AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //< coded as bottom field - AV_PICTURE_STRUCTURE_FRAME, //< coded as frame + AV_PICTURE_STRUCTURE_UNKNOWN, //!< unknown + AV_PICTURE_STRUCTURE_TOP_FIELD, //!< coded as top field + AV_PICTURE_STRUCTURE_BOTTOM_FIELD, //!< coded as bottom field + AV_PICTURE_STRUCTURE_FRAME, //!< coded as frame }; typedef struct AVCodecParserContext { diff --git a/libavcodec/codec_par.h b/libavcodec/codec_par.h index 7660791a12..8caad71b5e 100644 --- a/libavcodec/codec_par.h +++ b/libavcodec/codec_par.h @@ -37,10 +37,10 @@ enum AVFieldOrder { AV_FIELD_UNKNOWN, AV_FIELD_PROGRESSIVE, - AV_FIELD_TT, //< Top coded_first, top displayed first - AV_FIELD_BB, //< Bottom coded first, bottom displayed first - AV_FIELD_TB, //< Top coded first, bottom displayed first - AV_FIELD_BT, //< Bottom coded first, top displayed first + AV_FIELD_TT, //!< Top coded_first, top displayed first + AV_FIELD_BB, //!< Bottom coded first, bottom displayed first + AV_FIELD_TB, //!< Top coded first, bottom displayed first + AV_FIELD_BT, //!< Bottom coded first, top displayed first }; /** -- 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".