diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2024-05-27 00:50:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2024-05-28 03:48:04 +0200 |
commit | c4004605b2fa6e2ecbd1cfc2a1da382e4f5237a5 (patch) | |
tree | 69ec9a9a0e80a5069d9cc0a47b4792b0b8c1daf5 /libavdevice | |
parent | c841cb45e81ebece26768c820c459b085668a37a (diff) | |
download | ffmpeg-c4004605b2fa6e2ecbd1cfc2a1da382e4f5237a5.tar.gz |
avdevice/dshow: fix badly indented line
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/dshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index 0330d1d0b6..eb98c57b09 100644 --- a/libavdevice/dshow.c +++ b/libavdevice/dshow.c @@ -1370,7 +1370,7 @@ dshow_open_device(AVFormatContext *avctx, ICreateDevEnum *devenum, goto error; } } - if (ctx->device_filter[otherDevType]) { + if (ctx->device_filter[otherDevType]) { // avoid adding add two instances of the same device to the graph, one for video, one for audio // a few devices don't support this (could also do this check earlier to avoid double crossbars, etc. but they seem OK) if (strcmp(device_filter_unique_name, ctx->device_unique_name[otherDevType]) == 0) { |