Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
45f2908d
Commit
45f2908d
authored
Jan 18, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: Rename ffsink to avsink.
parent
0184bbe2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
21 deletions
+21
-21
avconv.c
avconv.c
+3
-3
avplay.c
avplay.c
+3
-3
cmdutils.c
cmdutils.c
+10
-10
cmdutils.h
cmdutils.h
+2
-2
ffmpeg.c
ffmpeg.c
+3
-3
No files found.
avconv.c
View file @
45f2908d
...
...
@@ -550,7 +550,7 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
/** filter graph containing all filters including input & output */
AVCodecContext
*
codec
=
ost
->
st
->
codec
;
AVCodecContext
*
icodec
=
ist
->
st
->
codec
;
FF
SinkContext
ff
sink_ctx
=
{
.
pix_fmt
=
codec
->
pix_fmt
};
AV
SinkContext
av
sink_ctx
=
{
.
pix_fmt
=
codec
->
pix_fmt
};
AVRational
sample_aspect_ratio
;
char
args
[
255
];
int
ret
;
...
...
@@ -570,8 +570,8 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
"src"
,
args
,
NULL
,
ost
->
graph
);
if
(
ret
<
0
)
return
ret
;
ret
=
avfilter_graph_create_filter
(
&
ost
->
output_video_filter
,
&
ff
sink
,
"out"
,
NULL
,
&
ff
sink_ctx
,
ost
->
graph
);
ret
=
avfilter_graph_create_filter
(
&
ost
->
output_video_filter
,
&
av
sink
,
"out"
,
NULL
,
&
av
sink_ctx
,
ost
->
graph
);
if
(
ret
<
0
)
return
ret
;
last_filter
=
ost
->
input_video_filter
;
...
...
avplay.c
View file @
45f2908d
...
...
@@ -1707,7 +1707,7 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
{
char
sws_flags_str
[
128
];
int
ret
;
FF
SinkContext
ff
sink_ctx
=
{
.
pix_fmt
=
PIX_FMT_YUV420P
};
AV
SinkContext
av
sink_ctx
=
{
.
pix_fmt
=
PIX_FMT_YUV420P
};
AVFilterContext
*
filt_src
=
NULL
,
*
filt_out
=
NULL
;
snprintf
(
sws_flags_str
,
sizeof
(
sws_flags_str
),
"flags=%d"
,
sws_flags
);
graph
->
scale_sws_opts
=
av_strdup
(
sws_flags_str
);
...
...
@@ -1715,8 +1715,8 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
if
((
ret
=
avfilter_graph_create_filter
(
&
filt_src
,
&
input_filter
,
"src"
,
NULL
,
is
,
graph
))
<
0
)
return
ret
;
if
((
ret
=
avfilter_graph_create_filter
(
&
filt_out
,
&
ff
sink
,
"out"
,
NULL
,
&
ff
sink_ctx
,
graph
))
<
0
)
if
((
ret
=
avfilter_graph_create_filter
(
&
filt_out
,
&
av
sink
,
"out"
,
NULL
,
&
av
sink_ctx
,
graph
))
<
0
)
return
ret
;
if
(
vfilters
)
{
...
...
cmdutils.c
View file @
45f2908d
...
...
@@ -1031,34 +1031,34 @@ AVDictionary **setup_find_stream_info_opts(AVFormatContext *s,
#if CONFIG_AVFILTER
static
int
ff
sink_init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
static
int
av
sink_init
(
AVFilterContext
*
ctx
,
const
char
*
args
,
void
*
opaque
)
{
FF
SinkContext
*
priv
=
ctx
->
priv
;
AV
SinkContext
*
priv
=
ctx
->
priv
;
if
(
!
opaque
)
return
AVERROR
(
EINVAL
);
*
priv
=
*
(
FF
SinkContext
*
)
opaque
;
*
priv
=
*
(
AV
SinkContext
*
)
opaque
;
return
0
;
}
static
void
null_end_frame
(
AVFilterLink
*
inlink
)
{
}
static
int
ff
sink_query_formats
(
AVFilterContext
*
ctx
)
static
int
av
sink_query_formats
(
AVFilterContext
*
ctx
)
{
FF
SinkContext
*
priv
=
ctx
->
priv
;
AV
SinkContext
*
priv
=
ctx
->
priv
;
enum
PixelFormat
pix_fmts
[]
=
{
priv
->
pix_fmt
,
PIX_FMT_NONE
};
avfilter_set_common_formats
(
ctx
,
avfilter_make_format_list
(
pix_fmts
));
return
0
;
}
AVFilter
ff
sink
=
{
.
name
=
"
ff
sink"
,
.
priv_size
=
sizeof
(
FF
SinkContext
),
.
init
=
ff
sink_init
,
AVFilter
av
sink
=
{
.
name
=
"
av
sink"
,
.
priv_size
=
sizeof
(
AV
SinkContext
),
.
init
=
av
sink_init
,
.
query_formats
=
ff
sink_query_formats
,
.
query_formats
=
av
sink_query_formats
,
.
inputs
=
(
AVFilterPad
[])
{{
.
name
=
"default"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
...
...
cmdutils.h
View file @
45f2908d
...
...
@@ -363,9 +363,9 @@ FILE *get_preset_file(char *filename, size_t filename_size,
typedef
struct
{
enum
PixelFormat
pix_fmt
;
}
FF
SinkContext
;
}
AV
SinkContext
;
extern
AVFilter
ff
sink
;
extern
AVFilter
av
sink
;
/**
* Extract a frame from sink.
...
...
ffmpeg.c
View file @
45f2908d
...
...
@@ -338,7 +338,7 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
/** filter graph containing all filters including input & output */
AVCodecContext
*
codec
=
ost
->
st
->
codec
;
AVCodecContext
*
icodec
=
ist
->
st
->
codec
;
FF
SinkContext
ff
sink_ctx
=
{
.
pix_fmt
=
codec
->
pix_fmt
};
AV
SinkContext
av
sink_ctx
=
{
.
pix_fmt
=
codec
->
pix_fmt
};
AVRational
sample_aspect_ratio
;
char
args
[
255
];
int
ret
;
...
...
@@ -358,8 +358,8 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
"src"
,
args
,
NULL
,
ost
->
graph
);
if
(
ret
<
0
)
return
ret
;
ret
=
avfilter_graph_create_filter
(
&
ost
->
output_video_filter
,
&
ff
sink
,
"out"
,
NULL
,
&
ff
sink_ctx
,
ost
->
graph
);
ret
=
avfilter_graph_create_filter
(
&
ost
->
output_video_filter
,
&
av
sink
,
"out"
,
NULL
,
&
av
sink_ctx
,
ost
->
graph
);
if
(
ret
<
0
)
return
ret
;
last_filter
=
ost
->
input_video_filter
;
...
...
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