[FFmpeg-cvslog] r12083 - trunk/libavfilter/avfilter.h

vitor subversion
Fri Feb 15 23:12:51 CET 2008


Author: vitor
Date: Fri Feb 15 23:12:50 2008
New Revision: 12083

Log:
Add pts to frame references

Commited in SoC by Bobby Bingham on 2007-07-14 17:31:40


Modified:
   trunk/libavfilter/avfilter.h

Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h	(original)
+++ trunk/libavfilter/avfilter.h	Fri Feb 15 23:12:50 2008
@@ -53,7 +53,7 @@ typedef struct AVFilterPic
  * and dimensions are per-reference properties.  Linesize is also useful for
  * image flipping, frame to field filters, etc, and so is also per-reference.
  *
- * TODO: add pts, and anything necessary for frame reordering
+ * TODO: add anything necessary for frame reordering
  */
 typedef struct AVFilterPicRef
 {
@@ -62,6 +62,8 @@ typedef struct AVFilterPicRef
     int linesize[4];
     int w, h;
 
+    int64_t pts;                ///< presentation timestamp in milliseconds
+
     int perms;                  ///< permissions
 #define AV_PERM_READ     0x01   ///< can read from the buffer
 #define AV_PERM_WRITE    0x02   ///< can write to the buffer




More information about the ffmpeg-cvslog mailing list