Skip to content
Snippets Groups Projects
Commit f03f30d7 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

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
parent 2e5ff4d0
No related branches found
No related tags found
No related merge requests found
...@@ -234,19 +234,19 @@ typedef struct { ...@@ -234,19 +234,19 @@ typedef struct {
} PtsCorrectionContext; } PtsCorrectionContext;
/** /**
* Resets the state of the PtsCorrectionContext. * Reset the state of the PtsCorrectionContext.
*/ */
void init_pts_correction(PtsCorrectionContext *ctx); 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 might have incorrect times. Input timestamps may wrap around, in
* which case the output will as well. * 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 * AVCodecContext.reordered_opaque
* @param dts The dts field of the decoded AVPacket * @param dts the dts field of the decoded AVPacket
* @return One of the input values. May be AV_NOPTS_VALUE. * @return one of the input values, may be AV_NOPTS_VALUE
*/ */
int64_t guess_correct_pts(PtsCorrectionContext *ctx, int64_t pts, int64_t dts); int64_t guess_correct_pts(PtsCorrectionContext *ctx, int64_t pts, int64_t dts);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment