-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Am 2015-02-18 um 11:53 schrieb Hugh McMaster:
- if (ii.dwFlags & VIDCF_QUALITY) mywprintf(sspc_fmt, VIDCF_QUALITY_W);
- if (ii.dwFlags & VIDCF_QUALITY) mywprintf(s_fmt, VIDCF_QUALITY_W); if (ii.dwFlags & VIDCF_CRUNCH) mywprintf(sspc_fmt, VIDCF_CRUNCH_W);
I don't think this works. If VIDCF_QUALITY is not set, but any other flag is, it will now print a leading space.
On Wed, 18 Feb 2015 13:32:20 +0100, Stefan Dösinger wrote:
Am 2015-02-18 um 11:53 schrieb Hugh McMaster:
- if (ii.dwFlags & VIDCF_QUALITY) mywprintf(sspc_fmt, VIDCF_QUALITY_W);
- if (ii.dwFlags & VIDCF_QUALITY) mywprintf(s_fmt, VIDCF_QUALITY_W); if (ii.dwFlags & VIDCF_CRUNCH) mywprintf(sspc_fmt, VIDCF_CRUNCH_W);
I don't think this works. If VIDCF_QUALITY is not set, but any other flag is, it will now print a leading space.
Good point. I'll rethink this and resend.