[FFmpeg-soc] [soc]: r2032 - in libavfilter: Makefile avfiltergraph.h avfiltergraphfile.c
vitor
subversion at mplayerhq.hu
Mon Mar 24 20:58:44 CET 2008
Author: vitor
Date: Mon Mar 24 20:58:44 2008
New Revision: 2032
Log:
Remove more leftovers from the old parser
Removed:
libavfilter/avfiltergraphfile.c
Modified:
libavfilter/Makefile
libavfilter/avfiltergraph.h
Modified: libavfilter/Makefile
==============================================================================
--- libavfilter/Makefile (original)
+++ libavfilter/Makefile Mon Mar 24 20:58:44 2008
@@ -11,7 +11,6 @@ OBJS = allfilters.o \
avfiltergraphdesc.o \
defaults.o \
formats.o \
- avfiltergraphfile.o \
OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o
Modified: libavfilter/avfiltergraph.h
==============================================================================
--- libavfilter/avfiltergraph.h (original)
+++ libavfilter/avfiltergraph.h Mon Mar 24 20:58:44 2008
@@ -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;
/**
More information about the FFmpeg-soc
mailing list