Browse Source

adds doxygen docs to av_opt_set_defaults. Patch by Takis

Originally committed as revision 6226 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris Guillaume Poirier 19 years ago
parent
commit
493f7857de
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/opt.c

+ 6
- 0
libavcodec/opt.c View File

@@ -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;


Loading…
Cancel
Save