comparison opt.c @ 8419:6a12ba62978a libavcodec

Include "libavutil/common.h" where we use llrint() in case ffmpeg's own llrint() is to be used.
author andoma
date Sun, 21 Dec 2008 21:53:42 +0000
parents 8903ad65c412
children c5302e0ecf4e
comparison
equal deleted inserted replaced
8418:f75be04312dc 8419:6a12ba62978a
26 */ 26 */
27 27
28 #include "avcodec.h" 28 #include "avcodec.h"
29 #include "opt.h" 29 #include "opt.h"
30 #include "eval.h" 30 #include "eval.h"
31 #include "libavutil/common.h"
31 32
32 //FIXME order them and do a bin search 33 //FIXME order them and do a bin search
33 const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags){ 34 const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags){
34 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass 35 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass
35 const AVOption *o= c->option; 36 const AVOption *o= c->option;