comparison opt.c @ 2875:1021498a5159 libavcodec

missing include noticed by g0th
author michael
date Sun, 11 Sep 2005 14:39:33 +0000
parents b6def74f5811
children 8026edf6a349
comparison
equal deleted inserted replaced
2874:b6def74f5811 2875:1021498a5159
22 * @file opt.c 22 * @file opt.c
23 * AVOptions 23 * AVOptions
24 * @author Michael Niedermayer <michaelni@gmx.at> 24 * @author Michael Niedermayer <michaelni@gmx.at>
25 */ 25 */
26 26
27 #include <stdio.h> //for FILE *
27 #include "avcodec.h" 28 #include "avcodec.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);