diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 20:04:44 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-09-08 20:04:44 +0000 |
commit | 4358d5def36e01994d2c953ddde00c1675fa2368 (patch) | |
tree | 23e6ce99e9eb576f4f8c004f5cec0bf7c06645fc /libavformat | |
parent | a182f5da9366d5094c054858f5bd7804cbaa2cf3 (diff) | |
download | ffmpeg-4358d5def36e01994d2c953ddde00c1675fa2368.tar.gz |
removed ctype.h header
Originally committed as revision 2225 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avi.h | 4 | ||||
-rw-r--r-- | libavformat/avio.c | 1 | ||||
-rw-r--r-- | libavformat/cutils.c | 1 | ||||
-rw-r--r-- | libavformat/http.c | 1 | ||||
-rw-r--r-- | libavformat/rtsp.c | 1 | ||||
-rw-r--r-- | libavformat/tcp.c | 1 | ||||
-rw-r--r-- | libavformat/utils.c | 1 |
7 files changed, 4 insertions, 6 deletions
diff --git a/libavformat/avi.h b/libavformat/avi.h index 25feebfcf6..2b0b6de57d 100644 --- a/libavformat/avi.h +++ b/libavformat/avi.h @@ -32,5 +32,9 @@ extern const CodecTag codec_wav_tags[]; unsigned int codec_get_tag(const CodecTag *tags, int id); enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag); +unsigned int codec_get_bmp_tag(int id); +unsigned int codec_get_wav_tag(int id); +enum CodecID codec_get_bmp_id(unsigned int tag); +enum CodecID codec_get_wav_id(unsigned int tag); #endif /* FFMPEG_AVI_H */ diff --git a/libavformat/avio.c b/libavformat/avio.c index 2c25c8a059..18d19bf2f5 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -17,7 +17,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "avformat.h" -#include <ctype.h> static int default_interrupt_cb(void); diff --git a/libavformat/cutils.c b/libavformat/cutils.c index 28f40b0e2f..74d66e5618 100644 --- a/libavformat/cutils.c +++ b/libavformat/cutils.c @@ -17,7 +17,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "avformat.h" -#include <ctype.h> #if !defined(CONFIG_NOCUTILS) /** diff --git a/libavformat/http.c b/libavformat/http.c index f81ce1654b..b052683790 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -18,7 +18,6 @@ */ #include "avformat.h" #include <unistd.h> -#include <ctype.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 5b2a207195..802591dd96 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -22,7 +22,6 @@ #include <sys/time.h> #include <netinet/in.h> #include <sys/socket.h> -#include <ctype.h> #ifndef __BEOS__ # include <arpa/inet.h> #else diff --git a/libavformat/tcp.c b/libavformat/tcp.c index ee61afafe9..d280815714 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -18,7 +18,6 @@ */ #include "avformat.h" #include <unistd.h> -#include <ctype.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> diff --git a/libavformat/utils.c b/libavformat/utils.c index e169b076d9..c4ced9551d 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -17,7 +17,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "avformat.h" -#include <ctype.h> #ifdef CONFIG_WIN32 #define strcasecmp _stricmp #include <sys/types.h> |