]> 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 8babf053c80f49cdf0df3c4abb27f03d50c1f709..600a2555166295a77f4182f9c8c9acad61a36655 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.10 2001/10/30 19:34:53 reno 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
 /*****************************************************************************
  * ac3dec_thread_t : ac3 decoder thread descriptor
  *****************************************************************************/
+
 typedef struct ac3dec_thread_s
 {
+    /*
+     * Decoder properties
+     */
+    ac3dec_t *          ac3_decoder;
+    
     /*
      * Thread properties
      */
@@ -36,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 */
+    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;