It seems to be mostly useful for network streams and those are not
supported at the moment.
-#include <msp/io/print.h>
+#include <msp/strings/format.h>
#include "xineengine.h"
#include "xinestream.h"
case XINE_EVENT_UI_PLAYBACK_FINISHED:
set_state(STOPPED);
break;
- case XINE_EVENT_PROGRESS:
- {
- xine_progress_data_t *data = reinterpret_cast<xine_progress_data_t *>(event.data);
- IO::print("%s [%d%%]\n", data->description, data->percent);
- }
- break;
}
}