[vlc-commits] commit: Playlist: repack (save some memory) ( Rémi Duraffort )

git at videolan.org git at videolan.org
Fri May 28 22:03:40 CEST 2010


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri May 28 22:03:17 2010 +0200| [70ab9417b0b9825763f9a6cd246088bfd2822409] | committer: Rémi Duraffort 

Playlist: repack (save some memory)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=70ab9417b0b9825763f9a6cd246088bfd2822409
---

 include/vlc_playlist.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/vlc_playlist.h b/include/vlc_playlist.h
index f6cb8a9..8ce1347 100644
--- a/include/vlc_playlist.h
+++ b/include/vlc_playlist.h
@@ -146,9 +146,9 @@ struct playlist_item_t
 {
     input_item_t           *p_input;    /**< Linked input item */
     /** Number of children, -1 if not a node */
-    int                    i_children;
     playlist_item_t      **pp_children; /**< Children nodes/items */
     playlist_item_t       *p_parent;    /**< Item parent */
+    int                    i_children;
 
     int                    i_id;        /**< Playlist item specific id */
     uint8_t                i_flags;     /**< Flags */



More information about the vlc-commits mailing list