comparison opt.c @ 3786:616a81d04758 libavcodec

Pull out the ff_eval* from the mpegvideo header, as it doesn't belong there and put it in a separate file.
author takis
date Fri, 29 Sep 2006 19:33:04 +0000
parents 67a63fa775a7
children 484d719a2028
comparison
equal deleted inserted replaced
3785:5b987af96509 3786:616a81d04758
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 #include "opt.h"
29 #include "mpegvideo.h" 29 #include "eval.h"
30 30
31 //FIXME order them and do a bin search 31 //FIXME order them and do a bin search
32 static AVOption *find_opt(void *v, const char *name, const char *unit){ 32 static AVOption *find_opt(void *v, const char *name, const char *unit){
33 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass 33 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass
34 AVOption *o= c->option; 34 AVOption *o= c->option;