]> git.sesse.net Git - ffmpeg/blobdiff - ffmpeg.c
ffmpeg: better dox for *pts.
[ffmpeg] / ffmpeg.c
index 7365cfbdf3f2e0d8cad6a488a37449ec5f586c5e..1dd4e3b924841554fc3eb9e20b7278f8146befb8 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -210,9 +210,8 @@ typedef struct InputStream {
     /* dts of the last packet read for this stream */
     int64_t       dts;
 
-    int64_t       next_pts;  /* synthetic pts for cases where pkt.pts
-                                is not defined */
-    int64_t       pts;       /* current pts */
+    int64_t       next_pts;  ///< synthetic pts for the next decode frame
+    int64_t       pts;       ///< current pts of the decoded frame
     double ts_scale;
     int is_start;            /* is 1 at the start and after a discontinuity */
     int showed_multi_packet_warning;