]> git.sesse.net Git - vlc/blobdiff - modules/codec/lpcm.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / codec / lpcm.c
index 1478e99ed16068efcfebef78ef5e6029d9c0b234..42beb4a819ed93b768ddfe285dca0cfed673068e 100644 (file)
@@ -1,18 +1,19 @@
 /*****************************************************************************
- * lpcm.c: lpcm decoder module
+ * lpcm.c: lpcm decoder/packetizer module
  *****************************************************************************
- * Copyright (C) 1999-2001 VideoLAN
- * $Id: lpcm.c,v 1.14 2003/03/18 01:22:13 sam Exp $
+ * Copyright (C) 1999-2005 the VideoLAN team
+ * $Id$
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *          Henri Fallon <henri@videolan.org>
  *          Christophe Massiot <massiot@via.ecp.fr>
+ *          Gildas Bazin <gbazin@videolan.org>
  *
  * 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
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <string.h>                                    /* memcpy(), memset() */
-
 #include <vlc/vlc.h>
-#include <vlc/aout.h>
-#include <vlc/decoder.h>
-#include <input_ext-dec.h>
-
-#ifdef HAVE_UNISTD_H
-#   include <unistd.h>                                           /* getpid() */
-#endif
+#include <vlc_codec.h>
+#include <vlc_aout.h>
 
 /*****************************************************************************
- * dec_thread_t : lpcm decoder thread descriptor
+ * decoder_sys_t : lpcm decoder descriptor
  *****************************************************************************/
-typedef struct dec_thread_t
+struct decoder_sys_t
 {
-    /*
-     * Input properties
-     */
-    decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
+    /* Module mode */
+    vlc_bool_t b_packetizer;
 
     /*
      * Output properties
      */
-    aout_instance_t        *p_aout;
-    aout_input_t           *p_aout_input;
-    audio_sample_format_t   output_format;
-    audio_date_t            end_date;
-} dec_thread_t;
+    audio_date_t end_date;
+
+};
 
 /*
  * LPCM header :
  * - PES header
  * - private stream ID (16 bits) == 0xA0 -> not in the bitstream
+ *
  * - frame number (8 bits)
  * - unknown (16 bits) == 0x0003 ?
  * - unknown (4 bits)
@@ -77,19 +67,28 @@ typedef struct dec_thread_t
 /*****************************************************************************
  * Local prototypes
  *****************************************************************************/
-static int  OpenDecoder    ( vlc_object_t * );
-static int  RunDecoder     ( decoder_fifo_t * );
+static int  OpenDecoder   ( vlc_object_t * );
+static int  OpenPacketizer( vlc_object_t * );
+static void CloseDecoder  ( vlc_object_t * );
 
-static void DecodeFrame    ( dec_thread_t * );
-static void EndThread      ( dec_thread_t * );
+static void *DecodeFrame  ( decoder_t *, block_t ** );
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-    set_description( _("linear PCM audio parser") );
+
+    set_category( CAT_INPUT );
+    set_subcategory( SUBCAT_INPUT_ACODEC );
+    set_description( _("Linear PCM audio decoder") );
     set_capability( "decoder", 100 );
-    set_callbacks( OpenDecoder, NULL );
+    set_callbacks( OpenDecoder, CloseDecoder );
+
+    add_submodule();
+    set_description( _("Linear PCM audio packetizer") );
+    set_capability( "packetizer", 100 );
+    set_callbacks( OpenPacketizer, CloseDecoder );
+
 vlc_module_end();
 
 /*****************************************************************************
@@ -97,118 +96,104 @@ vlc_module_end();
  *****************************************************************************/
 static int OpenDecoder( vlc_object_t *p_this )
 {
-    decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
+    decoder_t *p_dec = (decoder_t*)p_this;
+    decoder_sys_t *p_sys;
 
-    if( p_fifo->i_fourcc != VLC_FOURCC('l','p','c','m')
-         && p_fifo->i_fourcc != VLC_FOURCC('l','p','c','b') )
-    {   
+    if( p_dec->fmt_in.i_codec != VLC_FOURCC('l','p','c','m')
+         && p_dec->fmt_in.i_codec != VLC_FOURCC('l','p','c','b') )
+    {
         return VLC_EGENERIC;
     }
-    
-    p_fifo->pf_run = RunDecoder;
-    return VLC_SUCCESS;
-}
-
-/*****************************************************************************
- * RunDecoder: the lpcm decoder
- *****************************************************************************/
-static int RunDecoder( decoder_fifo_t * p_fifo )
-{
-    dec_thread_t *   p_dec;
 
-    /* Allocate the memory needed to store the thread's structure */
-    if( (p_dec = (dec_thread_t *)malloc( sizeof(dec_thread_t)) )
-            == NULL) 
+    /* Allocate the memory needed to store the decoder's structure */
+    if( ( p_dec->p_sys = p_sys =
+          (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
     {
-        msg_Err( p_fifo, "out of memory" );
-        DecoderError( p_fifo );
-        return -1;
+        msg_Err( p_dec, "out of memory" );
+        return VLC_EGENERIC;
     }
 
-    /* Initialize the thread properties */
-    p_dec->p_fifo = p_fifo;
+    /* Misc init */
+    p_sys->b_packetizer = VLC_FALSE;
+    aout_DateSet( &p_sys->end_date, 0 );
 
-    p_dec->output_format.i_format = VLC_FOURCC('s','1','6','b');
-    p_dec->p_aout = NULL;
-    p_dec->p_aout_input = NULL;
+    /* Set output properties */
+    p_dec->fmt_out.i_cat = AUDIO_ES;
 
-    /* LPCM decoder thread's main loop */
-    while ( (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error) )
+    if( p_dec->fmt_out.audio.i_bitspersample == 24 )
     {
-        DecodeFrame(p_dec);
+        p_dec->fmt_out.i_codec = VLC_FOURCC('s','2','4','b');
     }
-
-    /* If b_error is set, the lpcm decoder thread enters the error loop */
-    if ( p_dec->p_fifo->b_error )
+    else
     {
-        DecoderError( p_dec->p_fifo );
+        p_dec->fmt_out.i_codec = VLC_FOURCC('s','1','6','b');
+        p_dec->fmt_out.audio.i_bitspersample = 16;
     }
 
-    /* End of the lpcm decoder thread */
-    EndThread( p_dec );
+    /* Set callback */
+    p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
+        DecodeFrame;
+    p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
+        DecodeFrame;
 
-    return 0;
+    return VLC_SUCCESS;
+}
+
+static int OpenPacketizer( vlc_object_t *p_this )
+{
+    decoder_t *p_dec = (decoder_t*)p_this;
+
+    int i_ret = OpenDecoder( p_this );
+
+    if( i_ret != VLC_SUCCESS ) return i_ret;
+
+    p_dec->p_sys->b_packetizer = VLC_TRUE;
+
+    p_dec->fmt_out.i_codec = VLC_FOURCC('l','p','c','m');
+
+    return i_ret;
 }
 
 /*****************************************************************************
- * DecodeFrame: decodes a frame.
+ * DecodeFrame: decodes an lpcm frame.
+ ****************************************************************************
+ * Beware, this function must be fed with complete frames (PES packet).
  *****************************************************************************/
-static void DecodeFrame( dec_thread_t * p_dec )
+static void *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
 {
-    pes_packet_t *     p_pes;
-    data_packet_t *    p_data;
-    aout_buffer_t *    p_buffer;
-    void *             p_dest;
-    mtime_t            i_pts;
-    uint8_t            i_header;
-    unsigned int       i_rate = 0, i_original_channels = 0, i_size;
-    int                i;
-
-    input_ExtractPES( p_dec->p_fifo, &p_pes );
-    if ( !p_pes )
-    {
-        p_dec->p_fifo->b_error = 1;
-        return;
-    }
+    decoder_sys_t *p_sys = p_dec->p_sys;
+    block_t       *p_block;
+    unsigned int  i_rate = 0, i_original_channels = 0, i_channels = 0;
+    int           i_frame_length, i_bitspersample;
+    uint8_t       i_header;
 
-    /* Compute the size of the PES - i_pes_size includes the PES header. */
-    p_data = p_pes->p_first;
-    i_size = 0;
-    while ( p_data != NULL )
-    {
-        i_size += p_data->p_payload_end - p_data->p_payload_start;
-        p_data = p_data->p_next;
-    }
-    if ( i_size < LPCM_HEADER_LEN )
+    if( !pp_block || !*pp_block ) return NULL;
+
+    p_block = *pp_block;
+    *pp_block = NULL; /* So the packet doesn't get re-sent */
+
+    /* Date management */
+    if( p_block->i_pts > 0 &&
+        p_block->i_pts != aout_DateGet( &p_sys->end_date ) )
     {
-        msg_Err(p_dec->p_fifo, "PES packet is too short");
-        input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
-        return;
+        aout_DateSet( &p_sys->end_date, p_block->i_pts );
     }
 
-    i_pts = p_pes->i_pts;
-    if( i_pts != 0 && i_pts != aout_DateGet( &p_dec->end_date ) )
+    if( !aout_DateGet( &p_sys->end_date ) )
     {
-        aout_DateSet( &p_dec->end_date, i_pts );
+        /* We've just started the stream, wait for the first PTS. */
+        block_Release( p_block );
+        return NULL;
     }
 
-    p_data = p_pes->p_first;
-    /* It necessarily contains one byte. */
-    /* Get LPCM header. */
-
-    /* Drop the first four bytes. */
-    for ( i = 0; i < 4; i++ )
+    if( p_block->i_buffer <= LPCM_HEADER_LEN )
     {
-        if ( p_data->p_payload_end == p_data->p_payload_start )
-        {
-            p_data = p_data->p_next;
-        }
-        p_data->p_payload_start++;
+        msg_Err(p_dec, "frame is too short");
+        block_Release( p_block );
+        return NULL;
     }
 
-    i_header = p_data->p_payload_start[0];
-    p_data->p_payload_start++;
-
+    i_header = p_block->p_buffer[4];
     switch ( (i_header >> 4) & 0x3 )
     {
     case 0:
@@ -225,7 +210,8 @@ static void DecodeFrame( dec_thread_t * p_dec )
         break;
     }
 
-    switch ( i_header & 0x7 )
+    i_channels = (i_header & 0x7);
+    switch ( i_channels )
     {
     case 0:
         i_original_channels = AOUT_CHAN_CENTER;
@@ -266,96 +252,146 @@ static void DecodeFrame( dec_thread_t * p_dec )
         break;
     }
 
-    /* Check frame sync and drop it. */
-    if ( p_data->p_payload_end == p_data->p_payload_start )
-    {
-        p_data = p_data->p_next;
-    }
-    if ( p_data->p_payload_start[0] != 0x80 )
+    switch ( (i_header >> 6) & 0x3 )
     {
-        msg_Warn(p_dec->p_fifo, "no frame sync");
-        input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
-        return;
+    case 2:
+        p_dec->fmt_out.i_codec = VLC_FOURCC('s','2','4','b');
+        p_dec->fmt_out.audio.i_bitspersample = 24;
+        i_bitspersample = 24;
+        break;
+    case 1:
+        p_dec->fmt_out.i_codec = VLC_FOURCC('s','2','4','b');
+        p_dec->fmt_out.audio.i_bitspersample = 24;
+        i_bitspersample = 20;
+        break;
+    case 0:
+    default:
+        p_dec->fmt_out.i_codec = VLC_FOURCC('s','1','6','b');
+        p_dec->fmt_out.audio.i_bitspersample = 16;
+        i_bitspersample = 16;
+        break;
     }
-    p_data->p_payload_start++;
 
-    if( (p_dec->p_aout_input != NULL) &&
-        ( (p_dec->output_format.i_rate != i_rate)
-            || (p_dec->output_format.i_original_channels
-                  != i_original_channels) ) )
+    /* Check frame sync and drop it. */
+    if( p_block->p_buffer[5] != 0x80 )
     {
-        /* Parameters changed - this should not happen. */
-        aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
-        p_dec->p_aout_input = NULL;
+        msg_Warn( p_dec, "no frame sync" );
+        block_Release( p_block );
+        return NULL;
     }
 
-    /* Creating the audio input if not created yet. */
-    if( p_dec->p_aout_input == NULL )
+    /* Set output properties */
+    if( p_dec->fmt_out.audio.i_rate != i_rate )
     {
-        p_dec->output_format.i_rate = i_rate;
-        p_dec->output_format.i_original_channels = i_original_channels;
-        p_dec->output_format.i_physical_channels
-                   = i_original_channels & AOUT_CHAN_PHYSMASK;
-        aout_DateInit( &p_dec->end_date, i_rate );
-        p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
-                                           &p_dec->p_aout,
-                                           &p_dec->output_format );
-
-        if ( p_dec->p_aout_input == NULL )
-        {
-            p_dec->p_fifo->b_error = 1;
-            input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
-            return;
-        }
+        aout_DateInit( &p_sys->end_date, i_rate );
+        aout_DateSet( &p_sys->end_date, p_block->i_pts );
     }
+    p_dec->fmt_out.audio.i_rate = i_rate;
+    p_dec->fmt_out.audio.i_channels = i_channels + 1;
+    p_dec->fmt_out.audio.i_original_channels = i_original_channels;
+    p_dec->fmt_out.audio.i_physical_channels
+        = i_original_channels & AOUT_CHAN_PHYSMASK;
 
-    if ( !aout_DateGet( &p_dec->end_date ) )
-    {
-        /* We've just started the stream, wait for the first PTS. */
-        input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
-        return;
-    }
+    i_frame_length = (p_block->i_buffer - LPCM_HEADER_LEN) /
+        p_dec->fmt_out.audio.i_channels * 8 / i_bitspersample;
 
-    p_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
-            (i_size - LPCM_HEADER_LEN)
-                / p_dec->output_format.i_bytes_per_frame );
-    
-    if( p_buffer == NULL )
+    if( p_sys->b_packetizer )
     {
-        msg_Err( p_dec->p_fifo, "cannot get aout buffer" );
-        p_dec->p_fifo->b_error = 1;
-        input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
-        return;
+        p_dec->fmt_out.i_codec = VLC_FOURCC('l','p','c','m');
+        p_block->i_pts = p_block->i_dts = aout_DateGet( &p_sys->end_date );
+        p_block->i_length =
+            aout_DateIncrement( &p_sys->end_date, i_frame_length ) -
+            p_block->i_pts;
+
+        /* Just pass on the incoming frame */
+        return p_block;
     }
-    p_buffer->start_date = aout_DateGet( &p_dec->end_date );
-    p_buffer->end_date = aout_DateIncrement( &p_dec->end_date,
-            (i_size - LPCM_HEADER_LEN)
-                / p_dec->output_format.i_bytes_per_frame );
-
-    /* Get the whole frame. */
-    p_dest = p_buffer->p_buffer;
-    while ( p_data != NULL )
+    else
     {
-        p_dec->p_fifo->p_vlc->pf_memcpy( p_dest, p_data->p_payload_start,
-                p_data->p_payload_end - p_data->p_payload_start );
-        p_dest += p_data->p_payload_end - p_data->p_payload_start;
-        p_data = p_data->p_next;
-    }
-    input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_pes );
+        aout_buffer_t *p_aout_buffer;
+        p_aout_buffer = p_dec->pf_aout_buffer_new( p_dec, i_frame_length );
+        if( p_aout_buffer == NULL ) return NULL;
+
+        p_aout_buffer->start_date = aout_DateGet( &p_sys->end_date );
+        p_aout_buffer->end_date =
+            aout_DateIncrement( &p_sys->end_date, i_frame_length );
 
-    /* Send the buffer to the aout core. */
-    aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_buffer );
+        p_block->p_buffer += LPCM_HEADER_LEN;
+        p_block->i_buffer -= LPCM_HEADER_LEN;
+
+        /* 20/24 bits LPCM use special packing */
+        if( i_bitspersample == 24 )
+        {
+            uint8_t *p_out = p_aout_buffer->p_buffer;
+
+            while( p_block->i_buffer / 12 )
+            {
+                /* Sample 1 */
+                p_out[0] = p_block->p_buffer[0];
+                p_out[1] = p_block->p_buffer[1];
+                p_out[2] = p_block->p_buffer[8];
+                /* Sample 2 */
+                p_out[3] = p_block->p_buffer[2];
+                p_out[4] = p_block->p_buffer[3];
+                p_out[5] = p_block->p_buffer[9];
+                /* Sample 3 */
+                p_out[6] = p_block->p_buffer[4];
+                p_out[7] = p_block->p_buffer[5];
+                p_out[8] = p_block->p_buffer[10];
+                /* Sample 4 */
+                p_out[9] = p_block->p_buffer[6];
+                p_out[10] = p_block->p_buffer[7];
+                p_out[11] = p_block->p_buffer[11];
+
+                p_block->i_buffer -= 12;
+                p_block->p_buffer += 12;
+                p_out += 12;
+            }
+        }
+        else if( i_bitspersample == 20 )
+        {
+            uint8_t *p_out = p_aout_buffer->p_buffer;
+
+            while( p_block->i_buffer / 10 )
+            {
+                /* Sample 1 */
+                p_out[0] = p_block->p_buffer[0];
+                p_out[1] = p_block->p_buffer[1];
+                p_out[2] = p_block->p_buffer[8] & 0xF0;
+                /* Sample 2 */
+                p_out[3] = p_block->p_buffer[2];
+                p_out[4] = p_block->p_buffer[3];
+                p_out[5] = p_block->p_buffer[8] << 4;
+                /* Sample 3 */
+                p_out[6] = p_block->p_buffer[4];
+                p_out[7] = p_block->p_buffer[5];
+                p_out[8] = p_block->p_buffer[9] & 0xF0;
+                /* Sample 4 */
+                p_out[9] = p_block->p_buffer[6];
+                p_out[10] = p_block->p_buffer[7];
+                p_out[11] = p_block->p_buffer[9] << 4;
+
+                p_block->i_buffer -= 10;
+                p_block->p_buffer += 10;
+                p_out += 12;
+            }
+        }
+        else
+        {
+            memcpy( p_aout_buffer->p_buffer,
+                    p_block->p_buffer, p_block->i_buffer );
+        }
+
+        block_Release( p_block );
+        return p_aout_buffer;
+    }
 }
 
 /*****************************************************************************
- * EndThread : lpcm decoder thread destruction
+ * CloseDecoder : lpcm decoder destruction
  *****************************************************************************/
-static void EndThread( dec_thread_t * p_dec )
+static void CloseDecoder( vlc_object_t *p_this )
 {
-    if( p_dec->p_aout_input != NULL )
-    {
-        aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
-    }
-
-    free( p_dec );
+    decoder_t *p_dec = (decoder_t*)p_this;
+    free( p_dec->p_sys );
 }