summaryrefslogtreecommitdiff
path: root/libavfilter/f_select.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-07-30 17:37:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-30 17:37:09 +0200
commit887d8d293fc31c949427f971f37c126b3812b451 (patch)
tree031ee66d72f48736409c5478d54ff938665140c4 /libavfilter/f_select.c
parent7994c1cd760838ca5b92401caa1994bc035d08b5 (diff)
avfilter/f_select: avoid using doubles for equals checks and casts to enums
This might silence some warnings. Issue found from: a8d803a320fb08b3ad5db4fffc79abd401206905 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/f_select.c')
-rw-r--r--libavfilter/f_select.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c
index c7c53b43ed..e6a9857bfc 100644
--- a/libavfilter/f_select.c
+++ b/libavfilter/f_select.c
@@ -342,10 +342,9 @@ static void select_frame(AVFilterContext *ctx, AVFrame *frame)
switch (inlink->type) {
case AVMEDIA_TYPE_VIDEO:
av_log(inlink->dst, AV_LOG_DEBUG, " interlace_type:%c pict_type:%c scene:%f",
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_P ? 'P' :
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_T ? 'T' :
- select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_B ? 'B' : '?',
- av_get_picture_type_char(select->var_values[VAR_PICT_TYPE]),
+ (!frame->interlaced_frame) ? 'P' :
+ frame->top_field_first ? 'T' : 'B',
+ av_get_picture_type_char(frame->pict_type),
select->var_values[VAR_SCENE]);
break;
case AVMEDIA_TYPE_AUDIO: