don't use doc comments for non-docs change some char* into char[]

Original commit message from CVS:
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio):
* gst/festival/gstfestival.c: (socket_receive_file_to_buff):
* gst/vbidec/vbidata.c:
* gst/vbidec/vbidata.h:
* gst/vbidec/vbiscreen.c:
* sys/dxr3/ac3_padder.c:
don't use doc comments for non-docs
change some char* into char[]
This commit is contained in:
Stefan Kost 2005-12-16 21:55:18 +00:00
parent 16c5bb7972
commit b6c94f0d0b
8 changed files with 25 additions and 14 deletions

View file

@ -1,3 +1,14 @@
2005-12-16 Stefan Kost <ensonic@users.sf.net>
* ext/artsd/gstartsdsink.c: (gst_artsdsink_open_audio):
* gst/festival/gstfestival.c: (socket_receive_file_to_buff):
* gst/vbidec/vbidata.c:
* gst/vbidec/vbidata.h:
* gst/vbidec/vbiscreen.c:
* sys/dxr3/ac3_padder.c:
don't use doc comments for non-docs
change some char* into char[]
2005-12-16 Julien MOUTTE <julien@moutte.net> 2005-12-16 Julien MOUTTE <julien@moutte.net>
* ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers), * ext/directfb/dfbvideosink.c: (gst_dfbvideosink_enum_layers),

2
common

@ -1 +1 @@
Subproject commit 4edc214072fe07d2aade96bc336493425654d7b4 Subproject commit d1911d4b3d6267f9cd9dfb68fcef2afe4d098092

View file

@ -282,7 +282,7 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
static gboolean gst_artsdsink_open_audio (GstArtsdsink * sink) static gboolean gst_artsdsink_open_audio (GstArtsdsink * sink)
{ {
const char *connname = "gstreamer"; const char connname[] = "gstreamer";
int errcode; int errcode;
/* Name used by aRtsd for this connection. */ /* Name used by aRtsd for this connection. */

View file

@ -340,7 +340,7 @@ socket_receive_file_to_buff (int fd, int *size)
/* Festival key stuff technique, but long winded I know, sorry */ /* Festival key stuff technique, but long winded I know, sorry */
/* but will receive any file without closeing the stream or */ /* but will receive any file without closeing the stream or */
/* using OOB data */ /* using OOB data */
static const char *file_stuff_key = "ft_StUfF_key"; /* must == Festival's key */ static const char file_stuff_key[] = "ft_StUfF_key"; /* must == Festival's key */
char *buff; char *buff;
int bufflen; int bufflen;
int n, k, i; int n, k, i;

View file

@ -95,22 +95,22 @@ struct vbidata_s
/* this is NOT exactly right */ /* this is NOT exactly right */
//static char *ccode = " !\"#$%&'()\0341+,-./0123456789:;<=>?@" //static char ccode[] = " !\"#$%&'()\0341+,-./0123456789:;<=>?@"
static char *ccode = " !\"#$%&'()a+,-./0123456789:;<=>?@" static char ccode[] = " !\"#$%&'()a+,-./0123456789:;<=>?@"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ" "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
// "abcdefghijklmnopqrstuvwxyz" // "abcdefghijklmnopqrstuvwxyz"
// "[\0351]\0355\0363\0372abcdefghijklmnopqr" // "[\0351]\0355\0363\0372abcdefghijklmnopqr"
"[e]iouabcdefghijklmnopqr" "[e]iouabcdefghijklmnopqr"
// "stuvwxyz\0347\0367\0245\0244\0240"; // "stuvwxyz\0347\0367\0245\0244\0240";
"stuvwxyzcoNn "; "stuvwxyzcoNn ";
static char *wccode = "\0256\0260\0275\0277T\0242\0243#\0340 " static char wccode[] = "\0256\0260\0275\0277T\0242\0243#\0340 "
"\0350\0354\0362\0371"; "\0350\0354\0362\0371";
static char *extcode1 = "\0301\0311\0323\0332\0334\0374" static char extcode1[] = "\0301\0311\0323\0332\0334\0374"
"`\0241*'-\0251S*\"\"\0300\0302" "`\0241*'-\0251S*\"\"\0300\0302"
"\0307\0310\0312\0313\0353\0316\0317\0357" "\0324\0331\0371\0333\0253\0273"; "\0307\0310\0312\0313\0353\0316\0317\0357" "\0324\0331\0371\0333\0253\0273";
static char *extcode2 = "\0303\0343\0315\0314\0354\0322\0362\0325" static char extcode2[] = "\0303\0343\0315\0314\0354\0322\0362\0325"
"{}\\^_|~\0304\0344\0326\0366\0337\0245\0244|" "\0305\0345\0330\0370++++"; "{}\\^_|~\0304\0344\0326\0366\0337\0245\0244|" "\0305\0345\0330\0370++++";
int int

View file

@ -1,4 +1,4 @@
/** /*
* Copyright (c) 2002 Billy Biggs <vektor@dumbterm.net>. * Copyright (c) 2002 Billy Biggs <vektor@dumbterm.net>.
* Copyright (c) 2002 Doug Bell <drbell@users.sourceforge.net> * Copyright (c) 2002 Doug Bell <drbell@users.sourceforge.net>
* *

View file

@ -1,4 +1,4 @@
/** /*
* Copyright (c) 2002 Billy Biggs <vektor@dumbterm.net>. * Copyright (c) 2002 Billy Biggs <vektor@dumbterm.net>.
* Copyright (c) 2002 Doug Bell <drbell@users.sourceforge.net>. * Copyright (c) 2002 Doug Bell <drbell@users.sourceforge.net>.
* *

View file

@ -112,10 +112,10 @@ ac3p_init (ac3_padder * padder)
/** /**
* ac3_push_data: * ac3_push_data:
* @padder The padder structure. * @padder: The padder structure.
* @data A pointer to a buffer with new data to parse. This should * @data: A pointer to a buffer with new data to parse. This should
* correspond to a new piece of a stream containing raw AC3 data. * correspond to a new piece of a stream containing raw AC3 data.
* @size The number of available bytes in the buffer. * @size: The number of available bytes in the buffer.
* *
* Pushes a new buffer of data to be parsed by the ac3 padder. The * Pushes a new buffer of data to be parsed by the ac3 padder. The
* ac3_parse() function will actually parse the data and report when * ac3_parse() function will actually parse the data and report when
@ -133,7 +133,7 @@ ac3p_push_data (ac3_padder * padder, guchar * data, guint size)
/** /**
* ac3p_parse: * ac3p_parse:
* @padder The padder structure. * @padder: The padder structure.
* *
* Parses the bytes already pushed into the padder structure (see * Parses the bytes already pushed into the padder structure (see
* ac3p_push_data()) and returns an event value depending on the * ac3p_push_data()) and returns an event value depending on the