Commit 01b997b9 authored by Ramiro Polla's avatar Ramiro Polla Committed by Stefano Sabatini

dshow: indent

Signed-off-by: 's avatarStefano Sabatini <stefasab@gmail.com>
parent 0883a7fa
...@@ -433,7 +433,7 @@ end: ...@@ -433,7 +433,7 @@ end:
if (caps) if (caps)
av_free(caps); av_free(caps);
if (pformat_set) if (pformat_set)
*pformat_set = format_set; *pformat_set = format_set;
} }
/** /**
...@@ -528,16 +528,16 @@ next: ...@@ -528,16 +528,16 @@ next:
IEnumPins_Release(pins); IEnumPins_Release(pins);
if (ppin) { if (ppin) {
if (set_format && !format_set) { if (set_format && !format_set) {
av_log(avctx, AV_LOG_ERROR, "Could not set %s options\n", devtypename); av_log(avctx, AV_LOG_ERROR, "Could not set %s options\n", devtypename);
return AVERROR(EIO); return AVERROR(EIO);
} }
if (!device_pin) { if (!device_pin) {
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"Could not find output pin from %s capture device.\n", devtypename); "Could not find output pin from %s capture device.\n", devtypename);
return AVERROR(EIO); return AVERROR(EIO);
} }
*ppin = device_pin; *ppin = device_pin;
} }
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