summaryrefslogtreecommitdiff
path: root/cmdutils.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-28 14:49:55 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-28 14:49:55 +0000
commitf03f30d77a9e2de80c2c1cf09a15e983a71f1ad3 (patch)
tree3a31bd77fcd5ab7c73b53163487f7a7784ff9091 /cmdutils.h
parent2e5ff4d0e56fcce7fd13de0c4165dd9abb3aa013 (diff)
Make new doxy follows the agreed upon style and grammatical
conventions, for consistency with the rest of the documentation. Originally committed as revision 25246 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.h')
-rw-r--r--cmdutils.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmdutils.h b/cmdutils.h
index c2c3c466ad..61bcfdc71f 100644
--- a/cmdutils.h
+++ b/cmdutils.h
@@ -234,19 +234,19 @@ typedef struct {
} PtsCorrectionContext;
/**
- * Resets the state of the PtsCorrectionContext.
+ * Reset the state of the PtsCorrectionContext.
*/
void init_pts_correction(PtsCorrectionContext *ctx);
/**
- * Attempts to guess proper monotonic timestamps for decoded video frames
+ * Attempt to guess proper monotonic timestamps for decoded video frames
* which might have incorrect times. Input timestamps may wrap around, in
* which case the output will as well.
*
- * @param pts The pts field of the decoded AVPacket, as passed through
+ * @param pts the pts field of the decoded AVPacket, as passed through
* AVCodecContext.reordered_opaque
- * @param dts The dts field of the decoded AVPacket
- * @return One of the input values. May be AV_NOPTS_VALUE.
+ * @param dts the dts field of the decoded AVPacket
+ * @return one of the input values, may be AV_NOPTS_VALUE
*/
int64_t guess_correct_pts(PtsCorrectionContext *ctx, int64_t pts, int64_t dts);