[FFmpeg-cvslog] r16517 - trunk/libavfilter/avfilter.h
stefano
subversion
Sat Jan 10 11:26:05 CET 2009
Author: stefano
Date: Sat Jan 10 11:26:05 2009
New Revision: 16517
Log:
Fix capitalization and missing periods issues.
Modified:
trunk/libavfilter/avfilter.h
Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h Sat Jan 10 10:56:07 2009 (r16516)
+++ trunk/libavfilter/avfilter.h Sat Jan 10 11:26:05 2009 (r16517)
@@ -347,15 +347,15 @@ struct AVFilterPad
int (*config_props)(AVFilterLink *link);
};
-/** Default handler for start_frame() for video inputs */
+/** default handler for start_frame() for video inputs */
void avfilter_default_start_frame(AVFilterLink *link, AVFilterPicRef *picref);
-/** Default handler for end_frame() for video inputs */
+/** default handler for end_frame() for video inputs */
void avfilter_default_end_frame(AVFilterLink *link);
-/** Default handler for config_props() for video outputs */
+/** default handler for config_props() for video outputs */
int avfilter_default_config_output_link(AVFilterLink *link);
-/** Default handler for config_props() for video inputs */
+/** default handler for config_props() for video inputs */
int avfilter_default_config_input_link (AVFilterLink *link);
-/** Default handler for get_video_buffer() for video inputs */
+/** default handler for get_video_buffer() for video inputs */
AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link,
int perms);
/**
@@ -430,7 +430,7 @@ struct AVFilterContext
* destination filters between which this link exists, and the indexes of
* the pads involved. In addition, this link also contains the parameters
* which have been negotiated and agreed upon between the filter, such as
- * image dimensions, format, etc
+ * image dimensions, format, etc.
*/
struct AVFilterLink
{
@@ -491,7 +491,7 @@ int avfilter_link(AVFilterContext *src,
int avfilter_config_links(AVFilterContext *filter);
/**
- * Request a picture buffer with a specific set of permissions
+ * Request a picture buffer with a specific set of permissions.
* @param link the output link to the filter from which the picture will
* be requested
* @param perms the required access permissions
@@ -526,7 +526,7 @@ int avfilter_poll_frame(AVFilterLink *li
void avfilter_start_frame(AVFilterLink *link, AVFilterPicRef *picref);
/**
- * Notify the next filter that the current frame has finished
+ * Notify the next filter that the current frame has finished.
* @param link the output link the frame was sent over
*/
void avfilter_end_frame(AVFilterLink *link);
@@ -614,7 +614,7 @@ void avfilter_insert_pad(unsigned idx, u
AVFilterPad **pads, AVFilterLink ***links,
AVFilterPad *newpad);
-/** insert a new input pad for the filter */
+/** Insert a new input pad for the filter. */
static inline void avfilter_insert_inpad(AVFilterContext *f, unsigned index,
AVFilterPad *p)
{
@@ -622,7 +622,7 @@ static inline void avfilter_insert_inpad
&f->input_pads, &f->inputs, p);
}
-/** insert a new output pad for the filter */
+/** Insert a new output pad for the filter. */
static inline void avfilter_insert_outpad(AVFilterContext *f, unsigned index,
AVFilterPad *p)
{
More information about the ffmpeg-cvslog
mailing list