comparison dvdnav.c @ 66:2bd4a78eefce src

Patch from aschultz@cs.uni-magdeburg.de to allow for still-frame 'peek-ahead'
author richwareham
date Thu, 25 Jul 2002 14:42:33 +0000
parents 30995ad032cf
children 61c0ee1bbb7a
comparison
equal deleted inserted replaced
65:dcde6d9cea7a 66:2bd4a78eefce
974 } 974 }
975 *current_angle=this->position_next.cell; 975 *current_angle=this->position_next.cell;
976 return S_OK; 976 return S_OK;
977 } 977 }
978 978
979 dsi_t* dvdnav_get_current_nav_dsi(dvdnav_t *this) {
980 if(!this || !this->vm) return 0;
981 return &this->dsi;
982 }
983
984 uint32_t dvdnav_get_next_still_flag(dvdnav_t *this) {
985 if(!this || !this->vm) {
986 return S_ERR;
987 }
988 return this->position_next.still;
989 }
990
979 /* 991 /*
980 * $Log$ 992 * $Log$
993 * Revision 1.28 2002/07/25 14:42:33 richwareham
994 * Patch from aschultz@cs.uni-magdeburg.de to allow for still-frame 'peek-ahead'
995 *
981 * Revision 1.27 2002/07/12 15:46:44 mroi 996 * Revision 1.27 2002/07/12 15:46:44 mroi
982 * use new memcopy'less read ahead cache 997 * use new memcopy'less read ahead cache
983 * 998 *
984 * Revision 1.26 2002/07/06 16:24:54 mroi 999 * Revision 1.26 2002/07/06 16:24:54 mroi
985 * * fix debug messages 1000 * * fix debug messages