diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-06-26 18:47:13 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-06-26 18:47:13 +0000 |
commit | 91e4394b5c028695069e0ccda6b2095aa564480e (patch) | |
tree | ee5bac408361939fa41b31ef441b6de60e33d70e | |
parent | f4ec3960db773aabade17100445c0dfd25d0173d (diff) | |
download | xine-lib-91e4394b5c028695069e0ccda6b2095aa564480e.tar.gz xine-lib-91e4394b5c028695069e0ccda6b2095aa564480e.tar.bz2 |
last_audio_vpts stuff added to sun audio driver
CVS patchset: 234
CVS date: 2001/06/26 18:47:13
-rw-r--r-- | src/audio_out/audio_sun_out.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/audio_out/audio_sun_out.c b/src/audio_out/audio_sun_out.c index b52a4d7af..3a37356c8 100644 --- a/src/audio_out/audio_sun_out.c +++ b/src/audio_out/audio_sun_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_sun_out.c,v 1.3 2001/06/23 19:45:47 guenter Exp $ + * $Id: audio_sun_out.c,v 1.4 2001/06/26 18:47:13 jkeil Exp $ */ #ifdef HAVE_CONFIG_H @@ -79,7 +79,7 @@ typedef struct sun_functions_s { int16_t *zero_space; int audio_started; - + uint32_t last_audio_vpts; } sun_functions_t; /* @@ -110,6 +110,7 @@ static int ao_open(ao_functions_t *this_gen, this->input_sample_rate = rate; this->bytes_in_buffer = 0; this->audio_started = 0; + this->last_audio_vpts = 0; /* * open audio device @@ -201,7 +202,7 @@ static int ao_write_audio_data(ao_functions_t *this_gen, audio_info_t info; if (this->audio_fd<0) - return; + return 1; vpts = this->metronom->got_audio_samples (this->metronom, pts_, num_samples); @@ -211,6 +212,8 @@ static int ao_write_audio_data(ao_functions_t *this_gen, return 1; } + this->last_audio_vpts = vpts; + xprintf (VERBOSE|AUDIO, "audio_sun_out: got %d samples, vpts=%d\n", num_samples, vpts); |