diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:46 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:08:46 +0000 |
commit | 7264695fe1f155aacbcf4a10b1c3498497321907 (patch) | |
tree | 90789fcc60cf53258badcdc4d2249edf83950a3e /libavfilter | |
parent | 4160400d049a170c1647fa55b141dde7863cf28e (diff) | |
download | ffmpeg-7264695fe1f155aacbcf4a10b1c3498497321907.tar.gz |
Remove more leftovers from the old parser
Commited in SoC by Vitor Sessak on 2008-03-24 19:58:44
Originally committed as revision 12733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfiltergraph.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index 185ef31cfd..31ebe347ac 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -57,16 +57,6 @@ typedef struct AVFilterGraphDescExport struct AVFilterGraphDescExport *next; } AVFilterGraphDescExport; -/** Sections of a filter graph description */ -typedef enum -{ - SEC_NONE = 0, - SEC_FILTERS, - SEC_LINKS, - SEC_INPUTS, - SEC_OUTPUTS -} AVFilterGraphDescSection; - /** Description of a graph to be loaded from a file, etc */ typedef struct { @@ -76,16 +66,6 @@ typedef struct AVFilterGraphDescExport *outputs; ///< outputs to export } AVFilterGraphDesc; -typedef struct -{ - AVFilterGraphDescSection section; ///< current section being parsed - - AVFilterGraphDescFilter **filterp; ///< last parsed filter - AVFilterGraphDescLink **linkp; ///< last parsed link - AVFilterGraphDescExport **inputp; ///< last parsed exported input - AVFilterGraphDescExport **outputp; ///< last parsed exported output -} AVFilterGraphDescParser; - extern AVFilter avfilter_vf_graph; /** |