Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
0f512788
Commit
0f512788
authored
Dec 15, 2013
by
James Zern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
{,vpx_scale}: normalize include guards
Change-Id: Ib8aafeee30d59521ee256dc1801e0db6b4b8a371
parent
d2f49407
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
17 deletions
+19
-17
args.h
args.h
+3
-3
ivfdec.h
ivfdec.h
+1
-1
ivfenc.h
ivfenc.h
+1
-1
md5_utils.h
md5_utils.h
+3
-3
vpx_scale/vpx_scale.h
vpx_scale/vpx_scale.h
+3
-3
vpx_scale/yv12config.h
vpx_scale/yv12config.h
+3
-3
y4minput.h
y4minput.h
+5
-3
No files found.
args.h
View file @
0f512788
...
...
@@ -9,8 +9,8 @@
*/
#ifndef ARGS_H
#define ARGS_H
#ifndef ARGS_H
_
#define ARGS_H
_
#include <stdio.h>
struct
arg
{
...
...
@@ -48,4 +48,4 @@ unsigned int arg_parse_uint(const struct arg *arg);
int
arg_parse_int
(
const
struct
arg
*
arg
);
struct
vpx_rational
arg_parse_rational
(
const
struct
arg
*
arg
);
int
arg_parse_enum_or_int
(
const
struct
arg
*
arg
);
#endif
#endif
// ARGS_H_
ivfdec.h
View file @
0f512788
...
...
@@ -27,4 +27,4 @@ int ivf_read_frame(struct VpxInputContext *input,
}
/* extern "C" */
#endif
#endif
/
* IVFDEC_H_ */
#endif /
/ IVFDEC_H_
ivfenc.h
View file @
0f512788
...
...
@@ -30,4 +30,4 @@ void ivf_write_frame_size(FILE *outfile, size_t size);
}
/* extern "C" */
#endif
#endif
/
* IVFENC_H_ */
#endif /
/ IVFENC_H_
md5_utils.h
View file @
0f512788
...
...
@@ -20,8 +20,8 @@
* Still in the public domain.
*/
#ifndef MD5_
H
#define MD5_
H
#ifndef MD5_
UTILS_H_
#define MD5_
UTILS_H_
#define md5byte unsigned char
#define UWORD32 unsigned int
...
...
@@ -38,4 +38,4 @@ void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
void
MD5Final
(
unsigned
char
digest
[
16
],
struct
MD5Context
*
context
);
void
MD5Transform
(
UWORD32
buf
[
4
],
UWORD32
const
in
[
16
]);
#endif
/* !MD5_H */
#endif
// MD5_UTILS_H_
vpx_scale/vpx_scale.h
View file @
0f512788
...
...
@@ -9,8 +9,8 @@
*/
#ifndef VPX
SCALE_H
#define VPX
SCALE_H
#ifndef VPX
_SCALE_VPX_SCALE_H_
#define VPX
_SCALE_VPX_SCALE_H_
#include "vpx_scale/yv12config.h"
...
...
@@ -24,4 +24,4 @@ extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src,
unsigned
int
vratio
,
unsigned
int
interlaced
);
#endif
#endif
// VPX_SCALE_VPX_SCALE_H_
vpx_scale/yv12config.h
View file @
0f512788
...
...
@@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef
YV12_CONFIG_H
#define
YV12_CONFIG_H
#ifndef
VPX_SCALE_YV12CONFIG_H_
#define
VPX_SCALE_YV12CONFIG_H_
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -85,4 +85,4 @@ extern "C" {
}
#endif
#endif //
YV12_CONFIG_H
#endif //
VPX_SCALE_YV12CONFIG_H_
y4minput.h
View file @
0f512788
...
...
@@ -10,8 +10,10 @@
* Based on code from the OggTheora software codec source code,
* Copyright (C) 2002-2010 The Xiph.Org Foundation and contributors.
*/
#if !defined(_y4minput_H)
# define _y4minput_H (1)
#ifndef Y4MINPUT_H_
#define Y4MINPUT_H_
# include <stdio.h>
# include "vpx/vpx_image.h"
...
...
@@ -60,4 +62,4 @@ int y4m_input_open(y4m_input *_y4m, FILE *_fin, char *_skip, int _nskip,
void
y4m_input_close
(
y4m_input
*
_y4m
);
int
y4m_input_fetch_frame
(
y4m_input
*
_y4m
,
FILE
*
_fin
,
vpx_image_t
*
img
);
#endif
#endif
// Y4MINPUT_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