Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2702e384
Commit
2702e384
authored
Jul 31, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: remove unused defaults.c file
parent
6eee9f55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
49 deletions
+0
-49
Makefile
libavfilter/Makefile
+0
-1
defaults.c
libavfilter/defaults.c
+0
-48
No files found.
libavfilter/Makefile
View file @
2702e384
...
...
@@ -30,7 +30,6 @@ OBJS = allfilters.o \
buffer.o
\
buffersink.o
\
buffersrc.o
\
defaults.o
\
drawutils.o
\
formats.o
\
graphdump.o
\
...
...
libavfilter/defaults.c
deleted
100644 → 0
View file @
6eee9f55
/*
* Filter layer - default implementations
* Copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/avassert.h"
#include "libavutil/audioconvert.h"
#include "libavutil/imgutils.h"
#include "libavutil/samplefmt.h"
#include "avfilter.h"
#include "internal.h"
#include "formats.h"
static
void
set_common_formats
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
fmts
,
enum
AVMediaType
type
,
int
offin
,
int
offout
)
{
int
i
;
for
(
i
=
0
;
i
<
ctx
->
input_count
;
i
++
)
if
(
ctx
->
inputs
[
i
]
&&
ctx
->
inputs
[
i
]
->
type
==
type
)
ff_formats_ref
(
fmts
,
(
AVFilterFormats
**
)((
uint8_t
*
)
ctx
->
inputs
[
i
]
+
offout
));
for
(
i
=
0
;
i
<
ctx
->
output_count
;
i
++
)
if
(
ctx
->
outputs
[
i
]
&&
ctx
->
outputs
[
i
]
->
type
==
type
)
ff_formats_ref
(
fmts
,
(
AVFilterFormats
**
)((
uint8_t
*
)
ctx
->
outputs
[
i
]
+
offin
));
if
(
!
fmts
->
refcount
)
{
av_free
(
fmts
->
formats
);
av_free
(
fmts
->
refs
);
av_free
(
fmts
);
}
}
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