comparison libmpdemux/test.c @ 7862:013c255225d8

mpdemux.c|h moved to libinput, mpdemux_check_interrupt() -> mp_input_check_interrupt()
author arpi
date Wed, 23 Oct 2002 14:46:20 +0000
parents 72671e2510fd
children 3dc0b71630ff
comparison
equal deleted inserted replaced
7861:210bf936571f 7862:013c255225d8
15 // audio stream skip/resync functions requires only for seeking. 15 // audio stream skip/resync functions requires only for seeking.
16 // (they should be implemented in the audio codec layer) 16 // (they should be implemented in the audio codec layer)
17 void skip_audio_frame(sh_audio_t *sh_audio){ 17 void skip_audio_frame(sh_audio_t *sh_audio){
18 } 18 }
19 void resync_audio_stream(sh_audio_t *sh_audio){ 19 void resync_audio_stream(sh_audio_t *sh_audio){
20 }
21
22 int mp_input_check_interrupt(int time){
23 if(time) usec_sleep(time);
24 return 0;
20 } 25 }
21 26
22 // for libmpdvdkit2: 27 // for libmpdvdkit2:
23 #include "../get_path.c" 28 #include "../get_path.c"
24 29