summaryrefslogtreecommitdiffstats
path: root/libaf/af.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-01 06:52:19 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-01 06:52:19 +0000
commit1844e1dd0c15c18ea4781475fd1f1d62c0098ebc (patch)
treec2e851fccc75aa0bac60aefba6d9bb36f727a95b /libaf/af.c
parenta6d6f182167dbb2fe16ef12faf36a6668eaaa9af (diff)
downloadmpv-1844e1dd0c15c18ea4781475fd1f1d62c0098ebc.tar.bz2
mpv-1844e1dd0c15c18ea4781475fd1f1d62c0098ebc.tar.xz
Change decode_audio() interface
Rewrite decode_audio to better deal with filters that handle input in large blocks. It now always places output in sh_audio->a_out_buffer (which was always given as a parameter before) and reallocates the buffer if needed. After the changes filters can return arbitrarily large blocks of data without some of it being lost. The new version also allows simplifying some code. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24920 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/af.c')
-rw-r--r--libaf/af.c23
1 files changed, 3 insertions, 20 deletions
diff --git a/libaf/af.c b/libaf/af.c
index 5eda4ff5b1..b86bfe3d14 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -526,19 +526,9 @@ int af_lencalc(double mul, af_data_t* d)
return d->len * mul + t + 1;
}
-/* Calculate how long the input IN to the filters should be to produce
- a certain output length OUT but with the following three constraints:
- 1. IN <= max_insize, where max_insize is the maximum possible input
- block length
- 2. OUT <= max_outsize, where max_outsize is the maximum possible
- output block length
- 3. If possible OUT >= len.
- Return -1 in case of error */
-int af_calc_insize_constrained(af_stream_t* s, int len,
- int max_outsize,int max_insize)
+// Calculate average ratio of filter output size to input size
+double af_calc_filter_multiplier(af_stream_t* s)
{
- int t = s->input.bps*s->input.nch;
- int in = 0;
af_instance_t* af=s->first;
double mul = 1;
// Iterate through all filters and calculate total multiplication factor
@@ -547,14 +537,7 @@ int af_calc_insize_constrained(af_stream_t* s, int len,
af=af->next;
}while(af);
- if (len > max_outsize)
- len = max_outsize;
-
- in = len / t / mul * t;
-
- if(in>max_insize) in=t*(max_insize/t);
-
- return in;
+ return mul;
}
/* Calculate the total delay [ms] caused by the filters */