Commit 3690c9e2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

aout: remove another write-only parameter

parent 7efec6d6
...@@ -52,9 +52,6 @@ struct aout_input_t ...@@ -52,9 +52,6 @@ struct aout_input_t
int i_resampling_type; int i_resampling_type;
int i_resamp_start_drift; int i_resamp_start_drift;
/* last rate from input */
int i_last_input_rate;
/* */ /* */
int i_buffer_lost; int i_buffer_lost;
}; };
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_input.h> #include <vlc_input.h>
#include <vlc_aout.h> #include <vlc_aout.h>
#include <vlc_filter.h>
#include <libvlc.h> #include <libvlc.h>
#include "aout_internal.h" #include "aout_internal.h"
...@@ -48,7 +47,6 @@ aout_input_t *aout_InputNew (void) ...@@ -48,7 +47,6 @@ aout_input_t *aout_InputNew (void)
aout_input_t *p_input = xmalloc (sizeof (*p_input)); aout_input_t *p_input = xmalloc (sizeof (*p_input));
p_input->i_resampling_type = AOUT_RESAMPLING_NONE; p_input->i_resampling_type = AOUT_RESAMPLING_NONE;
p_input->i_last_input_rate = INPUT_RATE_DEFAULT;
p_input->i_buffer_lost = 0; p_input->i_buffer_lost = 0;
return p_input; return p_input;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment