Remove calls to deprecated av_set_string2() with calls to

av_set_string3().

Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2008-12-19 22:29:30 +00:00
parent aac8b76983
commit f16dd7e65a
3 changed files with 8 additions and 7 deletions

View File

@ -207,7 +207,10 @@ const AVOption *av_set_string2(void *obj, const char *name, const char *val, int
}
const AVOption *av_set_string(void *obj, const char *name, const char *val){
return av_set_string2(obj, name, val, 0);
const AVOption *o;
if (av_set_string3(obj, name, val, 0, &o) < 0)
return NULL;
return o;
}
const AVOption *av_set_double(void *obj, const char *name, double n){