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

« back to all changes in this revision

Viewing changes to libavfilter/vf_boxblur.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:
55
55
    VARS_NB
56
56
};
57
57
 
58
 
typedef struct {
 
58
typedef struct FilterParam {
59
59
    int radius;
60
60
    int power;
61
61
} FilterParam;
62
62
 
63
 
typedef struct {
 
63
typedef struct BoxBlurContext {
64
64
    const AVClass *class;
65
65
    FilterParam luma_param;
66
66
    FilterParam chroma_param;