summaryrefslogtreecommitdiffstats
path: root/libaf/af.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 21:27:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 21:27:27 +0000
commit0cddea37546e00caa3f438e0da6e21b931b8de48 (patch)
tree116519be254278e786e8102881c4506ee5eb5248 /libaf/af.c
parent35fc0ebf3fe200b54af142e99facfe8dc2942544 (diff)
downloadmpv-0cddea37546e00caa3f438e0da6e21b931b8de48.tar.bz2
mpv-0cddea37546e00caa3f438e0da6e21b931b8de48.tar.xz
Add statistics audio filter that prints information about the audio stream.
patch by Nicolas George, nicolas.george normalesup org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28696 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/af.c')
-rw-r--r--libaf/af.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libaf/af.c b/libaf/af.c
index 7333896882..77f30a4d45 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -51,6 +51,7 @@ extern af_info_t af_info_center;
extern af_info_t af_info_sinesuppress;
extern af_info_t af_info_karaoke;
extern af_info_t af_info_scaletempo;
+extern af_info_t af_info_stats;
static af_info_t* filter_list[]={
&af_info_dummy,
@@ -85,6 +86,7 @@ static af_info_t* filter_list[]={
&af_info_sinesuppress,
&af_info_karaoke,
&af_info_scaletempo,
+ &af_info_stats,
NULL
};