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
a0b901a3
Commit
a0b901a3
authored
Sep 10, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop pointless directory name prefixes from #includes in the current dir
parent
ec17d1aa
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
11 deletions
+12
-11
avcodec.h
libavcodec/avcodec.h
+2
-1
s3tc.c
libavcodec/s3tc.c
+1
-1
blowfish.c
libavutil/blowfish.c
+1
-2
des.c
libavutil/des.c
+3
-1
float_dsp.c
libavutil/float_dsp.c
+1
-1
pixfmt.h
libavutil/pixfmt.h
+1
-1
time.c
libavutil/time.c
+1
-1
xtea.c
libavutil/xtea.c
+1
-2
rgb2rgb.h
libswscale/rgb2rgb.h
+1
-1
No files found.
libavcodec/avcodec.h
View file @
a0b901a3
...
...
@@ -39,7 +39,8 @@
#include "libavutil/pixfmt.h"
#include "libavutil/rational.h"
#include "libavcodec/version.h"
#include "version.h"
/**
* @defgroup libavc Encoding/Decoding Library
* @{
...
...
libavcodec/s3tc.c
View file @
a0b901a3
...
...
@@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavcodec/bytestream.h"
#include "avcodec.h"
#include "bytestream.h"
#include "s3tc.h"
static
inline
void
dxt1_decode_pixels
(
GetByteContext
*
gb
,
uint32_t
*
d
,
...
...
libavutil/blowfish.c
View file @
a0b901a3
...
...
@@ -21,10 +21,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
#include "avutil.h"
#include "common.h"
#include "intreadwrite.h"
#include "blowfish.h"
static
const
uint32_t
orig_p
[
AV_BF_ROUNDS
+
2
]
=
{
...
...
libavutil/des.c
View file @
a0b901a3
...
...
@@ -339,7 +339,9 @@ void av_des_mac(AVDES *d, uint8_t *dst, const uint8_t *src, int count) {
#ifdef TEST
#include <stdlib.h>
#include <stdio.h>
#include "libavutil/time.h"
#include "time.h"
static
uint64_t
rand64
(
void
)
{
uint64_t
r
=
rand
();
r
=
(
r
<<
32
)
|
rand
();
...
...
libavutil/float_dsp.c
View file @
a0b901a3
...
...
@@ -17,7 +17,7 @@
*/
#include "config.h"
#include "
libavutil/
attributes.h"
#include "attributes.h"
#include "float_dsp.h"
static
void
vector_fmul_c
(
float
*
dst
,
const
float
*
src0
,
const
float
*
src1
,
...
...
libavutil/pixfmt.h
View file @
a0b901a3
...
...
@@ -28,7 +28,7 @@
*/
#include "libavutil/avconfig.h"
#include "
libavutil/
version.h"
#include "version.h"
/**
* Pixel format.
...
...
libavutil/time.c
View file @
a0b901a3
...
...
@@ -31,7 +31,7 @@
#include <windows.h>
#endif
#include "
libavutil/
time.h"
#include "time.h"
#include "error.h"
int64_t
av_gettime
(
void
)
...
...
libavutil/xtea.c
View file @
a0b901a3
...
...
@@ -21,10 +21,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
#include "avutil.h"
#include "common.h"
#include "intreadwrite.h"
#include "xtea.h"
void
av_xtea_init
(
AVXTEA
*
ctx
,
const
uint8_t
key
[
16
])
...
...
libswscale/rgb2rgb.h
View file @
a0b901a3
...
...
@@ -28,8 +28,8 @@
#include <inttypes.h>
#include "libswscale/swscale.h"
#include "libavutil/avutil.h"
#include "swscale.h"
/* A full collection of RGB to RGB(BGR) converters */
extern
void
(
*
rgb24tobgr32
)(
const
uint8_t
*
src
,
uint8_t
*
dst
,
int
src_size
);
...
...
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