Mercurial > libavformat.hg
changeset 1370:49421e5b5335 libavformat
remove dummy amr_read_close()
author | michael |
---|---|
date | Tue, 10 Oct 2006 23:57:44 +0000 |
parents | bf2c4889a9bf |
children | 6f00a1374023 |
files | amr.c |
diffstat | 1 files changed, 1 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/amr.c Tue Oct 10 23:56:49 2006 +0000 +++ b/amr.c Tue Oct 10 23:57:44 2006 +0000 @@ -175,11 +175,6 @@ return 0; } -static int amr_read_close(AVFormatContext *s) -{ - return 0; -} - #ifdef CONFIG_AMR_DEMUXER AVInputFormat amr_demuxer = { "amr", @@ -188,7 +183,7 @@ amr_probe, amr_read_header, amr_read_packet, - amr_read_close, + NULL, }; #endif