summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_out.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-10-29 16:02:43 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-10-29 16:02:43 +0000
commit4f15163a94c863e3e0cf8a65f3ad6f88946f7670 (patch)
tree34d456a17444c13b8b8c520c274ab11c483b0c3e /src/xine-engine/audio_out.h
parent4d910814b52c53ac6af78f77e20ee5db7eab3211 (diff)
downloadxine-lib-4f15163a94c863e3e0cf8a65f3ad6f88946f7670.tar.gz
xine-lib-4f15163a94c863e3e0cf8a65f3ad6f88946f7670.tar.bz2
engine improvements
- output fifo flushing - more sophisticated discontinuity handling - seek improvement by waiting for at least one frame CVS patchset: 3089 CVS date: 2002/10/29 16:02:43
Diffstat (limited to 'src/xine-engine/audio_out.h')
-rw-r--r--src/xine-engine/audio_out.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/xine-engine/audio_out.h b/src/xine-engine/audio_out.h
index b22f1a7bc..5e1cedaa4 100644
--- a/src/xine-engine/audio_out.h
+++ b/src/xine-engine/audio_out.h
@@ -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_out.h,v 1.39 2002/10/24 17:51:30 guenter Exp $
+ * $Id: audio_out.h,v 1.40 2002/10/29 16:02:47 mroi Exp $
*/
#ifndef HAVE_AUDIO_OUT_H
#define HAVE_AUDIO_OUT_H
@@ -201,7 +201,11 @@ struct ao_instance_s {
*/
int (*control) (ao_instance_t *this, int cmd, /* arg */ ...);
-
+ /*
+ * Flush audio_out fifo.
+ */
+ void (*flush) (ao_instance_t *this);
+
/* private stuff */
xine_ao_driver_t *driver;
@@ -232,6 +236,8 @@ struct ao_instance_s {
int16_t *zero_space;
int64_t passthrough_offset;
+ int flush_audio_driver;
+ int allow_full_ao_fill_gap;
int do_compress;
double compression_factor; /* current compression */