summaryrefslogtreecommitdiff
path: root/libavformat/au.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-11-10 18:41:45 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-11-10 18:41:45 +0000
commit4986a429298cf17ac64a832b1aa9e6889e3aa06a (patch)
tree734ad95a649ec573b68e6d7946e2568f4e95e639 /libavformat/au.c
parentccd39ae6ead81572317b15b3e985ec5e8edbc0b2 (diff)
seek support for PCM formats
Originally committed as revision 2497 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r--libavformat/au.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/au.c b/libavformat/au.c
index f2f0dbd144..c9837f7c76 100644
--- a/libavformat/au.c
+++ b/libavformat/au.c
@@ -114,7 +114,7 @@ static int au_probe(AVProbeData *p)
/* au input */
static int au_read_header(AVFormatContext *s,
- AVFormatParameters *ap)
+ AVFormatParameters *ap)
{
int size;
unsigned int tag;
@@ -187,6 +187,7 @@ static AVInputFormat au_iformat = {
au_read_header,
au_read_packet,
au_read_close,
+ pcm_read_seek,
};
#ifdef CONFIG_ENCODERS