mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
swscale/utils: Fix indentation
Forgotten after c1eb3e7fec
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
b2d1a25816
commit
1ff9c07fa6
@ -1307,16 +1307,16 @@ static av_cold int sws_init_single_context(SwsContext *c, SwsFilter *srcFilter,
|
|||||||
|
|
||||||
if (!(unscaled && sws_isSupportedEndiannessConversion(srcFormat) &&
|
if (!(unscaled && sws_isSupportedEndiannessConversion(srcFormat) &&
|
||||||
av_pix_fmt_swap_endianness(srcFormat) == dstFormat)) {
|
av_pix_fmt_swap_endianness(srcFormat) == dstFormat)) {
|
||||||
if (!sws_isSupportedInput(srcFormat)) {
|
if (!sws_isSupportedInput(srcFormat)) {
|
||||||
av_log(c, AV_LOG_ERROR, "%s is not supported as input pixel format\n",
|
av_log(c, AV_LOG_ERROR, "%s is not supported as input pixel format\n",
|
||||||
av_get_pix_fmt_name(srcFormat));
|
av_get_pix_fmt_name(srcFormat));
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
if (!sws_isSupportedOutput(dstFormat)) {
|
if (!sws_isSupportedOutput(dstFormat)) {
|
||||||
av_log(c, AV_LOG_ERROR, "%s is not supported as output pixel format\n",
|
av_log(c, AV_LOG_ERROR, "%s is not supported as output pixel format\n",
|
||||||
av_get_pix_fmt_name(dstFormat));
|
av_get_pix_fmt_name(dstFormat));
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
av_assert2(desc_src && desc_dst);
|
av_assert2(desc_src && desc_dst);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user