projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b496389
)
remove dummy amr_read_close()
author
Michael Niedermayer
<michaelni@gmx.at>
Tue, 10 Oct 2006 23:57:44 +0000
(23:57 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Tue, 10 Oct 2006 23:57:44 +0000
(23:57 +0000)
Originally committed as revision 6637 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/amr.c
patch
|
blob
|
history
diff --git
a/libavformat/amr.c
b/libavformat/amr.c
index f271750fdfd2cbd8511b3569c7834b73ba050aaa..e7ae050a976ec763e80303093f1bce7cad536873 100644
(file)
--- 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