summaryrefslogtreecommitdiff
path: root/libavformat/amr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-10 23:57:44 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-10 23:57:44 +0000
commitab2c12ec90e5c166c7b1c185c1672ab921dd5604 (patch)
tree50c9c95ce6efa9b0f90db320610790b2e4930468 /libavformat/amr.c
parentb49638928ba26012fb71736dc2878ce485212cb1 (diff)
remove dummy amr_read_close()
Originally committed as revision 6637 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/amr.c')
-rw-r--r--libavformat/amr.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/amr.c b/libavformat/amr.c
index f271750fdf..e7ae050a97 100644
--- a/libavformat/amr.c
+++ b/libavformat/amr.c
@@ -175,11 +175,6 @@ static int amr_read_packet(AVFormatContext *s,
return 0;
}
-static int amr_read_close(AVFormatContext *s)
-{
- return 0;
-}
-
#ifdef CONFIG_AMR_DEMUXER
AVInputFormat amr_demuxer = {
"amr",
@@ -188,7 +183,7 @@ AVInputFormat amr_demuxer = {
amr_probe,
amr_read_header,
amr_read_packet,
- amr_read_close,
+ NULL,
};
#endif