summaryrefslogtreecommitdiff
path: root/libavfilter/vf_extractplanes.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-07-01 17:09:19 +0000
committerPaul B Mahol <onemda@gmail.com>2015-07-01 17:19:52 +0000
commitfc40cdbf49047c6aadf2ff197ddab2ab7110e94c (patch)
treea29568d59a43187f2731b392f856ae10df054c21 /libavfilter/vf_extractplanes.c
parentbe35b8b9a9fbb9ee69c4f14791f0caa808bc2b32 (diff)
downloadffmpeg-fc40cdbf49047c6aadf2ff197ddab2ab7110e94c.tar.gz
avfilter/vf_extractplanes: rename misleading variable
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_extractplanes.c')
-rw-r--r--libavfilter/vf_extractplanes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_extractplanes.c b/libavfilter/vf_extractplanes.c
index 731d631ead..395a089b6f 100644
--- a/libavfilter/vf_extractplanes.c
+++ b/libavfilter/vf_extractplanes.c
@@ -39,7 +39,7 @@ typedef struct {
int requested_planes;
int map[4];
int linesize[4];
- int is_packed_rgb;
+ int is_packed;
int depth;
int step;
} ExtractPlanesContext;
@@ -154,7 +154,7 @@ static int config_input(AVFilterLink *inlink)
s->depth = (desc->comp[0].depth_minus1 + 1) >> 3;
s->step = av_get_padded_bits_per_pixel(desc) >> 3;
- s->is_packed_rgb = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
+ s->is_packed = !(desc->flags & AV_PIX_FMT_FLAG_PLANAR);
if (desc->flags & AV_PIX_FMT_FLAG_RGB) {
ff_fill_rgba_map(rgba_map, inlink->format);
for (i = 0; i < 4; i++)
@@ -226,7 +226,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
}
av_frame_copy_props(out, frame);
- if (s->is_packed_rgb) {
+ if (s->is_packed) {
extract_from_packed(out->data[0], out->linesize[0],
frame->data[0], frame->linesize[0],
outlink->w, outlink->h,