diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-14 23:20:41 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-14 23:20:41 +0000 |
commit | 87960e43ea268d999cbc3ed5a589f660fb3e3192 (patch) | |
tree | 48a676a58e4355eee64d3f14ea205d793809a323 /ext/mplex/gstmplexoutputstream.cc | |
parent | 7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2 (diff) | |
download | gst-plugins-bad-87960e43ea268d999cbc3ed5a589f660fb3e3192.tar.gz gst-plugins-bad-87960e43ea268d999cbc3ed5a589f660fb3e3192.tar.bz2 gst-plugins-bad-87960e43ea268d999cbc3ed5a589f660fb3e3192.zip |
gst-indent c++ files
Original commit message from CVS:
gst-indent c++ files
Diffstat (limited to 'ext/mplex/gstmplexoutputstream.cc')
-rw-r--r-- | ext/mplex/gstmplexoutputstream.cc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/ext/mplex/gstmplexoutputstream.cc b/ext/mplex/gstmplexoutputstream.cc index c0a2976d..206c13ec 100644 --- a/ext/mplex/gstmplexoutputstream.cc +++ b/ext/mplex/gstmplexoutputstream.cc @@ -31,9 +31,8 @@ * Class init functions. */ -GstMplexOutputStream::GstMplexOutputStream (GstElement *_element, - GstPad *_pad) : - OutputStream () +GstMplexOutputStream::GstMplexOutputStream (GstElement * _element, GstPad * _pad): +OutputStream () { element = _element; pad = _pad; @@ -63,8 +62,7 @@ GstMplexOutputStream::Close (void) * Get size of current segment. */ -off_t -GstMplexOutputStream::SegmentSize (void) +off_t GstMplexOutputStream::SegmentSize (void) { return size; } @@ -88,8 +86,7 @@ GstMplexOutputStream::NextSegment (void) */ void -GstMplexOutputStream::Write (guint8 *data, - guint len) +GstMplexOutputStream::Write (guint8 * data, guint len) { GstBuffer *buf; |