]> git.sesse.net Git - vlc/blobdiff - src/ac3_decoder/ac3_decoder_thread.h
* Mandatory step for video output IV and the audio output quality
[vlc] / src / ac3_decoder / ac3_decoder_thread.h
index 8babf053c80f49cdf0df3c4abb27f03d50c1f709..ae513746264b6404c22fad72cbfec80d559b0573 100644 (file)
@@ -2,10 +2,9 @@
  * ac3_decoder_thread.h : ac3 decoder thread interface
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: ac3_decoder_thread.h,v 1.2 2000/12/21 13:25:50 massiot Exp $
+ * $Id: ac3_decoder_thread.h,v 1.6 2001/05/01 04:18:18 sam Exp $
  *
- * Authors:
- * Michel Kaempf <maxx@via.ecp.fr>
+ * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -31,26 +30,26 @@ typedef struct ac3dec_thread_s
      * Thread properties
      */
     vlc_thread_t        thread_id;                /* id for thread functions */
+//    bit_stream_t        bit_stream;
+        
 
     /*
      * Input properties
      */
     decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
-    data_packet_t *     p_data;
-    int                sync_ptr;          /* sync ptr from ac3 magic header */
+//    data_packet_t *     p_data;
+    int                 sync_ptr;          /* sync ptr from ac3 magic header */
     adec_config_t *     p_config;
 
     /*
      * Decoder properties
      */
-
     ac3dec_t            ac3_decoder;
 
     /*
      * Output properties
      */
     aout_fifo_t *       p_aout_fifo; /* stores the decompressed audio frames */
-    aout_thread_t *     p_aout;           /* needed to create the audio fifo */
 
 } ac3dec_thread_t;