Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
a1168155
Commit
a1168155
authored
Aug 14, 2012
by
Christian Duvivier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings.
Change-Id: I4b911e4173da30c164bde7ea50bc80a70fbbb745
parent
73089031
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
2 deletions
+8
-2
configure
configure
+1
-0
examples/decoder_tmpl.c
examples/decoder_tmpl.c
+1
-0
vp8/common/predict_rotated.c
vp8/common/predict_rotated.c
+2
-0
vp8/common/treecoder.c
vp8/common/treecoder.c
+1
-1
vpx_mem/vpx_mem.h
vpx_mem/vpx_mem.h
+1
-0
vpx_ports/asm_offsets.h
vpx_ports/asm_offsets.h
+1
-1
vpxenc.c
vpxenc.c
+1
-0
No files found.
configure
View file @
a1168155
...
...
@@ -226,6 +226,7 @@ EXPERIMENT_LIST="
switchable_interp
tx16x16
newbestrefmv
rotation
"
CONFIG_LIST
=
"
external_build
...
...
examples/decoder_tmpl.c
View file @
a1168155
...
...
@@ -12,6 +12,7 @@
/*
@*INTRODUCTION
*/
#include "vpx_config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
...
...
vp8/common/predict_rotated.c
View file @
a1168155
...
...
@@ -8,6 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "vpx_config.h"
#if CONFIG_ROTATION
typedef
struct
{
int
y
;
...
...
vp8/common/treecoder.c
View file @
a1168155
...
...
@@ -11,7 +11,7 @@
#include "vpx_config.h"
#if CONFIG_DEBUG
#if
defined(CONFIG_DEBUG) &&
CONFIG_DEBUG
#include <assert.h>
#endif
#include <stdio.h>
...
...
vpx_mem/vpx_mem.h
View file @
a1168155
...
...
@@ -12,6 +12,7 @@
#ifndef __VPX_MEM_H__
#define __VPX_MEM_H__
#include "vpx_config.h"
#if defined(__uClinux__)
# include <lddk.h>
#endif
...
...
vpx_ports/asm_offsets.h
View file @
a1168155
...
...
@@ -18,7 +18,7 @@
static void assert_##name(void) UNUSED;\
static void assert_##name(void) {switch(0){case 0:case !!(cond):;}}
#if INLINE_ASM
#if
defined(INLINE_ASM) &&
INLINE_ASM
#define DEFINE(sym, val) asm("\n" #sym " EQU %0" : : "i" (val));
#define BEGIN int main(void) {
#define END return 0; }
...
...
vpxenc.c
View file @
a1168155
...
...
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "vpx_config.h"
/* This is a simple program that encodes YV12 files and generates ivf
* files using the new interface.
...
...
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