[Ffmpeg-cvslog] r8279 - in trunk/libavcodec: opt.c opt.h
michael
subversion
Wed Mar 7 03:03:44 CET 2007
Author: michael
Date: Wed Mar 7 03:03:44 2007
New Revision: 8279
Modified:
trunk/libavcodec/opt.c
trunk/libavcodec/opt.h
Log:
make av_find_opt() available to the public and add a mask+flags parameter to search for specific AVOptions
Modified: trunk/libavcodec/opt.c
==============================================================================
--- trunk/libavcodec/opt.c (original)
+++ trunk/libavcodec/opt.c Wed Mar 7 03:03:44 2007
@@ -31,12 +31,12 @@
#include "eval.h"
//FIXME order them and do a bin search
-static const AVOption *find_opt(void *v, const char *name, const char *unit){
+const AVOption *av_find_opt(void *v, const char *name, const char *unit, int mask, int flags){
AVClass *c= *(AVClass**)v; //FIXME silly way of storing AVClass
const AVOption *o= c->option;
for(;o && o->name; o++){
- if(!strcmp(o->name, name) && (!unit || !strcmp(o->unit, unit)) )
+ if(!strcmp(o->name, name) && (!unit || !strcmp(o->unit, unit)) && (o->flags & mask) == flags )
return o;
}
return NULL;
@@ -49,7 +49,7 @@ const AVOption *av_next_option(void *obj
}
static const AVOption *av_set_number(void *obj, const char *name, double num, int den, int64_t intnum){
- const AVOption *o= find_opt(obj, name, NULL);
+ const AVOption *o= av_find_opt(obj, name, NULL, 0, 0);
void *dst;
if(!o || o->offset<=0)
return NULL;
@@ -109,7 +109,7 @@ static const char *const_names[]={
};
const AVOption *av_set_string(void *obj, const char *name, const char *val){
- const AVOption *o= find_opt(obj, name, NULL);
+ const AVOption *o= av_find_opt(obj, name, NULL, 0, 0);
if(o && o->offset==0 && o->type == FF_OPT_TYPE_CONST && o->unit){
return set_all_opt(obj, o->unit, o->default_val);
}
@@ -133,7 +133,7 @@ const AVOption *av_set_string(void *obj,
d = ff_eval2(buf, const_values, const_names, NULL, NULL, NULL, NULL, NULL, &error);
if(isnan(d)) {
- const AVOption *o_named= find_opt(obj, buf, o->unit);
+ const AVOption *o_named= av_find_opt(obj, buf, o->unit, 0, 0);
if(o_named && o_named->type == FF_OPT_TYPE_CONST)
d= o_named->default_val;
else if(!strcmp(buf, "default")) d= o->default_val;
@@ -180,7 +180,7 @@ const AVOption *av_set_int(void *obj, co
* @param buf_len allocated length in bytes of buf
*/
const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len){
- const AVOption *o= find_opt(obj, name, NULL);
+ const AVOption *o= av_find_opt(obj, name, NULL, 0, 0);
void *dst;
if(!o || o->offset<=0)
return NULL;
@@ -206,7 +206,7 @@ const char *av_get_string(void *obj, con
}
static int av_get_number(void *obj, const char *name, const AVOption **o_out, double *num, int *den, int64_t *intnum){
- const AVOption *o= find_opt(obj, name, NULL);
+ const AVOption *o= av_find_opt(obj, name, NULL, 0, 0);
void *dst;
if(!o || o->offset<=0)
goto error;
Modified: trunk/libavcodec/opt.h
==============================================================================
--- trunk/libavcodec/opt.h (original)
+++ trunk/libavcodec/opt.h Wed Mar 7 03:03:44 2007
@@ -68,6 +68,7 @@ typedef struct AVOption {
} AVOption;
+const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags);
const AVOption *av_set_string(void *obj, const char *name, const char *val);
const AVOption *av_set_double(void *obj, const char *name, double n);
const AVOption *av_set_q(void *obj, const char *name, AVRational n);
More information about the ffmpeg-cvslog
mailing list