]> git.sesse.net Git - vlc/blobdiff - src/audio_output/mixer.c
Don't error out if --disable-avcodec was specified but not --disable-libva
[vlc] / src / audio_output / mixer.c
index 424f42ce283c67a8c66e4eb6e7fda52947a57aa0..8935288391135d107bdeaed81bec9e0b40de8873 100644 (file)
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
-#include <assert.h>
 
 #include <stddef.h>
+#include <math.h>
+
 #include <vlc_common.h>
 #include <libvlc.h>
 #include <vlc_modules.h>
-
 #include <vlc_aout.h>
+#include <vlc_aout_mixer.h>
 #include "aout_internal.h"
-/*****************************************************************************
- * aout_MixerNew: prepare a mixer plug-in
- *****************************************************************************
- * Please note that you must hold the mixer lock.
- *****************************************************************************/
-int aout_MixerNew( aout_instance_t * p_aout )
-{
-    assert( !p_aout->p_mixer );
-    vlc_assert_locked( &p_aout->input_fifos_lock );
-
-    aout_mixer_t *p_mixer = vlc_object_create( p_aout, sizeof(*p_mixer) );
-    if( !p_mixer )
-        return VLC_EGENERIC;
-
-    p_mixer->fmt = p_aout->mixer_format;
-    p_mixer->input = &p_aout->p_input->mixer;
-    p_mixer->mix = NULL;
-    p_mixer->sys = NULL;
 
-    p_mixer->module = module_need( p_mixer, "audio mixer", NULL, false );
-    if( !p_mixer->module )
+#undef aout_MixerNew
+/**
+ * Creates a software amplifier.
+ */
+audio_mixer_t *aout_MixerNew(vlc_object_t *obj, vlc_fourcc_t format)
+{
+    audio_mixer_t *mixer = vlc_custom_create(obj, sizeof (*mixer), "mixer");
+    if (unlikely(mixer == NULL))
+        return NULL;
+
+    mixer->format = format;
+    mixer->mix = NULL;
+    mixer->module = module_need(mixer, "audio mixer", NULL, false);
+    if (mixer->module == NULL)
     {
-        msg_Err( p_mixer, "no suitable audio mixer" );
-        vlc_object_release( p_mixer );
-        return VLC_EGENERIC;
+        vlc_object_release(mixer);
+        mixer = NULL;
     }
-
-    /* */
-    p_aout->p_mixer = p_mixer;
-    return VLC_SUCCESS;
+    return mixer;
 }
 
-/*****************************************************************************
- * aout_MixerDelete: delete the mixer
- *****************************************************************************
- * Please note that you must hold the mixer lock.
- *****************************************************************************/
-void aout_MixerDelete( aout_instance_t * p_aout )
+/**
+ * Destroys a software amplifier.
+ */
+void aout_MixerDelete(audio_mixer_t *mixer)
 {
-    if( !p_aout->p_mixer )
+    if (mixer == NULL)
         return;
 
-    module_unneed( p_aout->p_mixer, p_aout->p_mixer->module );
-
-    vlc_object_release( p_aout->p_mixer );
-
-    /* */
-    p_aout->p_mixer = NULL;
+    module_unneed(mixer, mixer->module);
+    vlc_object_release(mixer);
 }
 
-/*****************************************************************************
- * MixBuffer: try to prepare one output buffer
- *****************************************************************************
- * Please note that you must hold the mixer lock.
- *****************************************************************************/
-static int MixBuffer( aout_instance_t * p_aout, float volume )
+/**
+ * Applies replay gain and software volume to an audio buffer.
+ */
+void aout_MixerRun(audio_mixer_t *mixer, block_t *block, float amp)
 {
-    aout_mixer_t *p_mixer = p_aout->p_mixer;
-    aout_mixer_input_t *p_input = p_mixer->input;
-    aout_fifo_t *p_fifo = &p_input->fifo;
-    mtime_t now = mdate();
-    const unsigned samples = p_aout->output.i_nb_samples;
-
-    aout_lock_input_fifos( p_aout );
-    aout_lock_output_fifo( p_aout );
-
-    /* Retrieve the date of the next buffer. */
-    date_t exact_start_date = p_aout->output.fifo.end_date;
-    mtime_t start_date = date_Get( &exact_start_date );
-
-    if( start_date != 0 && start_date < now )
-    {
-        /* The output is _very_ late. This can only happen if the user
-         * pauses the stream (or if the decoder is buggy, which cannot
-         * happen :). */
-        msg_Warn( p_mixer, "output PTS is out of range (%"PRId64"), clearing out",
-                  mdate() - start_date );
-        aout_FifoSet( &p_aout->output.fifo, 0 );
-        date_Set( &exact_start_date, 0 );
-        start_date = 0;
-    }
-
-    aout_unlock_output_fifo( p_aout );
-
-    /* See if we have enough data to prepare a new buffer for the audio output. */
-    aout_buffer_t *p_buffer = p_fifo->p_first;
-    if( p_buffer == NULL )
-        goto giveup;
-
-    /* Find the earliest start date available. */
-    if ( !start_date )
-    {
-        start_date = p_buffer->i_pts;
-        date_Set( &exact_start_date, start_date );
-    }
-    /* Compute the end date for the new buffer. */
-    mtime_t end_date = date_Increment( &exact_start_date, samples );
-
-    /* Check that start_date is available. */
-    mtime_t prev_date;
-    for( ;; )
-    {
-        /* Check for the continuity of start_date */
-        prev_date = p_buffer->i_pts + p_buffer->i_length;
-        if( prev_date >= start_date - 1 )
-            break;
-        /* We authorize a +-1 because rounding errors get compensated
-         * regularly. */
-        msg_Warn( p_mixer, "the mixer got a packet in the past (%"PRId64")",
-                  start_date - prev_date );
-        aout_BufferFree( aout_FifoPop( p_fifo ) );
-
-        p_buffer = p_fifo->p_first;
-        if( p_buffer == NULL )
-            goto giveup;
-    }
-
-    /* Check that we have enough samples. */
-    while( prev_date < end_date )
-    {
-        p_buffer = p_buffer->p_next;
-        if( p_buffer == NULL )
-            goto giveup;
+    mixer->mix(mixer, block, amp);
+}
 
-        /* Check that all buffers are contiguous. */
-        if( prev_date != p_buffer->i_pts )
+/*** Replay gain ***/
+float (aout_ReplayGainSelect)(vlc_object_t *obj, const char *str,
+                              const audio_replay_gain_t *replay_gain)
+{
+    float gain = 0.;
+    unsigned mode = AUDIO_REPLAY_GAIN_MAX;
+
+    if (likely(str != NULL))
+    {   /* Find selectrf mode */
+        if (!strcmp (str, "track"))
+            mode = AUDIO_REPLAY_GAIN_TRACK;
+        else
+        if (!strcmp (str, "album"))
+            mode = AUDIO_REPLAY_GAIN_ALBUM;
+
+        /* If the selectrf mode is not available, prefer the other one */
+        if (mode != AUDIO_REPLAY_GAIN_MAX && !replay_gain->pb_gain[mode])
         {
-            msg_Warn( p_mixer,
-                      "buffer hole, dropping packets (%"PRId64")",
-                      p_buffer->i_pts - prev_date );
-
-            aout_buffer_t *p_deleted;
-            while( (p_deleted = p_fifo->p_first) != p_buffer )
-                aout_BufferFree( aout_FifoPop( p_fifo ) );
+            if (replay_gain->pb_gain[!mode])
+                mode = !mode;
         }
-
-        prev_date = p_buffer->i_pts + p_buffer->i_length;
     }
 
-    if( !AOUT_FMT_NON_LINEAR( &p_mixer->fmt ) )
-    {
-        p_buffer = p_fifo->p_first;
-
-        /* Additionally check that p_first_byte_to_mix is well located. */
-        const unsigned framesize = p_mixer->fmt.i_bytes_per_frame;
-        ssize_t delta = (start_date - p_buffer->i_pts)
-                      * p_mixer->fmt.i_rate / CLOCK_FREQ;
-        if( delta != 0 )
-            msg_Warn( p_mixer, "mixer start is not output end (%zd)", delta );
-        if( delta < 0 )
-        {
-            /* Is it really the best way to do it ? */
-            aout_lock_output_fifo( p_aout );
-            aout_FifoSet( &p_aout->output.fifo, 0 );
-            date_Set( &exact_start_date, 0 );
-            aout_unlock_output_fifo( p_aout );
-            goto giveup;
-        }
-        if( delta > 0 )
-        {
-            p_buffer->i_nb_samples -= delta;
-            p_buffer->i_pts += delta * CLOCK_FREQ / p_mixer->fmt.i_rate;
-            p_buffer->i_length -= delta * CLOCK_FREQ / p_mixer->fmt.i_rate;
-            delta *= framesize;
-            p_buffer->p_buffer += delta;
-            p_buffer->i_buffer -= delta;
-        }
-
-        /* Build packet with adequate number of samples */
-        unsigned needed = samples * framesize;
-        p_buffer = block_Alloc( needed );
-        if( unlikely(p_buffer == NULL) )
-            /* XXX: should free input buffers */
-            goto giveup;
-        p_buffer->i_nb_samples = samples;
-
-        for( uint8_t *p_out = p_buffer->p_buffer; needed > 0; )
-        {
-            aout_buffer_t *p_inbuf = p_fifo->p_first;
-            if( unlikely(p_inbuf == NULL) )
-            {
-                msg_Err( p_mixer, "internal amix error" );
-                vlc_memset( p_out, 0, needed );
-                break;
-            }
-
-            const uint8_t *p_in = p_inbuf->p_buffer;
-            size_t avail = p_inbuf->i_nb_samples * framesize;
-            if( avail > needed )
-            {
-                vlc_memcpy( p_out, p_in, needed );
-                p_fifo->p_first->p_buffer += needed;
-                p_fifo->p_first->i_buffer -= needed;
-                needed /= framesize;
-                p_fifo->p_first->i_nb_samples -= needed;
-                p_fifo->p_first->i_pts += needed * CLOCK_FREQ / p_mixer->fmt.i_rate;
-                p_fifo->p_first->i_length -= needed * CLOCK_FREQ / p_mixer->fmt.i_rate;
-                break;
-            }
+    /* */
+    if (mode == AUDIO_REPLAY_GAIN_MAX)
+        return 1.;
 
-            vlc_memcpy( p_out, p_in, avail );
-            needed -= avail;
-            p_out += avail;
-            /* Next buffer */
-            aout_BufferFree( aout_FifoPop( p_fifo ) );
-        }
-    }
+    if (replay_gain->pb_gain[mode])
+        gain = replay_gain->pf_gain[mode]
+             + var_InheritFloat (obj, "audio-replay-gain-preamp");
     else
-        p_buffer = aout_FifoPop( p_fifo );
-
-    p_buffer->i_pts = start_date;
-    p_buffer->i_length = end_date - start_date;
+        gain = var_InheritFloat (obj, "audio-replay-gain-default");
 
-    /* Run the mixer. */
-    p_mixer->mix( p_mixer, p_buffer, volume );
-    aout_unlock_input_fifos( p_aout );
-    aout_OutputPlay( p_aout, p_buffer );
-    return 0;
+    float multiplier = pow (10., gain / 20.);
 
-giveup:
-    /* Interrupted before the end... We can't run. */
-    aout_unlock_input_fifos( p_aout );
-    return -1;
-}
+    if (replay_gain->pb_peak[mode]
+     && var_InheritBool (obj, "audio-replay-gain-peak-protection")
+     && replay_gain->pf_peak[mode] * multiplier > 1.0)
+        multiplier = 1.0f / replay_gain->pf_peak[mode];
 
-/*****************************************************************************
- * aout_MixerRun: entry point for the mixer & post-filters processing
- *****************************************************************************
- * Please note that you must hold the mixer lock.
- *****************************************************************************/
-void aout_MixerRun( aout_instance_t * p_aout, float volume )
-{
-    while( MixBuffer( p_aout, volume ) != -1 );
+    return multiplier;
 }