Avoid #if inside macro arguments

Visual Studio doesn't support it.

Change-Id: Ie7bd21e6d9a8a30b7b89e9fca6b82dd2aa406a89
This commit is contained in:
Sebastien Alaiwan 2017-06-08 22:10:43 +02:00 коммит произвёл James Zern
Родитель cc54efdde8
Коммит fadc7cbc23
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -638,10 +638,8 @@ struct stream_config {
int arg_ctrls[ARG_CTRL_CNT_MAX][2];
int arg_ctrl_cnt;
int write_webm;
#if CONFIG_HIGHBITDEPTH
// whether to use 16bit internal buffers
int use_16bit_internal;
#endif
};
struct stream_state {
@ -1802,11 +1800,8 @@ int main(int argc, const char **argv_) {
}
}
if (stream->config.cfg.g_profile > 1) {
#if CONFIG_HIGHBITDEPTH
if (!CONFIG_HIGHBITDEPTH) fatal("Unsupported profile.");
stream->config.use_16bit_internal = 1;
#else
fatal("Unsupported profile.");
#endif
}
if (profile_updated && !global.quiet) {
fprintf(stderr,