mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
Remove ugly forward declaration
Commited in SoC by Vitor Sessak on 2008-02-24 11:41:22 Originally committed as revision 12728 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
de065016f0
commit
3ec394ea82
@ -22,11 +22,6 @@
|
|||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
#include "avfiltergraph.h"
|
#include "avfiltergraph.h"
|
||||||
|
|
||||||
extern AVFilter avfilter_vf_scale;
|
|
||||||
extern AVFilter avfilter_vf_graph;
|
|
||||||
extern AVFilter avfilter_vf_graphfile;
|
|
||||||
extern AVFilter avfilter_vf_graphdesc;
|
|
||||||
|
|
||||||
typedef struct AVFilterGraph {
|
typedef struct AVFilterGraph {
|
||||||
unsigned filter_count;
|
unsigned filter_count;
|
||||||
AVFilterContext **filters;
|
AVFilterContext **filters;
|
||||||
@ -425,7 +420,8 @@ static int query_formats(AVFilterContext *graphctx)
|
|||||||
/* couldn't merge format lists. auto-insert scale filter */
|
/* couldn't merge format lists. auto-insert scale filter */
|
||||||
AVFilterContext *scale;
|
AVFilterContext *scale;
|
||||||
|
|
||||||
if(!(scale = avfilter_open(&avfilter_vf_scale, NULL)))
|
if(!(scale =
|
||||||
|
avfilter_open(avfilter_get_by_name("scale"), NULL)))
|
||||||
return -1;
|
return -1;
|
||||||
if(scale->filter->init(scale, NULL, NULL) ||
|
if(scale->filter->init(scale, NULL, NULL) ||
|
||||||
avfilter_insert_filter(link, scale, 0, 0)) {
|
avfilter_insert_filter(link, scale, 0, 0)) {
|
||||||
|
@ -86,6 +86,10 @@ typedef struct
|
|||||||
AVFilterGraphDescExport **outputp; ///< last parsed exported output
|
AVFilterGraphDescExport **outputp; ///< last parsed exported output
|
||||||
} AVFilterGraphDescParser;
|
} AVFilterGraphDescParser;
|
||||||
|
|
||||||
|
extern AVFilter avfilter_vf_graph;
|
||||||
|
extern AVFilter avfilter_vf_graphfile;
|
||||||
|
extern AVFilter avfilter_vf_graphdesc;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse a graph composed of a simple chain of filters which is described by
|
* Parse a graph composed of a simple chain of filters which is described by
|
||||||
* a single string.
|
* a single string.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user