diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-28 00:50:21 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-28 00:50:21 +0000 |
commit | 7888b27b6fce62c80ce73e990eeacae20f4e9b39 (patch) | |
tree | 73564ca0766e599edc084d3342a405e45e2e1cf5 | |
parent | 519783d23abd182ed9b08787dc8c543a2fef0a38 (diff) |
compilation fix, mostly by Reza Jelveh
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13784 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | TOOLS/vivodump.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/TOOLS/vivodump.c b/TOOLS/vivodump.c index 72134b1d00..cce762c566 100644 --- a/TOOLS/vivodump.c +++ b/TOOLS/vivodump.c @@ -1,12 +1,21 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <inttypes.h> -#include "wine/mmreg.h" -#include "wine/avifmt.h" -#include "wine/vfw.h" +#include "loader/wine/mmreg.h" +#include "loader/wine/avifmt.h" +#include "loader/wine/vfw.h" -#include "muxer.h" +#include "libmpdemux/muxer.h" + +char *info_name; +char *info_artist; +char *info_genre; +char *info_subject; +char *info_copyright; +char *info_sourceform; +char *info_comment; static const short h263_format[8][2] = { { 0, 0 }, |