comparison opt.c @ 2880:4d91f38477ee libavcodec

dont include opt.h in avcodec.h
author michael
date Mon, 12 Sep 2005 18:24:48 +0000
parents b447caeb6978
children 771fae923356
comparison
equal deleted inserted replaced
2879:d0b61801ea47 2880:4d91f38477ee
23 * AVOptions 23 * AVOptions
24 * @author Michael Niedermayer <michaelni@gmx.at> 24 * @author Michael Niedermayer <michaelni@gmx.at>
25 */ 25 */
26 26
27 #include "avcodec.h" 27 #include "avcodec.h"
28 #include "opt.h"
28 29
29 static double av_parse_num(const char *name, char **tail){ 30 static double av_parse_num(const char *name, char **tail){
30 double d; 31 double d;
31 d= strtod(name, tail); 32 d= strtod(name, tail);
32 if(*tail>name && (**tail=='/' || **tail==':')) 33 if(*tail>name && (**tail=='/' || **tail==':'))