Drop pointless _s suffix from 'struct af_stream'.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31238 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-05-27 20:59:40 +00:00
parent 5e71e43bb5
commit 5796e96b36
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ typedef struct af_cfg_s{
}af_cfg_t;
// Current audio stream
typedef struct af_stream_s
typedef struct af_stream
{
// The first and last filter in the list
af_instance_t* first;

View File

@ -72,7 +72,7 @@ typedef struct sh_audio {
int a_out_buffer_len;
int a_out_buffer_size;
// void* audio_out; // the audio_out handle, used for this audio stream
struct af_stream_s *afilter; // the audio filter stream
struct af_stream *afilter; // the audio filter stream
struct ad_functions *ad_driver;
#ifdef CONFIG_DYNAMIC_PLUGINS
void *dec_handle;