diff mp_core.h @ 25824:eb338d06c638

Add support for dvdnav still frames playback. Based on various patches from Otvos Attila and MPlayer'ized by me. N.B. Always use -vc ffmpeg12 with dvdnav://
author ben
date Sat, 26 Jan 2008 11:51:34 +0000
parents 6ac1ece1f9fe
children 9d4121fa508a
line wrap: on
line diff
--- a/mp_core.h	Fri Jan 25 19:27:42 2008 +0000
+++ b/mp_core.h	Sat Jan 26 11:51:34 2008 +0000
@@ -102,6 +102,13 @@
 #endif
 
     int was_paused;
+
+#ifdef USE_DVDNAV
+    mp_image_t    *nav_smpi;     ///< last decoded dvdnav video image
+    unsigned char *nav_buffer;   ///< last read dvdnav video frame
+    unsigned char *nav_start;    ///< pointer to last read video buffer
+    int            nav_in_size;  ///< last read size
+#endif
 } MPContext;