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

« back to all changes in this revision

Viewing changes to libavfilter/vf_libopencv.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler, Reinhard Tartler, Rico Tzschichholz
  • Date: 2014-08-30 11:02:45 UTC
  • mfrom: (1.3.47 sid)
  • Revision ID: package-import@ubuntu.com-20140830110245-io3dg7q85wfr7125
Tags: 6:11~beta1-2
[ Reinhard Tartler ]
* Make libavcodec-dev depend on libavresample-dev

[ Rico Tzschichholz ]
* Some fixes and leftovers from soname bumps

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    return 0;
69
69
}
70
70
 
71
 
typedef struct {
 
71
typedef struct OCVContext {
72
72
    const AVClass *class;
73
73
    char *name;
74
74
    char *params;
78
78
    void *priv;
79
79
} OCVContext;
80
80
 
81
 
typedef struct {
 
81
typedef struct SmoothContext {
82
82
    int type;
83
83
    int    param1, param2;
84
84
    double param3, param4;
245
245
    return 0;
246
246
}
247
247
 
248
 
typedef struct {
 
248
typedef struct DilateContext {
249
249
    int nb_iterations;
250
250
    IplConvKernel *kernel;
251
251
} DilateContext;
301
301
    cvErode(inimg, outimg, dilate->kernel, dilate->nb_iterations);
302
302
}
303
303
 
304
 
typedef struct {
 
304
typedef struct OCVFilterEntry {
305
305
    const char *name;
306
306
    size_t priv_size;
307
307
    int  (*init)(AVFilterContext *ctx, const char *args);