From 00dc2859f050133bf273236bb1b45eb477a1e2ed Mon Sep 17 00:00:00 2001 From: Lukasz Marek Date: Sat, 13 Dec 2014 19:54:39 +0100 Subject: cmdutils: use macros for device test Signed-off-by: Lukasz Marek --- cmdutils.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index b68dae9753..4e0a406fde 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -1213,12 +1213,7 @@ static int is_device(const AVClass *avclass) { if (!avclass) return 0; - return avclass->category == AV_CLASS_CATEGORY_DEVICE_VIDEO_OUTPUT || - avclass->category == AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT || - avclass->category == AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT || - avclass->category == AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT || - avclass->category == AV_CLASS_CATEGORY_DEVICE_OUTPUT || - avclass->category == AV_CLASS_CATEGORY_DEVICE_INPUT; + return AV_IS_INPUT_DEVICE(avclass->category) || AV_IS_OUTPUT_DEVICE(avclass->category); } static int show_formats_devices(void *optctx, const char *opt, const char *arg, int device_only) -- cgit v1.2.3