1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-17 20:28:30 +02:00

Rm duplicated define for OPT_STR.

This commit is contained in:
Robert Leatherwood 2011-04-22 20:10:26 +02:00 committed by Carl Eugen Hoyos
parent a08a59b736
commit 03ac799128

View File

@ -190,15 +190,6 @@ static void check_default_settings(AVCodecContext *avctx)
}
}
#define OPT_STR(opt, param) \
do { \
if (param && x264_param_parse(&x4->params, opt, param) < 0) { \
av_log(avctx, AV_LOG_ERROR, \
"bad value for '%s': '%s'\n", opt, param); \
return -1; \
} \
} while (0); \
#define OPT_STR(opt, param) \
do { \
if (param && x264_param_parse(&x4->params, opt, param) < 0) { \