diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-11-10 18:41:45 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-11-10 18:41:45 +0000 |
commit | 4986a429298cf17ac64a832b1aa9e6889e3aa06a (patch) | |
tree | 734ad95a649ec573b68e6d7946e2568f4e95e639 /libavformat/au.c | |
parent | ccd39ae6ead81572317b15b3e985ec5e8edbc0b2 (diff) | |
download | ffmpeg-4986a429298cf17ac64a832b1aa9e6889e3aa06a.tar.gz |
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.c | 3 |
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 |