diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-16 15:21:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-16 15:21:31 +0200 |
commit | e55092b12b572e53b3970ca261e9205ae4cabcb0 (patch) | |
tree | 3806ddf57afcebf59653e215b022c81172de6df1 /libavfilter/vf_fieldorder.c | |
parent | afec02afe7e8d001c84b066383e0d72b79c25225 (diff) | |
parent | f6b6d6ac42c0ee427fcd3fae4c398b2103b491b8 (diff) | |
download | ffmpeg-e55092b12b572e53b3970ca261e9205ae4cabcb0.tar.gz |
Merge commit 'f6b6d6ac42c0ee427fcd3fae4c398b2103b491b8'
* commit 'f6b6d6ac42c0ee427fcd3fae4c398b2103b491b8':
vf_frei0r: use the name 's' for the pointer to the private context
vf_format: use the name 's' for the pointer to the private context
vf_fieldorder: use the name 's' for the pointer to the private context
vf_fieldorder: cosmetics, remove an extra linebreak
Conflicts:
libavfilter/vf_frei0r.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_fieldorder.c')
-rw-r--r-- | libavfilter/vf_fieldorder.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c index 46964fd45d..3a19500c13 100644 --- a/libavfilter/vf_fieldorder.c +++ b/libavfilter/vf_fieldorder.c @@ -68,17 +68,15 @@ static int query_formats(AVFilterContext *ctx) static int config_input(AVFilterLink *inlink) { - AVFilterContext *ctx = inlink->dst; - FieldOrderContext *fieldorder = ctx->priv; + AVFilterContext *ctx = inlink->dst; + FieldOrderContext *s = ctx->priv; int plane; /** full an array with the number of bytes that the video * data occupies per line for each plane of the input video */ for (plane = 0; plane < 4; plane++) { - fieldorder->line_size[plane] = av_image_get_linesize( - inlink->format, - inlink->w, - plane); + s->line_size[plane] = av_image_get_linesize(inlink->format, inlink->w, + plane); } return 0; |