added clarification on mp3 playback sink timing issue

This commit is contained in:
maroy 2005-06-28 08:43:01 +00:00
parent 5fac177524
commit 0e21c32785

View file

@ -22,7 +22,7 @@
Author : $Author: maroy $ Author : $Author: maroy $
Version : $Revision: 1.4 $ Version : $Revision: 1.5 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/gstreamerElements/src/AutoplugTest.cxx,v $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/gstreamerElements/src/AutoplugTest.cxx,v $
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -132,7 +132,7 @@ AutoplugTest :: playFile(const char * audioFile)
gst_element_link(decoder, sink); gst_element_link(decoder, sink);
gst_bin_add_many(GST_BIN(pipeline), source, decoder, sink, NULL); gst_bin_add_many(GST_BIN(pipeline), source, decoder, sink, NULL);
gst_element_set_state(source, GST_STATE_PLAYING); gst_element_set_state(source, GST_STATE_PAUSED);
gst_element_set_state(decoder, GST_STATE_PAUSED); gst_element_set_state(decoder, GST_STATE_PAUSED);
gst_element_set_state(sink, GST_STATE_PAUSED); gst_element_set_state(sink, GST_STATE_PAUSED);
gst_element_set_state(pipeline, GST_STATE_PLAYING); gst_element_set_state(pipeline, GST_STATE_PLAYING);
@ -140,8 +140,8 @@ AutoplugTest :: playFile(const char * audioFile)
// iterate until playTo is reached // iterate until playTo is reached
while (gst_bin_iterate(GST_BIN(pipeline))); while (gst_bin_iterate(GST_BIN(pipeline)));
/* query the decoder, as for some reason, the sink will return /* FIXME: query the decoder, as for some reason, the sink will return
* unreal numbers */ * unreal numbers, when playing back mp3s only! */
format = GST_FORMAT_TIME; format = GST_FORMAT_TIME;
gst_element_query(decoder, GST_QUERY_POSITION, &format, &timePlayed); gst_element_query(decoder, GST_QUERY_POSITION, &format, &timePlayed);