From: C.W. Betts Date: Sun, 8 Jan 2017 17:47:30 +0000 (-0700) Subject: Quiet warnings in clang when -Wdocumentation is set. X-Git-Tag: release-1.4.6~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=367c41039d38315ebf8133e46b467c039ed0150f;p=libmatroska Quiet warnings in clang when -Wdocumentation is set. --- diff --git a/matroska/KaxCluster.h b/matroska/KaxCluster.h index 70957d3..14dc49b 100644 --- a/matroska/KaxCluster.h +++ b/matroska/KaxCluster.h @@ -53,19 +53,19 @@ DECLARE_MKX_MASTER_CONS(KaxCluster) /*! \brief Addition of a frame without references - \param the timecode is expressed in nanoseconds, relative to the beggining of the Segment + \param timecode the timecode is expressed in nanoseconds, relative to the beggining of the Segment */ bool AddFrame(const KaxTrackEntry & track, uint64 timecode, DataBuffer & buffer, KaxBlockGroup * & MyNewBlock, LacingType lacing = LACING_AUTO); /*! \brief Addition of a frame with a backward reference (P frame) - \param the timecode is expressed in nanoseconds, relative to the beggining of the Segment + \param timecode the timecode is expressed in nanoseconds, relative to the beggining of the Segment */ bool AddFrame(const KaxTrackEntry & track, uint64 timecode, DataBuffer & buffer, KaxBlockGroup * & MyNewBlock, const KaxBlockGroup & PastBlock, LacingType lacing = LACING_AUTO); /*! \brief Addition of a frame with a backward+forward reference (B frame) - \param the timecode is expressed in nanoseconds, relative to the beggining of the Segment + \param timecode the timecode is expressed in nanoseconds, relative to the beggining of the Segment */ bool AddFrame(const KaxTrackEntry & track, uint64 timecode, DataBuffer & buffer, KaxBlockGroup * & MyNewBlock, const KaxBlockGroup & PastBlock, const KaxBlockGroup & ForwBlock, LacingType lacing = LACING_AUTO);