diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-17 12:36:52 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-26 13:14:59 +0200 |
commit | 8d900aa4d0061967678c28d74659f918b0dbcad9 (patch) | |
tree | 432ee7795830fd8745ddca965c7fb07f2b5e4c4d /libavfilter/avfiltergraph.c | |
parent | a5e8c41c28f907d98d2a739db08f7aef4cbfcf3a (diff) | |
download | ffmpeg-8d900aa4d0061967678c28d74659f918b0dbcad9.tar.gz |
lavfi: remove disabled FF_API_GRAPH_AVCLASS cruft
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 95e0a219af..b9f01645d0 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -42,9 +42,7 @@ AVFilterGraph *avfilter_graph_alloc(void) AVFilterGraph *ret = av_mallocz(sizeof(AVFilterGraph)); if (!ret) return NULL; -#if FF_API_GRAPH_AVCLASS ret->av_class = &filtergraph_class; -#endif return ret; } |