Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4358d5de
Commit
4358d5de
authored
Sep 08, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed ctype.h header
Originally committed as revision 2225 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a182f5da
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
4 additions
and
6 deletions
+4
-6
avi.h
libavformat/avi.h
+4
-0
avio.c
libavformat/avio.c
+0
-1
cutils.c
libavformat/cutils.c
+0
-1
http.c
libavformat/http.c
+0
-1
rtsp.c
libavformat/rtsp.c
+0
-1
tcp.c
libavformat/tcp.c
+0
-1
utils.c
libavformat/utils.c
+0
-1
No files found.
libavformat/avi.h
View file @
4358d5de
...
...
@@ -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 */
libavformat/avio.c
View file @
4358d5de
...
...
@@ -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
);
...
...
libavformat/cutils.c
View file @
4358d5de
...
...
@@ -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)
/**
...
...
libavformat/http.c
View file @
4358d5de
...
...
@@ -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>
...
...
libavformat/rtsp.c
View file @
4358d5de
...
...
@@ -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
...
...
libavformat/tcp.c
View file @
4358d5de
...
...
@@ -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>
...
...
libavformat/utils.c
View file @
4358d5de
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment