summaryrefslogtreecommitdiffstats
path: root/libvo/img_format.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/img_format.h')
-rw-r--r--libvo/img_format.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libvo/img_format.h b/libvo/img_format.h
index 7d5b9c6a30..0ff8eae610 100644
--- a/libvo/img_format.h
+++ b/libvo/img_format.h
@@ -50,5 +50,14 @@
#define IMGFMT_YUVP 0x50565559
#define IMGFMT_UYVP 0x50565955
+/* Compressed Formats */
+#define IMGFMT_MPEGPES (('M'<<24)|('P'<<16)|('E'<<8)|('S'))
+
+typedef struct {
+ void* data;
+ int size;
+ int id; // stream id. usually 0x1E0
+ int timestamp; // pts, 90000 Hz counter based
+} vo_mpegpes_t;
#endif