diff options
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | src/xine-engine/xine_internal.h | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -31,7 +31,8 @@ frontends 1-alpha/beta/rc series to demonstarte this to end users) 1-rc6 Most compile warnings are fixed. Hopefully the translators have - finished their job as well. + finished their job as well. xine engine structures have been + looked over and some resorting/reorganizing has been done. 1-rc7 All known bugs should be fixed now. There is a big call for testers. If they don't find any new bugs for at least a week, @@ -70,6 +71,7 @@ optional - rename config entries to a more consistent scheme (providing automatic config file conversion, of course) - sort out which messages should go to console and which to xine_log +- look over global structures and do some cleanup - id3v2.3,v2.4 support - "metainfo change" event - new demuxers/decoders (eg. matroska) 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; }; /* |