[FFmpeg-soc] [soc]: r1873 - in libavfilter: avfilter.c avfiltergraph.c avfiltergraphdesc.c avfiltergraphfile.c vf_crop.c vf_fifo.c vf_format.c vf_fps.c vf_hflip.c vf_negate.c vf_overlay.c vf_rotate.c vf_scale.c vf_setpts.c vf_slicify.c vf_transpose.c vf_vflip.c
vitor
subversion at mplayerhq.hu
Sat Feb 9 21:02:29 CET 2008
Author: vitor
Date: Sat Feb 9 21:02:29 2008
New Revision: 1873
Log:
Nits: more punctuation and capitalization
Modified:
libavfilter/avfilter.c
libavfilter/avfiltergraph.c
libavfilter/avfiltergraphdesc.c
libavfilter/avfiltergraphfile.c
libavfilter/vf_crop.c
libavfilter/vf_fifo.c
libavfilter/vf_format.c
libavfilter/vf_fps.c
libavfilter/vf_hflip.c
libavfilter/vf_negate.c
libavfilter/vf_overlay.c
libavfilter/vf_rotate.c
libavfilter/vf_scale.c
libavfilter/vf_setpts.c
libavfilter/vf_slicify.c
libavfilter/vf_transpose.c
libavfilter/vf_vflip.c
Modified: libavfilter/avfilter.c
==============================================================================
--- libavfilter/avfilter.c (original)
+++ libavfilter/avfilter.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Filter layer
+ * filter layer
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Filter graphs
+ * filter graphs
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
@@ -51,7 +51,7 @@ static int link_init(AVFilterContext *ct
/**
* Given the link between the dummy filter and an internal filter whose input
* is being exported outside the graph, this returns the externally visible
- * link
+ * link.
*/
static inline AVFilterLink *get_extern_input_link(AVFilterLink *link)
{
@@ -99,7 +99,7 @@ static int link_in_config_props(AVFilter
/**
* Given the link between the dummy filter and an internal filter whose input
* is being exported outside the graph, this returns the externally visible
- * link
+ * link.
*/
static inline AVFilterLink *get_extern_output_link(AVFilterLink *link)
{
@@ -485,7 +485,7 @@ int avfilter_graph_config_formats(AVFilt
{
GraphContext *graph = graphctx->priv;
- /* Find supported formats from sub-filters, and merge along links */
+ /* find supported formats from sub-filters, and merge along links */
if(query_formats(graphctx))
return -1;
Modified: libavfilter/avfiltergraphdesc.c
==============================================================================
--- libavfilter/avfiltergraphdesc.c (original)
+++ libavfilter/avfiltergraphdesc.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Filter graph descriptions
+ * filter graph descriptions
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/avfiltergraphfile.c
==============================================================================
--- libavfilter/avfiltergraphfile.c (original)
+++ libavfilter/avfiltergraphfile.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Loading filter graph descriptions from files
+ * loading filter graph descriptions from files
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_crop.c
==============================================================================
--- libavfilter/vf_crop.c (original)
+++ libavfilter/vf_crop.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video crop filter
+ * video crop filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_fifo.c
==============================================================================
--- libavfilter/vf_fifo.c (original)
+++ libavfilter/vf_fifo.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Frame FIFO
+ * frame FIFO
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_format.c
==============================================================================
--- libavfilter/vf_format.c (original)
+++ libavfilter/vf_format.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video (no)format filter
+ * video (no)format filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_fps.c
==============================================================================
--- libavfilter/vf_fps.c (original)
+++ libavfilter/vf_fps.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video framerate modification filter
+ * video framerate modification filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
@@ -93,7 +93,7 @@ static int request_frame(AVFilterLink *l
if (fps->videoend)
return -1;
- if (!fps->has_frame) // Support for filtering without poll_frame usage
+ if (!fps->has_frame) // support for filtering without poll_frame usage
while(!fps->pic || fps->pic->pts < fps->pts)
if(avfilter_request_frame(link->src->inputs[0]))
return -1;
Modified: libavfilter/vf_hflip.c
==============================================================================
--- libavfilter/vf_hflip.c (original)
+++ libavfilter/vf_hflip.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Horizontal flip filter
+ * horizontal flip filter
* Copyright (c) 2007 Benoit Fouet
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_negate.c
==============================================================================
--- libavfilter/vf_negate.c (original)
+++ libavfilter/vf_negate.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video negative filter
+ * video negative filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_overlay.c
==============================================================================
--- libavfilter/vf_overlay.c (original)
+++ libavfilter/vf_overlay.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Filter to overlay one video on top of another
+ * filter to overlay one video on top of another
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_rotate.c
==============================================================================
--- libavfilter/vf_rotate.c (original)
+++ libavfilter/vf_rotate.c Sat Feb 9 21:02:29 2008
@@ -23,9 +23,9 @@
* @file vf_rotate.c
* rotation filter
*
- * @todo Copy code from rotozoom.c to remove use of floating-point
- * @todo Handle packed pixel formats
- * @todo Make backcolor configurable
+ * @todo copy code from rotozoom.c to remove use of floating-point
+ * @todo handle packed pixel formats
+ * @todo make backcolor configurable
*/
#include <math.h>
@@ -35,7 +35,7 @@ typedef struct
{
int ang;
int hsub, vsub;
- float transx, transy; ///< How much to translate (in pixels)
+ float transx, transy; ///< how much to translate (in pixels)
float sinx, cosx;
int output_h, output_w;
int backcolor[3];
Modified: libavfilter/vf_scale.c
==============================================================================
--- libavfilter/vf_scale.c (original)
+++ libavfilter/vf_scale.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video scaling/colorspace conversion
+ * video scaling/colorspace conversion
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_setpts.c
==============================================================================
--- libavfilter/vf_setpts.c (original)
+++ libavfilter/vf_setpts.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video presentation timestamp (PTS) modification filter
+ * video presentation timestamp (PTS) modification filter
* copyright (c) 2008 Victor Paesa
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_slicify.c
==============================================================================
--- libavfilter/vf_slicify.c (original)
+++ libavfilter/vf_slicify.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Video slicing filter
+ * video slicing filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
Modified: libavfilter/vf_transpose.c
==============================================================================
--- libavfilter/vf_transpose.c (original)
+++ libavfilter/vf_transpose.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Transpose (line => column) video filter
+ * transpose (line => column) video filter
* Copyright (c) 2008 Vitor Sessak
*
* This file is part of FFmpeg.
@@ -23,7 +23,7 @@
* @file vf_transpose.c
* Transposition filter
*
- * @todo Handle packed pixel formats
+ * @todo handle packed pixel formats
*/
#include "avfilter.h"
Modified: libavfilter/vf_vflip.c
==============================================================================
--- libavfilter/vf_vflip.c (original)
+++ libavfilter/vf_vflip.c Sat Feb 9 21:02:29 2008
@@ -1,5 +1,5 @@
/*
- * Vertical flip filter
+ * vertical flip filter
* copyright (c) 2007 Bobby Bingham
*
* This file is part of FFmpeg.
More information about the FFmpeg-soc
mailing list