diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2005-12-16 21:55:18 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2005-12-16 21:55:18 +0000 |
commit | b6c94f0d0bd703b2de2ab0a2d091e6a3b09bd3c3 (patch) | |
tree | e64fbe344f04c51a9698d92a9772c28443fbcb8a /sys/dxr3 | |
parent | 16c5bb7972229922980c3de23a664e0b8872ca5a (diff) | |
download | gst-plugins-bad-b6c94f0d0bd703b2de2ab0a2d091e6a3b09bd3c3.tar.gz gst-plugins-bad-b6c94f0d0bd703b2de2ab0a2d091e6a3b09bd3c3.tar.bz2 gst-plugins-bad-b6c94f0d0bd703b2de2ab0a2d091e6a3b09bd3c3.zip |
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[]
Diffstat (limited to 'sys/dxr3')
-rw-r--r-- | sys/dxr3/ac3_padder.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dxr3/ac3_padder.c b/sys/dxr3/ac3_padder.c index c9220f73..e37137ba 100644 --- a/sys/dxr3/ac3_padder.c +++ b/sys/dxr3/ac3_padder.c @@ -112,10 +112,10 @@ ac3p_init (ac3_padder * padder) /** * ac3_push_data: - * @padder The padder structure. - * @data A pointer to a buffer with new data to parse. This should + * @padder: The padder structure. + * @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. - * @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 * 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: - * @padder The padder structure. + * @padder: The padder structure. * * Parses the bytes already pushed into the padder structure (see * ac3p_push_data()) and returns an event value depending on the |