~ubuntu-branches/ubuntu/utopic/libav/utopic

« back to all changes in this revision

Viewing changes to libavfilter/avfiltergraph.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-12-21 15:32:13 UTC
  • mto: (1.2.18)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20121221153213-fudzrugjzivtv0wp
Tags: upstream-9~beta3
ImportĀ upstreamĀ versionĀ 9~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <ctype.h>
24
24
#include <string.h>
25
25
 
 
26
#include "libavutil/avassert.h"
 
27
#include "libavutil/channel_layout.h"
 
28
#include "libavutil/common.h"
 
29
#include "libavutil/log.h"
26
30
#include "avfilter.h"
27
31
#include "avfiltergraph.h"
28
32
#include "formats.h"
29
33
#include "internal.h"
30
34
 
31
 
#include "libavutil/audioconvert.h"
32
 
#include "libavutil/avassert.h"
33
 
#include "libavutil/common.h"
34
 
#include "libavutil/log.h"
35
 
 
36
35
static const AVClass filtergraph_class = {
37
36
    .class_name = "AVFilterGraph",
38
37
    .item_name  = av_default_item_name,