summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_fieldorder.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-16 15:21:31 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-16 15:21:31 +0200
commite55092b12b572e53b3970ca261e9205ae4cabcb0 (patch)
tree3806ddf57afcebf59653e215b022c81172de6df1 /libavfilter/vf_fieldorder.c
parentafec02afe7e8d001c84b066383e0d72b79c25225 (diff)
parentf6b6d6ac42c0ee427fcd3fae4c398b2103b491b8 (diff)
downloadffmpeg-streaming-e55092b12b572e53b3970ca261e9205ae4cabcb0.zip
ffmpeg-streaming-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.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c
index 46964fd..3a19500 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;
OpenPOWER on IntegriCloud