Commit 4f82b4b0 authored by gpoirier's avatar gpoirier

adds doxygen docs to av_opt_set_defaults. Patch by Takis


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6226 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 18c54769
......@@ -300,6 +300,12 @@ int av_opt_show(void *obj, void *av_log_obj){
return 0;
}
/** Set the values of the AVCodecContext or AVFormatContext structure.
* They are set to the defaults specified in the according AVOption options
* array default_val field.
*
* @param s AVCodecContext or AVFormatContext for which the defaults will be set
*/
void av_opt_set_defaults(void *s)
{
AVOption *opt = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment