comparison opt.c @ 1026:580d47a2f015 libavutil

Simplify include, since opt.c is now in libavutil there is no need to use the library path prefix for eval.h.
author stefano
date Mon, 27 Sep 2010 10:34:03 +0000
parents 0ece1ad81f21
children 5dbb12a37c3d
comparison
equal deleted inserted replaced
1025:0ece1ad81f21 1026:580d47a2f015
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27 27
28 #include "avutil.h" 28 #include "avutil.h"
29 #include "opt.h" 29 #include "opt.h"
30 #include "libavutil/eval.h" 30 #include "eval.h"
31 31
32 //FIXME order them and do a bin search 32 //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) 33 const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags)
34 { 34 {
35 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass 35 AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass