comparison opts.c @ 1125:0980ae063f4e libavcodec

restoring OS/2 compatibility patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
author michaelni
date Tue, 11 Mar 2003 12:09:13 +0000
parents 64c7c76ed17c
children 300961b1ef4f
comparison
equal deleted inserted replaced
1124:64c7c76ed17c 1125:0980ae063f4e
9 * msmpeg4:bitrate=720000:qmax=16 9 * msmpeg4:bitrate=720000:qmax=16
10 * 10 *
11 */ 11 */
12 12
13 #include "avcodec.h" 13 #include "avcodec.h"
14
15 #ifdef CONFIG_OS2
16 #define strcasecmp(s1,s2) stricmp(s1,s2)
17 #endif
14 18
15 const AVOption avoptions_common[] = { 19 const AVOption avoptions_common[] = {
16 AVOPTION_CODEC_FLAG("bit_exact", "use only bit-exact stuff", flags, CODEC_FLAG_BITEXACT, 0), 20 AVOPTION_CODEC_FLAG("bit_exact", "use only bit-exact stuff", flags, CODEC_FLAG_BITEXACT, 0),
17 AVOPTION_CODEC_FLAG("mm_force", "force mm flags", dsp_mask, FF_MM_FORCE, 0), 21 AVOPTION_CODEC_FLAG("mm_force", "force mm flags", dsp_mask, FF_MM_FORCE, 0),
18 #ifdef HAVE_MMX 22 #ifdef HAVE_MMX