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
56c4a184
Commit
56c4a184
authored
Sep 08, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ctype.h is a common header
Originally committed as revision 2223 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
25f90cf7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
common.h
libavcodec/common.h
+1
-0
mpegvideo.c
libavcodec/mpegvideo.c
+2
-1
xvmcvideo.c
libavcodec/xvmcvideo.c
+0
-3
No files found.
libavcodec/common.h
View file @
56c4a184
...
...
@@ -25,6 +25,7 @@
# include <stdlib.h>
# include <stdio.h>
# include <string.h>
# include <ctype.h>
# ifndef __BEOS__
# include <errno.h>
# else
...
...
libavcodec/mpegvideo.c
View file @
56c4a184
...
...
@@ -24,7 +24,6 @@
* The simplest mpeg encoder (well, it was the simplest!).
*/
#include <ctype.h>
#include <limits.h>
#include "avcodec.h"
#include "dsputil.h"
...
...
@@ -3510,6 +3509,8 @@ static void encode_picture(MpegEncContext *s, int picture_number)
case
FMT_MPEG1
:
mpeg1_encode_picture_header
(
s
,
picture_number
);
break
;
case
FMT_H264
:
break
;
}
bits
=
get_bit_count
(
&
s
->
pb
);
s
->
header_bits
=
bits
-
s
->
last_bits
;
...
...
libavcodec/xvmcvideo.c
View file @
56c4a184
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <limits.h>
//avcodec include
...
...
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