diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 11:51:11 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-20 11:51:11 +0000 |
commit | 5bb1f3fca53809b2057a3212c3880af25028d955 (patch) | |
tree | 66573fb17185ec2f6e8950f2196863e3c535a31b /src | |
parent | 439907def64a3bdbc3fd6a73af623c6fb7a55497 (diff) | |
download | xine-lib-5bb1f3fca53809b2057a3212c3880af25028d955.tar.gz xine-lib-5bb1f3fca53809b2057a3212c3880af25028d955.tar.bz2 |
physical audio channel wasn't returned by get_audio_channel
CVS patchset: 838
CVS date: 2001/10/20 11:51:11
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 5862ce597..8b577fb77 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.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_decoder.c,v 1.48 2001/10/20 02:01:51 guenter Exp $ + * $Id: audio_decoder.c,v 1.49 2001/10/20 11:51:11 guenter Exp $ * * * functions that implement audio decoding @@ -301,11 +301,7 @@ void audio_decoder_shutdown (xine_t *this) { int xine_get_audio_channel (xine_t *this) { - printf ("audio type : %d\n", this->audio_type); - - return 0; - - /* return this->audio_type & 0xFFFF; */ + return this->audio_type & 0xFFFF; } void xine_select_audio_channel (xine_t *this, int channel) { |