summaryrefslogtreecommitdiffstats
path: root/libvo/img_format.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-08 20:48:02 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-08 20:48:02 +0000
commitfff46da0c3619f8e042a8b0f54c6fa73f55395e1 (patch)
treefbc06e1270bfe83d7c1e2f779dd072946a6a6b6c /libvo/img_format.h
parent7cb9ad6b11f9a85d6f7e6f34cfdfd350aca11f25 (diff)
downloadmpv-fff46da0c3619f8e042a8b0f54c6fa73f55395e1.tar.bz2
mpv-fff46da0c3619f8e042a8b0f54c6fa73f55395e1.tar.xz
Mpeg PES added
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1872 b3059339-0415-0410-9bf9-f77b7e298cf2
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