]> git.sesse.net Git - vlc/blobdiff - src/ac3_decoder/ac3_decoder_thread.h
* Closing Debian bug #119369 which was fixed a while ago.
[vlc] / src / ac3_decoder / ac3_decoder_thread.h
index a14cf93a38c3aebe6f2d8a945f12bb2f69d7ead4..600a2555166295a77f4182f9c8c9acad61a36655 100644 (file)
@@ -2,7 +2,7 @@
  * ac3_decoder_thread.h : ac3 decoder thread interface
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: ac3_decoder_thread.h,v 1.4 2001/03/21 13:42:34 sam Exp $
+ * $Id: ac3_decoder_thread.h,v 1.10 2001/10/30 19:34:53 reno Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *
 /*****************************************************************************
  * ac3dec_thread_t : ac3 decoder thread descriptor
  *****************************************************************************/
+
 typedef struct ac3dec_thread_s
 {
+    /*
+     * Decoder properties
+     */
+    ac3dec_t *          ac3_decoder;
+    
     /*
      * Thread properties
      */
@@ -35,21 +41,13 @@ typedef struct ac3dec_thread_s
      * 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 */
     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;