summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2003-10-21 16:08:04 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2003-10-21 16:08:04 +0000
commit857d53879b1e718bc1a2736e9780d97d96dd9cbb (patch)
treed596023698265afe278233bd4d9052bebeb3270f /src
parent797f34dc352953d74246f13a144a3d652116e599 (diff)
downloadxine-lib-857d53879b1e718bc1a2736e9780d97d96dd9cbb.tar.gz
xine-lib-857d53879b1e718bc1a2736e9780d97d96dd9cbb.tar.bz2
adding members in the middle of an engine structure breaks plugin API
solutions: increase (in this case: ALL) plugin interface versions or add the new member at the end taking solution 2 for now and adding a TODO-item for later CVS patchset: 5562 CVS date: 2003/10/21 16:08:04
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine_internal.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index da0fb8514..69e92f6ec 100644
--- a/src/xine-engine/xine_internal.h
+++ b/src/xine-engine/xine_internal.h
@@ -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_internal.h,v 1.143 2003/10/20 08:36:57 valtri Exp $
+ * $Id: xine_internal.h,v 1.144 2003/10/21 16:08:04 mroi Exp $
*
*/
@@ -104,7 +104,6 @@ struct xine_s {
plugin_catalog_t *plugin_catalog;
int demux_strategy;
- char *save_path;
/* log output that may be presented to the user */
scratch_buffer_t *log_buffers[XINE_LOG_NUM];
@@ -115,6 +114,9 @@ struct xine_s {
pthread_mutex_t streams_lock;
metronom_clock_t *clock;
+
+ /* FIXME: move this member beneath demux_strategy on the next structure cleanup */
+ char *save_path;
};
/*