diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
commit | 6c684df061a3c09da94834c2d9008eb90811b242 (patch) | |
tree | c34ae59f2fcbeb19d86c170e569ba645921bc5d7 /src/xine-engine/audio_out.c | |
parent | 92647a9d5a2e49de058a1169b465685ac9d9bdcb (diff) | |
download | xine-lib-nopadding_no_abi_change.tar.gz xine-lib-nopadding_no_abi_change.tar.bz2 |
Reorder and pack the structures that are defined inside compilation units instead of headers (and thus are not part of public ABI).nopadding_no_abi_change
Diffstat (limited to 'src/xine-engine/audio_out.c')
-rw-r--r-- | src/xine-engine/audio_out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index cd87c2947..89fbdde1a 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -281,11 +281,12 @@ typedef struct { struct audio_fifo_s { audio_buffer_t *first; audio_buffer_t *last; - int num_buffers; pthread_mutex_t mutex; pthread_cond_t not_empty; pthread_cond_t empty; + + int num_buffers; }; |