Commit 42ac9cdb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

sleep is not thread-safe - use VLC API msleep instead

parent edd72ac0
...@@ -43,10 +43,6 @@ ...@@ -43,10 +43,6 @@
#include <cdio/util.h> #include <cdio/util.h>
#include <libvcd/info.h> #include <libvcd/info.h>
#ifdef WIN32
#define sleep(A) Sleep((A)*1000)
#endif
extern void VCDSetOrigin ( access_t *p_access, lsn_t i_lsn, track_t i_track, extern void VCDSetOrigin ( access_t *p_access, lsn_t i_lsn, track_t i_track,
const vcdinfo_itemid_t * p_itemid ); const vcdinfo_itemid_t * p_itemid );
...@@ -550,7 +546,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time ) ...@@ -550,7 +546,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time )
return READ_BLOCK; return READ_BLOCK;
} else if (p_vcdplayer->i_still) { } else if (p_vcdplayer->i_still) {
/* Hack: Just go back and do still again */ /* Hack: Just go back and do still again */
sleep(1); msleep(1000);
return READ_STILL_FRAME; return READ_STILL_FRAME;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment