Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
8d459acc
Commit
8d459acc
authored
Jun 04, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing #includes to make headers self-contained.
This fixes 'make checkheaders'.
parent
67ace7f0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
2 deletions
+8
-2
mathops.h
libavcodec/mathops.h
+1
-0
mpc.h
libavcodec/mpc.h
+1
-0
mpegaudiodectab.h
libavcodec/mpegaudiodectab.h
+2
-0
put_bits.h
libavcodec/put_bits.h
+1
-0
tableprint.h
libavcodec/tableprint.h
+0
-2
network.h
libavformat/network.h
+3
-0
No files found.
libavcodec/mathops.h
View file @
8d459acc
...
...
@@ -23,6 +23,7 @@
#define AVCODEC_MATHOPS_H
#include "libavutil/common.h"
#include "config.h"
#if ARCH_ARM
# include "arm/mathops.h"
...
...
libavcodec/mpc.h
View file @
8d459acc
...
...
@@ -34,6 +34,7 @@
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"
#include "mpegaudiodsp.h"
#define BANDS 32
#define SAMPLES_PER_BAND 36
...
...
libavcodec/mpegaudiodectab.h
View file @
8d459acc
...
...
@@ -27,7 +27,9 @@
#ifndef AVCODEC_MPEGAUDIODECTAB_H
#define AVCODEC_MPEGAUDIODECTAB_H
#include <stddef.h>
#include <stdint.h>
#include "mpegaudio.h"
/*******************************************************/
...
...
libavcodec/put_bits.h
View file @
8d459acc
...
...
@@ -34,6 +34,7 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include "mathops.h"
#include "config.h"
//#define ALT_BITSTREAM_WRITER
//#define ALIGNED_BITSTREAM_WRITER
...
...
libavcodec/tableprint.h
View file @
8d459acc
...
...
@@ -26,8 +26,6 @@
#include <inttypes.h>
#include <stdio.h>
#include "libavutil/common.h"
#define WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, ...)\
void write_##type##_array(const type *data, int len)\
{\
...
...
libavformat/network.h
View file @
8d459acc
...
...
@@ -21,7 +21,10 @@
#ifndef AVFORMAT_NETWORK_H
#define AVFORMAT_NETWORK_H
#include <errno.h>
#include "config.h"
#include "libavutil/error.h"
#include "os_support.h"
#if HAVE_WINSOCK2_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