Commit f0c64d0d authored by Ramiro Polla's avatar Ramiro Polla Committed by Stefano Sabatini

dshow: indent

Signed-off-by: 's avatarStefano Sabatini <stefano.sabatini-lala@poste.it>
parent 1c282f96
...@@ -265,10 +265,10 @@ dshow_cycle_devices(AVFormatContext *avctx, ICreateDevEnum *devenum, ...@@ -265,10 +265,10 @@ dshow_cycle_devices(AVFormatContext *avctx, ICreateDevEnum *devenum,
buf = dup_wchar_to_utf8(var.bstrVal); buf = dup_wchar_to_utf8(var.bstrVal);
if (pfilter) { if (pfilter) {
if (strcmp(device_name, buf)) if (strcmp(device_name, buf))
goto fail1; goto fail1;
IMoniker_BindToObject(m, 0, 0, &IID_IBaseFilter, (void *) &device_filter); IMoniker_BindToObject(m, 0, 0, &IID_IBaseFilter, (void *) &device_filter);
} else { } else {
av_log(avctx, AV_LOG_INFO, " \"%s\"\n", buf); av_log(avctx, AV_LOG_INFO, " \"%s\"\n", buf);
} }
...@@ -284,12 +284,12 @@ fail1: ...@@ -284,12 +284,12 @@ fail1:
IEnumMoniker_Release(classenum); IEnumMoniker_Release(classenum);
if (pfilter) { if (pfilter) {
if (!device_filter) { if (!device_filter) {
av_log(avctx, AV_LOG_ERROR, "Could not find %s device.\n", av_log(avctx, AV_LOG_ERROR, "Could not find %s device.\n",
devtypename); devtypename);
return AVERROR(EIO); return AVERROR(EIO);
} }
*pfilter = device_filter; *pfilter = device_filter;
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment