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
44304ae3
Commit
44304ae3
authored
Jan 29, 2016
by
Timothy Gu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: Add missing header guards
parent
6bc610b3
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
87 additions
and
0 deletions
+87
-0
va_copy.h
compat/va_copy.h
+5
-0
dcamath.h
libavcodec/dcamath.h
+5
-0
dvaudio.h
libavcodec/dvaudio.h
+5
-0
frame_thread_encoder.h
libavcodec/frame_thread_encoder.h
+4
-0
xface.h
libavcodec/xface.h
+5
-0
decklink_common.h
libavdevice/decklink_common.h
+4
-0
decklink_common_c.h
libavdevice/decklink_common_c.h
+4
-0
decklink_dec.h
libavdevice/decklink_dec.h
+5
-0
decklink_enc.h
libavdevice/decklink_enc.h
+5
-0
blend.h
libavfilter/blend.h
+5
-0
hermite.h
libavfilter/hermite.h
+5
-0
maskedmerge.h
libavfilter/maskedmerge.h
+5
-0
removegrain.h
libavfilter/removegrain.h
+5
-0
neontest.h
libavutil/aarch64/neontest.h
+5
-0
neontest.h
libavutil/arm/neontest.h
+5
-0
opencl_internal.h
libavutil/opencl_internal.h
+5
-0
qsort.h
libavutil/qsort.h
+5
-0
w64xmmtest.h
libavutil/x86/w64xmmtest.h
+5
-0
No files found.
compat/va_copy.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef COMPAT_VA_COPY_H
#define COMPAT_VA_COPY_H
#include <stdarg.h>
#include <stdarg.h>
#if !defined(va_copy) && defined(_MSC_VER)
#if !defined(va_copy) && defined(_MSC_VER)
...
@@ -27,3 +30,5 @@
...
@@ -27,3 +30,5 @@
#if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3
#if !defined(va_copy) && defined(__GNUC__) && __GNUC__ < 3
#define va_copy(dst, src) __va_copy(dst, src)
#define va_copy(dst, src) __va_copy(dst, src)
#endif
#endif
#endif
/* COMPAT_VA_COPY_H */
libavcodec/dcamath.h
View file @
44304ae3
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVCODEC_DCAMATH_H
#define AVCODEC_DCAMATH_H
#include "libavutil/common.h"
#include "libavutil/common.h"
...
@@ -40,3 +43,5 @@ static inline int64_t dca_round(int64_t a, int bits)
...
@@ -40,3 +43,5 @@ static inline int64_t dca_round(int64_t a, int bits)
else
else
return
a
;
return
a
;
}
}
#endif
/* AVCODEC_DCAMATH_H */
libavcodec/dvaudio.h
View file @
44304ae3
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVCODEC_DVAUDIO_H
#define AVCODEC_DVAUDIO_H
static
inline
int
dv_get_audio_sample_count
(
const
uint8_t
*
buffer
,
int
dsf
)
static
inline
int
dv_get_audio_sample_count
(
const
uint8_t
*
buffer
,
int
dsf
)
{
{
int
samples
=
buffer
[
0
]
&
0x3f
;
/* samples in this frame - min samples */
int
samples
=
buffer
[
0
]
&
0x3f
;
/* samples in this frame - min samples */
...
@@ -30,3 +33,5 @@ static inline int dv_get_audio_sample_count(const uint8_t *buffer, int dsf)
...
@@ -30,3 +33,5 @@ static inline int dv_get_audio_sample_count(const uint8_t *buffer, int dsf)
return
samples
+
(
dsf
?
1264
:
1053
);
return
samples
+
(
dsf
?
1264
:
1053
);
}
}
}
}
#endif
/* AVCODEC_DVAUDIO_H */
libavcodec/frame_thread_encoder.h
View file @
44304ae3
...
@@ -18,9 +18,13 @@
...
@@ -18,9 +18,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVCODEC_FRAME_THREAD_ENCODER_H
#define AVCODEC_FRAME_THREAD_ENCODER_H
#include "avcodec.h"
#include "avcodec.h"
int
ff_frame_thread_encoder_init
(
AVCodecContext
*
avctx
,
AVDictionary
*
options
);
int
ff_frame_thread_encoder_init
(
AVCodecContext
*
avctx
,
AVDictionary
*
options
);
void
ff_frame_thread_encoder_free
(
AVCodecContext
*
avctx
);
void
ff_frame_thread_encoder_free
(
AVCodecContext
*
avctx
);
int
ff_thread_video_encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
frame
,
int
*
got_packet_ptr
);
int
ff_thread_video_encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
frame
,
int
*
got_packet_ptr
);
#endif
/* AVCODEC_FRAME_THREAD_ENCODER_H */
libavcodec/xface.h
View file @
44304ae3
...
@@ -24,6 +24,9 @@
...
@@ -24,6 +24,9 @@
* X-Face common definitions.
* X-Face common definitions.
*/
*/
#ifndef AVCODEC_XFACE_H
#define AVCODEC_XFACE_H
#include <stdint.h>
#include <stdint.h>
/* define the face size - 48x48x1 */
/* define the face size - 48x48x1 */
...
@@ -94,3 +97,5 @@ extern const ProbRange ff_xface_probranges_per_level[4][3];
...
@@ -94,3 +97,5 @@ extern const ProbRange ff_xface_probranges_per_level[4][3];
extern
const
ProbRange
ff_xface_probranges_2x2
[
16
];
extern
const
ProbRange
ff_xface_probranges_2x2
[
16
];
void
ff_xface_generate_face
(
uint8_t
*
dst
,
uint8_t
*
const
src
);
void
ff_xface_generate_face
(
uint8_t
*
dst
,
uint8_t
*
const
src
);
#endif
/* AVCODEC_XFACE_H */
libavdevice/decklink_common.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVDEVICE_DECKLINK_COMMON_H
#define AVDEVICE_DECKLINK_COMMON_H
#include <DeckLinkAPIVersion.h>
#include <DeckLinkAPIVersion.h>
#include "decklink_common_c.h"
#include "decklink_common_c.h"
...
@@ -103,3 +106,4 @@ int ff_decklink_set_format(AVFormatContext *avctx, decklink_direction_t directio
...
@@ -103,3 +106,4 @@ int ff_decklink_set_format(AVFormatContext *avctx, decklink_direction_t directio
int
ff_decklink_list_devices
(
AVFormatContext
*
avctx
);
int
ff_decklink_list_devices
(
AVFormatContext
*
avctx
);
int
ff_decklink_list_formats
(
AVFormatContext
*
avctx
,
decklink_direction_t
direction
=
DIRECTION_OUT
);
int
ff_decklink_list_formats
(
AVFormatContext
*
avctx
,
decklink_direction_t
direction
=
DIRECTION_OUT
);
#endif /* AVDEVICE_DECKLINK_COMMON_H *
libavdevice/decklink_common_c.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVDEVICE_DECKLINK_COMMON_C_H
#define AVDEVICE_DECKLINK_COMMON_C_H
struct
decklink_cctx
{
struct
decklink_cctx
{
const
AVClass
*
cclass
;
const
AVClass
*
cclass
;
...
@@ -32,3 +35,4 @@ struct decklink_cctx {
...
@@ -32,3 +35,4 @@ struct decklink_cctx {
int
v210
;
int
v210
;
};
};
#endif
/* AVDEVICE_DECKLINK_COMMON_C_H */
libavdevice/decklink_dec.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVDEVICE_DECKLINK_DEC_H
#define AVDEVICE_DECKLINK_DEC_H
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
...
@@ -30,3 +33,5 @@ int ff_decklink_read_close(AVFormatContext *avctx);
...
@@ -30,3 +33,5 @@ int ff_decklink_read_close(AVFormatContext *avctx);
#ifdef __cplusplus
#ifdef __cplusplus
}
/* extern "C" */
}
/* extern "C" */
#endif
#endif
#endif
/* AVDEVICE_DECKLINK_DEC_H */
libavdevice/decklink_enc.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVDEVICE_DECKLINK_ENC_H
#define AVDEVICE_DECKLINK_ENC_H
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
...
@@ -30,3 +33,5 @@ int ff_decklink_write_trailer(AVFormatContext *avctx);
...
@@ -30,3 +33,5 @@ int ff_decklink_write_trailer(AVFormatContext *avctx);
#ifdef __cplusplus
#ifdef __cplusplus
}
/* extern "C" */
}
/* extern "C" */
#endif
#endif
#endif
/* AVDEVICE_DECKLINK_ENC_H */
libavfilter/blend.h
View file @
44304ae3
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVFILTER_BLEND_H
#define AVFILTER_BLEND_H
#include "libavutil/eval.h"
#include "libavutil/eval.h"
#include "avfilter.h"
#include "avfilter.h"
...
@@ -68,3 +71,5 @@ typedef struct FilterParams {
...
@@ -68,3 +71,5 @@ typedef struct FilterParams {
}
FilterParams
;
}
FilterParams
;
void
ff_blend_init_x86
(
FilterParams
*
param
,
int
is_16bit
);
void
ff_blend_init_x86
(
FilterParams
*
param
,
int
is_16bit
);
#endif
/* AVFILTER_BLEND_H */
libavfilter/hermite.h
View file @
44304ae3
...
@@ -16,6 +16,9 @@
...
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVFILTER_HERMITE_H
#define AVFILTER_HERMITE_H
static
inline
double
hermite_interpolation
(
double
x
,
double
x0
,
double
x1
,
static
inline
double
hermite_interpolation
(
double
x
,
double
x0
,
double
x1
,
double
p0
,
double
p1
,
double
p0
,
double
p1
,
double
m0
,
double
m1
)
double
m0
,
double
m1
)
...
@@ -38,3 +41,5 @@ static inline double hermite_interpolation(double x, double x0, double x1,
...
@@ -38,3 +41,5 @@ static inline double hermite_interpolation(double x, double x0, double x1,
return
ct3
*
t3
+
ct2
*
t2
+
ct1
*
t
+
ct0
;
return
ct3
*
t3
+
ct2
*
t2
+
ct1
*
t
+
ct0
;
}
}
#endif
/* AVFILTER_HERMITE_H */
libavfilter/maskedmerge.h
View file @
44304ae3
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVFILTER_MASKEDMERGE_H
#define AVFILTER_MASKEDMERGE_H
#include "avfilter.h"
#include "avfilter.h"
#include "framesync.h"
#include "framesync.h"
...
@@ -38,3 +41,5 @@ typedef struct MaskedMergeContext {
...
@@ -38,3 +41,5 @@ typedef struct MaskedMergeContext {
}
MaskedMergeContext
;
}
MaskedMergeContext
;
void
ff_maskedmerge_init_x86
(
MaskedMergeContext
*
s
);
void
ff_maskedmerge_init_x86
(
MaskedMergeContext
*
s
);
#endif
/* AVFILTER_MASKEDMERGE_H */
libavfilter/removegrain.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVFILTER_REMOVEGRAIN_H
#define AVFILTER_REMOVEGRAIN_H
#include "avfilter.h"
#include "avfilter.h"
typedef
struct
RemoveGrainContext
{
typedef
struct
RemoveGrainContext
{
...
@@ -38,3 +41,5 @@ typedef struct RemoveGrainContext {
...
@@ -38,3 +41,5 @@ typedef struct RemoveGrainContext {
}
RemoveGrainContext
;
}
RemoveGrainContext
;
void
ff_removegrain_init_x86
(
RemoveGrainContext
*
rg
);
void
ff_removegrain_init_x86
(
RemoveGrainContext
*
rg
);
#endif
/* AVFILTER_REMOVEGRAIN_H */
libavutil/aarch64/neontest.h
View file @
44304ae3
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVUTIL_AARCH64_NEONTEST_H
#define AVUTIL_AARCH64_NEONTEST_H
#include <inttypes.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdlib.h>
...
@@ -63,3 +66,5 @@
...
@@ -63,3 +66,5 @@
int __real_ ## func; \
int __real_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func
int __wrap_ ## func
#endif
/* AVUTIL_AARCH64_NEONTEST_H */
libavutil/arm/neontest.h
View file @
44304ae3
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVUTIL_ARM_NEONTEST_H
#define AVUTIL_ARM_NEONTEST_H
#include <inttypes.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdlib.h>
...
@@ -60,3 +63,5 @@
...
@@ -60,3 +63,5 @@
int __real_ ## func; \
int __real_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func
int __wrap_ ## func
#endif
/* AVUTIL_ARM_NEONTEST_H */
libavutil/opencl_internal.h
View file @
44304ae3
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVUTIL_OPENCL_INTERNAL_H
#define AVUTIL_OPENCL_INTERNAL_H
#include "attributes.h"
#include "attributes.h"
#include "opencl.h"
#include "opencl.h"
...
@@ -33,3 +36,5 @@ typedef struct {
...
@@ -33,3 +36,5 @@ typedef struct {
av_warn_unused_result
av_warn_unused_result
int
avpriv_opencl_set_parameter
(
FFOpenclParam
*
opencl_param
,
...);
int
avpriv_opencl_set_parameter
(
FFOpenclParam
*
opencl_param
,
...);
#endif
/* AVUTIL_OPENCL_INTERNAL_H */
libavutil/qsort.h
View file @
44304ae3
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVUTIL_QSORT_H
#define AVUTIL_QSORT_H
#include "common.h"
#include "common.h"
...
@@ -115,3 +118,5 @@
...
@@ -115,3 +118,5 @@
FFSWAP(type*, p, tmp);\
FFSWAP(type*, p, tmp);\
}\
}\
} while (0)
} while (0)
#endif
/* AVUTIL_QSORT_H */
libavutil/x86/w64xmmtest.h
View file @
44304ae3
...
@@ -19,6 +19,9 @@
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#ifndef AVUTIL_X86_W64XMMTEST_H
#define AVUTIL_X86_W64XMMTEST_H
#include <inttypes.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdlib.h>
...
@@ -71,3 +74,5 @@
...
@@ -71,3 +74,5 @@
int __real_ ## func; \
int __real_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func; \
int __wrap_ ## func
int __wrap_ ## func
#endif
/* AVUTIL_X86_W64XMMTEST_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