diff options
author | Stefan Holst <holstsn@users.sourceforge.net> | 2003-06-19 19:46:19 +0000 |
---|---|---|
committer | Stefan Holst <holstsn@users.sourceforge.net> | 2003-06-19 19:46:19 +0000 |
commit | 97e449a0ecba2b981bd9eb52a368d96bfeb7c0c4 (patch) | |
tree | 87e5dc69f29f6f5b5193a56f69702bb90fd28087 | |
parent | 80d90eb2a7e653e10716d479520fbc28a1405a5a (diff) | |
download | xine-lib-97e449a0ecba2b981bd9eb52a368d96bfeb7c0c4.tar.gz xine-lib-97e449a0ecba2b981bd9eb52a368d96bfeb7c0c4.tar.bz2 |
fixed:
- comments in input_v4l
- a spare " in theora decoder
CVS patchset: 5073
CVS date: 2003/06/19 19:46:19
-rw-r--r-- | src/input/input_v4l.c | 4 | ||||
-rw-r--r-- | src/libtheora/xine_decoder.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index 97cf62093..a67069606 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -1385,7 +1385,7 @@ static buf_element_t *v4l_plugin_read_block (input_plugin_t *this_gen, buf->pts = this->pts_aud_start; /* Save start pts */ - this->pts_aud_start = get_time(); //this->stream->xine->clock->get_current_time(this->stream->xine->clock); + this->pts_aud_start = get_time(); /* this->stream->xine->clock->get_current_time(this->stream->xine->clock); */ if (!buf) /* Skip first sample as we don't have a good pts for this one */ @@ -1450,7 +1450,7 @@ static uint32_t v4l_plugin_get_capabilities (input_plugin_t *this_gen) if (this->audio_only) return 0x10; else - return 0; // 0x10: Has audio only. + return 0; /* 0x10: Has audio only. */ } /** diff --git a/src/libtheora/xine_decoder.c b/src/libtheora/xine_decoder.c index 10ad3a776..98ce87876 100644 --- a/src/libtheora/xine_decoder.c +++ b/src/libtheora/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.7 2003/06/19 15:31:04 heinchen Exp $ + * $Id: xine_decoder.c,v 1.8 2003/06/19 19:46:20 holstsn Exp $ * * xine decoder plugin using libtheora * @@ -280,7 +280,7 @@ static video_decoder_t *theora_open_plugin (video_decoder_class_t *class_gen, xi printf ("development. If the stream could not be played back go to\n"); printf ("http://xine.sourceforge.net and get the latest release of xine.\n"); printf ("This release will play back streams which have been encoded with\n"); - printf ("libtheora-alpha2."\n"); + printf ("libtheora-alpha2.\n"); this = (theora_decoder_t *) malloc (sizeof (theora_decoder_t)); memset(this, 0, sizeof (theora_decoder_t)); |