]> git.sesse.net Git - vlc/commitdiff
The include vlc_md5.h is in the include path and not local
authorJean-Paul Saman <jpsaman@videolan.org>
Sun, 2 Oct 2005 16:33:40 +0000 (16:33 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Sun, 2 Oct 2005 16:33:40 +0000 (16:33 +0000)
modules/demux/mp4/drms.c
modules/demux/mp4/mp4.c

index 8082559faf513673f35321af529e59fb77318478..d67d1ef0ebe4c6af1098155f170bb8374848d960 100644 (file)
@@ -32,7 +32,7 @@
 
 #ifdef __VLC__
 #   include <vlc/vlc.h>
-#   include "vlc_md5.h"
+#   include <vlc_md5.h>
 #   include "libmp4.h"
 #else
 #   include "drmsvl.h"
index 1877b837309ba1c981851781c2d85c6d9dd9c6cd..edc122bb8c9f5bb6b3cccba14c50ec0effa5add2 100644 (file)
@@ -28,6 +28,7 @@
 #include <vlc/vlc.h>
 #include <vlc/input.h>
 #include <vlc_playlist.h>
+#include <vlc_md5.h>
 #include "iso_lang.h"
 #include "vlc_meta.h"
 
@@ -164,7 +165,7 @@ static int      MP4_TrackSampleSize( mp4_track_t * );
 static int      MP4_TrackNextSample( demux_t *, mp4_track_t * );
 static void     MP4_TrackSetELST( demux_t *, mp4_track_t *, int64_t );
 
-/* Return time in ยตs of a track */
+/* Return time in s of a track */
 static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
 {
 #define chunk p_track->chunk[p_track->i_chunk]