Mercurial > libavformat.hg
changeset 3073:ed7b32bedcb5 libavformat
remove useless close function
author | bcoudurier |
---|---|
date | Mon, 25 Feb 2008 12:24:30 +0000 |
parents | 0e84da9b7183 |
children | 815859771e8b |
files | aiff.c |
diffstat | 1 files changed, 1 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/aiff.c Mon Feb 25 12:23:27 2008 +0000 +++ b/aiff.c Mon Feb 25 12:24:30 2008 +0000 @@ -414,11 +414,6 @@ return 0; } -static int aiff_read_close(AVFormatContext *s) -{ - return 0; -} - static int aiff_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) { @@ -433,7 +428,7 @@ aiff_probe, aiff_read_header, aiff_read_packet, - aiff_read_close, + NULL, aiff_read_seek, .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0}, };