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
dc25d79f
Commit
dc25d79f
authored
Jun 04, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop unnecessary directory prefixes from #include directives.
parent
b9c6c7cb
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
18 additions
and
16 deletions
+18
-16
aac_tablegen.h
libavcodec/aac_tablegen.h
+1
-1
dnxhdenc.h
libavcodec/dnxhdenc.h
+3
-2
mlpdsp.c
libavcodec/mlpdsp.c
+1
-1
v210enc.c
libavcodec/v210enc.c
+1
-1
mmsh.c
libavformat/mmsh.c
+1
-1
audioconvert.c
libavutil/audioconvert.c
+2
-2
eval.c
libavutil/eval.c
+1
-1
imgutils.c
libavutil/imgutils.c
+1
-1
imgutils.h
libavutil/imgutils.h
+1
-1
parseutils.c
libavutil/parseutils.c
+5
-4
parseutils.h
libavutil/parseutils.h
+1
-1
No files found.
libavcodec/aac_tablegen.h
View file @
dc25d79f
...
...
@@ -29,7 +29,7 @@
#include "libavcodec/aac_tables.h"
#else
#include "libavutil/mathematics.h"
#include "
libavcodec/
aac.h"
#include "aac.h"
float
ff_aac_pow2sf_tab
[
428
];
void
ff_aac_tableinit
(
void
)
...
...
libavcodec/dnxhdenc.h
View file @
dc25d79f
...
...
@@ -25,8 +25,9 @@
#define AVCODEC_DNXHDENC_H
#include <stdint.h>
#include "libavcodec/mpegvideo.h"
#include "libavcodec/dnxhddata.h"
#include "mpegvideo.h"
#include "dnxhddata.h"
typedef
struct
{
uint16_t
mb
;
...
...
libavcodec/mlpdsp.c
View file @
dc25d79f
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavcodec/mlp.h"
#include "dsputil.h"
#include "mlp.h"
static
void
ff_mlp_filter_channel
(
int32_t
*
state
,
const
int32_t
*
coeff
,
int
firorder
,
int
iirorder
,
...
...
libavcodec/v210enc.c
View file @
dc25d79f
...
...
@@ -22,7 +22,7 @@
*/
#include "avcodec.h"
#include "
libavcodec/
bytestream.h"
#include "bytestream.h"
static
av_cold
int
encode_init
(
AVCodecContext
*
avctx
)
{
...
...
libavformat/mmsh.c
View file @
dc25d79f
...
...
@@ -28,7 +28,7 @@
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/avstring.h"
#include "
libavformat/
internal.h"
#include "internal.h"
#include "mms.h"
#include "asf.h"
#include "http.h"
...
...
libavutil/audioconvert.c
View file @
dc25d79f
...
...
@@ -23,8 +23,8 @@
* audio conversion routines
*/
#include "
libavutil/avutil
.h"
#include "
libavutil/avstring
.h"
#include "
avstring
.h"
#include "
avutil
.h"
#include "audioconvert.h"
static
const
char
*
const
channel_names
[]
=
{
...
...
libavutil/eval.c
View file @
dc25d79f
...
...
@@ -26,7 +26,7 @@
* see http://joe.hotchkiss.com/programming/eval/eval.html
*/
#include "
libavutil/
avutil.h"
#include "avutil.h"
#include "eval.h"
typedef
struct
Parser
{
...
...
libavutil/imgutils.c
View file @
dc25d79f
...
...
@@ -23,7 +23,7 @@
#include "imgutils.h"
#include "internal.h"
#include "
libavutil/
pixdesc.h"
#include "pixdesc.h"
void
av_image_fill_max_pixsteps
(
int
max_pixsteps
[
4
],
int
max_pixstep_comps
[
4
],
const
AVPixFmtDescriptor
*
pixdesc
)
...
...
libavutil/imgutils.h
View file @
dc25d79f
...
...
@@ -24,8 +24,8 @@
* misc image utilities
*/
#include "libavutil/pixdesc.h"
#include "avutil.h"
#include "pixdesc.h"
/**
* Compute the max pixel step for each plane of an image with a
...
...
libavutil/parseutils.c
View file @
dc25d79f
...
...
@@ -24,11 +24,12 @@
#include <strings.h>
#include <sys/time.h>
#include <time.h>
#include "avstring.h"
#include "avutil.h"
#include "eval.h"
#include "random_seed.h"
#include "parseutils.h"
#include "libavutil/avutil.h"
#include "libavutil/eval.h"
#include "libavutil/avstring.h"
#include "libavutil/random_seed.h"
typedef
struct
{
const
char
*
abbr
;
...
...
libavutil/parseutils.h
View file @
dc25d79f
...
...
@@ -19,7 +19,7 @@
#ifndef AVUTIL_PARSEUTILS_H
#define AVUTIL_PARSEUTILS_H
#include "
libavutil/
rational.h"
#include "rational.h"
/**
* @file
...
...
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