/[tivodecode]/tivodecode
ViewVC logotype

Log of /tivodecode

View Directory Listing Directory Listing


Sticky Revision:

Revision 251 - Directory Listing
Modified Fri Aug 31 06:19:10 2007 UTC (16 years, 3 months ago) by jeremyd2019
sync common files between t2sami and tivodecode.  remove extraneous extern "C" around includes in t2sami because tivodecode headers now have them


Revision 247 - Directory Listing
Modified Tue Aug 28 05:27:38 2007 UTC (16 years, 3 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_2_PRE4'.

Revision 246 - Directory Listing
Modified Tue Aug 28 05:27:37 2007 UTC (16 years, 3 months ago) by jeremyd2019
version number bump.  Add vcproj files to Makefile.am for make dist to include them


Revision 241 - Directory Listing
Modified Sat Aug 18 07:24:14 2007 UTC (16 years, 3 months ago) by jeremyd2019
fixes so that turing_stream.h can be included in a file which has windows.h included, for building tivocom


Revision 237 - Directory Listing
Modified Mon Aug 6 06:45:32 2007 UTC (16 years, 4 months ago) by jeremyd2019
change around command line options of tdcat a bit.  Now, -1, -2, or both can be specified, outputing only chunk 1, only chunk 2, or both together repectively.  If none is specified, default to output only chunk 1


Revision 236 - Directory Listing
Modified Mon Aug 6 06:41:14 2007 UTC (16 years, 4 months ago) by jeremyd2019
roll back core of xor loop optomization as it is still more flaky than I thought.  Need to go back and recheck the logic more


Revision 235 - Directory Listing
Modified Mon Aug 6 05:49:13 2007 UTC (16 years, 4 months ago) by jeremyd2019
change project configuration to statically link to libc, to remove requirement that the visual c++ 2005 redistributables are installed on the system
Add another project with code common to tivodecode and tdcat since vc2005 doesn't seem as nice as make about building it only once otherwise


Revision 234 - Directory Listing
Modified Mon Aug 6 05:21:29 2007 UTC (16 years, 4 months ago) by jeremyd2019
update win32 projects for new source files and new tdcat executable


Revision 233 - Directory Listing
Modified Mon Aug 6 04:58:58 2007 UTC (16 years, 4 months ago) by jeremyd2019
create a new program, tdcat, which outputs the xml metadata for a tivo file given the mak for it.  split out some code from tivodecode.c to a new cli_common.c to be shared with tdcat.


Revision 232 - Directory Listing
Modified Tue Jul 31 04:50:20 2007 UTC (16 years, 4 months ago) by jeremyd2019
squelch unsigned warnings on windows


Revision 231 - Directory Listing
Modified Tue Jul 31 03:36:05 2007 UTC (16 years, 4 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create branch
'XOR_OPTOMIZATION_BRANCH'.

Revision 230 - Directory Listing
Modified Tue Jul 31 03:36:04 2007 UTC (16 years, 4 months ago) by jeremyd2019
optimize the xor loop.  While this takes a significant chunk of CPU time off of the processing of a file, it will probably not be noticable, as the process has always been IO bound.  This still needs some cross-platform testing


Revision 229 - Directory Listing
Modified Sat Apr 21 01:28:46 2007 UTC (16 years, 7 months ago) by jeremyd2019
add extern "C" if __cplusplus is defined to allow headers to be included from c++ apps


Revision 228 - Directory Listing
Modified Wed Apr 11 00:46:58 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_2_PRE3'.

Revision 227 - Directory Listing
Modified Wed Apr 11 00:46:57 2007 UTC (16 years, 8 months ago) by jeremyd2019
tag version 0.2pre3


Revision 226 - Directory Listing
Modified Wed Apr 11 00:28:37 2007 UTC (16 years, 8 months ago) by jeremyd2019
add a changelog, generated by cvs2cl and edited by hand


Revision 225 - Directory Listing
Modified Mon Apr 9 06:32:55 2007 UTC (16 years, 8 months ago) by jeremyd2019
add an option to not process video - handy if all you want is to dump the metadata


Revision 224 - Directory Listing
Modified Sun Apr 8 04:55:15 2007 UTC (16 years, 8 months ago) by jeremyd2019
fixup warnings when compiled with icc


Revision 223 - Directory Listing
Modified Sat Apr 7 23:05:00 2007 UTC (16 years, 8 months ago) by jeremyd2019
add md5.{c,h} to project


Revision 222 - Directory Listing
Modified Sat Apr 7 23:04:24 2007 UTC (16 years, 8 months ago) by jeremyd2019
add casts to avoid warnings in visual c++ 2005


Revision 221 - Directory Listing
Modified Sat Apr 7 23:04:04 2007 UTC (16 years, 8 months ago) by jeremyd2019
change to use size_t instead of unsigned int for length parameter, to avoid
warnings in visual c++ 2005


Revision 220 - Directory Listing
Modified Sat Apr 7 22:33:58 2007 UTC (16 years, 8 months ago) by jeremyd2019
make creation of a new stream_id turing list item a macro to avoid the duplication of code


Revision 219 - Directory Listing
Modified Sat Apr 7 22:21:46 2007 UTC (16 years, 8 months ago) by jeremyd2019
fix error in logic rework to get prepare_frame to take stream_id and block_id of 0, caused improper decryption of mpeg data


Revision 218 - Directory Listing
Modified Sat Apr 7 21:47:31 2007 UTC (16 years, 8 months ago) by jeremyd2019
fix warning on solaris - isspace is a macro that expects to be given an int


Revision 217 - Directory Listing
Modified Sat Apr 7 21:30:14 2007 UTC (16 years, 8 months ago) by jeremyd2019
add string.h include to md5 to make it work on solaris (seems memmove comes from there), remove sys/param.h since I don't know why it was there and don't know its portability


Revision 216 - Directory Listing
Modified Sat Apr 7 05:40:27 2007 UTC (16 years, 8 months ago) by jeremyd2019
add support to decrypt metadata and dump out to files.  Needs some work to make it easier to use


Revision 215 - Directory Listing
Modified Sat Apr 7 05:23:42 2007 UTC (16 years, 8 months ago) by jeremyd2019
add md5 routines from postgresql's pgcrypto contrib module, slightly hacked so that it does not require a 64-bit integer type, which should not be an issue for my uses.  md5 is needed to generate the decryption keys for the metadata


Revision 214 - Directory Listing
Modified Sat Apr 7 00:54:51 2007 UTC (16 years, 8 months ago) by jeremyd2019
fix turing_stream to work with stream_id of 0 (needed for work on metadata decrypting)


Revision 212 - Directory Listing
Modified Tue Apr 3 21:11:33 2007 UTC (16 years, 8 months ago) by jeremyd2019
refactor tivo file parsing to expose access to the rest of the data, add option to dump out the data chunks in a tivo file to seperate files for analysis (they appear encrypted somehow, but I think the metadata is stored in them somewhere)


Revision 211 - Directory Listing
Modified Mon Apr 2 05:22:20 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_2_PRE2'.

Revision 210 - Directory Listing
Modified Mon Apr 2 05:22:19 2007 UTC (16 years, 8 months ago) by jeremyd2019
bump version number


Revision 209 - Directory Listing
Modified Mon Apr 2 05:19:27 2007 UTC (16 years, 8 months ago) by jeremyd2019
fix merge error - some includes were in the wrong place, resulting in broken builds due to missing defines from tdconfig.h


Revision 208 - Directory Listing
Modified Sun Apr 1 22:18:42 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_2_PRE1'.

Revision 207 - Directory Listing
Modified Sun Apr 1 22:18:41 2007 UTC (16 years, 8 months ago) by jeremyd2019
add windows build files that autoconf did not know about to EXTRA_DIST so that they are included in the dist tar file


Revision 203 - Directory Listing
Modified Sun Apr 1 21:54:08 2007 UTC (16 years, 8 months ago) by jeremyd2019
remove extra newline from help output, update copyright year in version output


Revision 201 - Directory Listing
Modified Sun Apr 1 05:20:41 2007 UTC (16 years, 8 months ago) by jeremyd2019
change version numbers to 0.2pre1 alpha release, remove -Wmissing-prototypes from gcc options, rewrite some of README for new autoconf build system


Revision 200 - Directory Listing
Modified Sun Apr 1 04:46:10 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag
't_autoconf_conversion_merge'.

Revision 198 - Directory Listing
Modified Sun Apr 1 04:46:08 2007 UTC (16 years, 8 months ago) by jeremyd2019
merge autoconf branch back to head.  AUTOCONF_CONVERSION_BRANCH is now closed


Revision 192 - Directory Listing
Modified Sat Mar 31 21:23:50 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag
'f_autoconf_conversion_merge'.

Revision 191 - Directory Listing
Modified Sat Mar 31 21:23:49 2007 UTC (16 years, 8 months ago) by jeremyd2019
port upstream changes from postgresql's getopt* files, which remove the advertising clause from the license on the file


Revision 190 - Directory Listing
Modified Sat Mar 31 21:17:24 2007 UTC (16 years, 8 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag
'PRE_AUTOCONF_CONVERSION_BRANCH_MERGE'.

Revision 188 - Directory Listing
Modified Sat Mar 31 21:17:22 2007 UTC (16 years, 8 months ago) by jeremyd2019
port upstream changes from postgresql's getopt* files, which remove the advertising clause from the license on the file


Revision 161 - Directory Listing
Modified Tue Jan 16 05:14:00 2007 UTC (16 years, 10 months ago) by jeremyd2019
autoconf-supplied HAVE_*_H macros do not exist here...


Revision 160 - Directory Listing
Modified Tue Jan 16 05:13:12 2007 UTC (16 years, 10 months ago) by jeremyd2019
port header changes from autoconf branch so that only tivodecoder.h needs to be included


Revision 159 - Directory Listing
Modified Tue Jan 16 02:44:30 2007 UTC (16 years, 10 months ago) by jeremyd2019
add headers to Makefile.am for installation, clean up headers that will be installed so that one just includes tivodecoder.h, clean up tivodecoder.c so that it does not call exit() since it is called from a lib and the caller may not want to exit, instead return -2


Revision 158 - Directory Listing
Modified Mon Jan 15 21:55:16 2007 UTC (16 years, 10 months ago) by jeremyd2019
copy changes to getopt_long.h from t2sami: don't declare extern vars for getopt if using the system's getopt - rely on it taking care of that.  Caused issue for t2sami on cygwin, tivodecode worked fine, but may as well fix it here too


Revision 139 - Directory Listing
Modified Wed Jan 10 23:40:43 2007 UTC (16 years, 11 months ago) by jeremyd2019
make tdconfig.h include conditional on HAVE_CONFIG_H


Revision 138 - Directory Listing
Modified Wed Jan 10 23:32:37 2007 UTC (16 years, 11 months ago) by jeremyd2019
merge configure fix from t2sami module which makes largefile support compile correctly by adding -Werror-implicit-function-declaration if available and using gcc, as well as adding other flags


Revision 124 - Directory Listing
Modified Mon Jan 8 23:57:17 2007 UTC (16 years, 11 months ago) by jeremyd2019
change invokation of AC_CHECK_HEADERS so that it calls the new style of checking for the ability to compile headers rather than preprocess


Revision 120 - Directory Listing
Modified Mon Jan 8 08:52:54 2007 UTC (16 years, 11 months ago) by jeremyd2019
add automake maintainer mode macro to prevent attempted regeneration of autoconf/automake files from Makefiles due to file timestamp issues


Revision 119 - Directory Listing
Modified Mon Jan 8 08:45:41 2007 UTC (16 years, 11 months ago) by jeremyd2019
openbsd compile fixes - ntohl requires sys/types.h


Revision 118 - Directory Listing
Modified Mon Jan 8 08:28:20 2007 UTC (16 years, 11 months ago) by jeremyd2019
add custom build rule to copy tdconfig.h.win32 to tdconfig.h


Revision 117 - Directory Listing
Modified Mon Jan 8 08:25:54 2007 UTC (16 years, 11 months ago) by jeremyd2019
update win32 config with latest changes from configure


Revision 116 - Directory Listing
Modified Mon Jan 8 08:12:33 2007 UTC (16 years, 11 months ago) by jeremyd2019
change to use autoconf-defined macro for version rather than home-brewed version.  make QUALCOMM message a macro and use it when about to use the QUALCOMM code or on --version output


Revision 115 - Directory Listing
Modified Mon Jan 8 08:11:18 2007 UTC (16 years, 11 months ago) by jeremyd2019
change version number to 0.2devel since I am not yet ready to release 0.2.0


Revision 114 - Directory Listing
Modified Mon Jan 8 08:09:00 2007 UTC (16 years, 11 months ago) by jeremyd2019
change from obsolete autoconf/automake macros to current versions


Revision 113 - Directory Listing
Modified Mon Jan 8 07:14:06 2007 UTC (16 years, 11 months ago) by jeremyd2019
add generated files from autoconf/autoheader/automake to cvs


Revision 112 - Directory Listing
Modified Mon Jan 8 07:07:00 2007 UTC (16 years, 11 months ago) by jeremyd2019
redo define for ftello/fseeko to be more robust, add warning if falling back to ftell/fseek for questionable large file support


Revision 111 - Directory Listing
Modified Mon Jan 8 07:06:15 2007 UTC (16 years, 11 months ago) by jeremyd2019
redo happyfile check for hoff_t typedef and warning about questionable large file support now that autoconf gives me sizeof(off_t) preprocesor macro


Revision 110 - Directory Listing
Modified Mon Jan 8 06:55:29 2007 UTC (16 years, 11 months ago) by jeremyd2019
update visual studio projects to properly deal with the autoconfized code.  Define HAVE_CONFIG_H and copy tdconfig.h.win32 to tdconfig.h prior to compiling stuff.


Revision 109 - Directory Listing
Modified Mon Jan 8 06:54:34 2007 UTC (16 years, 11 months ago) by jeremyd2019
undefine HAVE_UNISTD_H since I don't have it on native windows


Revision 108 - Directory Listing
Modified Mon Jan 8 06:34:34 2007 UTC (16 years, 11 months ago) by jeremyd2019
add pre-generated tdconfig.h for win32, as postgresql does it


Revision 107 - Directory Listing
Modified Mon Jan 8 06:31:14 2007 UTC (16 years, 11 months ago) by jeremyd2019
add LIBOBJS to _LDADD and _DEPENDENCIES so that the AC_REPLACE_FUNCS thing will work right


Revision 106 - Directory Listing
Modified Mon Jan 8 06:30:03 2007 UTC (16 years, 11 months ago) by jeremyd2019
fix copy n paste error


Revision 105 - Directory Listing
Modified Mon Jan 8 05:31:57 2007 UTC (16 years, 11 months ago) by jeremyd2019
get ntohl lib check working for win32, reorder some checks


Revision 104 - Directory Listing
Modified Mon Jan 8 03:40:19 2007 UTC (16 years, 11 months ago) by jeremyd2019
add check for library for ntohl, if needed (it is on win32)


Revision 103 - Directory Listing
Modified Mon Jan 8 03:39:56 2007 UTC (16 years, 11 months ago) by jeremyd2019
add check for HAVE_SYS_STAT_H


Revision 102 - Directory Listing
Modified Mon Jan 8 03:19:18 2007 UTC (16 years, 11 months ago) by jeremyd2019
split out fseeko funcs based on pgsql stuff, use AC_REPLACE_FUNCS for it.  TODO: win32 project updating


Revision 96 - Directory Listing
Modified Thu Jan 4 01:33:05 2007 UTC (16 years, 11 months ago) by jeremyd2019
first attempt to switch over to autoconf/automake for building.  not sure if I like it or not


Revision 94 - Directory Listing
Modified Sun Dec 31 21:44:00 2006 UTC (16 years, 11 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create branch
'AUTOCONF_CONVERSION_BRANCH'.

Revision 93 - Directory Listing
Modified Sun Dec 31 21:43:59 2006 UTC (16 years, 11 months ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag
'AUTOCONF_CONVERSION_BRANCHPOINT'.

Revision 92 - Directory Listing
Modified Sun Dec 31 21:43:58 2006 UTC (16 years, 11 months ago) by jeremyd2019
change projects to build library on windows as on unix


Revision 91 - Directory Listing
Modified Sun Dec 31 21:43:21 2006 UTC (16 years, 11 months ago) by jeremyd2019
clean up types to prevent warnings on windows.  fix up large file support for windows


Revision 90 - Directory Listing
Modified Sun Dec 31 21:04:39 2006 UTC (16 years, 11 months ago) by jeremyd2019
attempt better large file support on windows.  Needs testing


Revision 77 - Directory Listing
Modified Wed Dec 27 23:44:35 2006 UTC (16 years, 11 months ago) by jeremyd2019
fix making tags which broke after setting up for making libtivodecode.a, link in library for tivodecode program rather than the object files


Revision 66 - Directory Listing
Modified Wed Dec 13 00:43:25 2006 UTC (17 years ago) by jeremyd2019
make process_frame use a write function.  add target to make libtivodecode.a


Revision 65 - Directory Listing
Modified Tue Dec 12 20:56:19 2006 UTC (17 years ago) by jeremyd2019
more genericization, split out process_frame and related heavy lifting into seperate source file so that I could call it from something other than the command line tivodecode program


Revision 64 - Directory Listing
Modified Tue Dec 12 20:28:51 2006 UTC (17 years ago) by jeremyd2019
remove dependancies on happy_file from all source except tivodecode.c, make other usages generic using a function pointer to begin readying for library-type usage


Revision 61 - Directory Listing
Modified Fri Dec 8 06:19:38 2006 UTC (17 years ago) by jeremyd2019
add tags target to build ctags, make object files depend on headers so updating a header will make all object files rebuild - easier than dep files


Revision 60 - Directory Listing
Modified Fri Dec 8 06:07:16 2006 UTC (17 years ago) by jeremyd2019
make prepare_frame_helper function static as it is only called inside this file.  I don't know why it wasn't static before


Revision 59 - Directory Listing
Modified Fri Dec 8 04:07:22 2006 UTC (17 years ago) by jeremyd2019
rewrite handling of encrypted packets to not have a hardcoded set of stream_ids, but to keep track of an arbitrary number of states in a circular linked list.  There should never be more than 2 or 3 of them, AFAIK, so this should be acceptable performance-wise


Revision 57 - Directory Listing
Modified Fri Dec 8 02:12:13 2006 UTC (17 years ago) by jeremyd2019
merge README changes from REL_0_1_BRANCH


Revision 55 - Directory Listing
Modified Thu Dec 7 23:07:56 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_1_4'.

Revision 54 - Directory Listing
Modified Thu Dec 7 23:07:55 2006 UTC (17 years ago) by jeremyd2019
add info to the README file about windows prereqs  and config file for mak


Revision 53 - Directory Listing
Modified Thu Dec 7 20:57:19 2006 UTC (17 years ago) by jeremyd2019
Flag release 0.1.4


Revision 52 - Directory Listing
Modified Thu Dec 7 20:54:34 2006 UTC (17 years ago) by jeremyd2019
add support for storing MAK in a config file, ~/.tivodecode_mak, or if HOME (or USERPROFILE on Windows) is not set, /.tivodecode_mak (C:/.tivodecode_mak on Windows)


Revision 51 - Directory Listing
Modified Thu Dec 7 20:50:22 2006 UTC (17 years ago) by jeremyd2019
make so that if USERPROFILE is not set on Windows, that the mak config file is always c:/.tivodecode_mak, rather that /.tivodecode_mak on whatever the current drive is


Revision 50 - Directory Listing
Modified Thu Dec 7 20:44:06 2006 UTC (17 years ago) by jeremyd2019
tweak largefile support to be more correct for seek and tell, per report in forum.  This should not affect anyone, as in order for pipe support to work I could not seek anyway.


Revision 49 - Directory Listing
Modified Thu Dec 7 20:39:28 2006 UTC (17 years ago) by jeremyd2019
change offset in mak validation code from int to size_t to get rid of a signed vs unsigned compare warning in VC2005


Revision 48 - Directory Listing
Modified Thu Dec 7 20:36:15 2006 UTC (17 years ago) by jeremyd2019
tweak largefile support to be more correct for seek and tell, per report in forum.  This should not affect anyone, as in order for pipe support to work I could not seek anyway.


Revision 47 - Directory Listing
Modified Thu Dec 7 00:17:12 2006 UTC (17 years ago) by jeremyd2019
if home directory not set, leave it blank, so the mak file would be "/.tivodecode_mak"


Revision 46 - Directory Listing
Modified Thu Dec 7 00:04:57 2006 UTC (17 years ago) by jeremyd2019
change to get the proper env var on Windoze, still need to test


Revision 45 - Directory Listing
Modified Wed Dec 6 21:00:15 2006 UTC (17 years ago) by jeremyd2019
add support for config file to hold MAK, named ~/.tivodecode_mak


Revision 42 - Directory Listing
Modified Tue Dec 5 03:22:18 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_1_3'.

Revision 41 - Directory Listing
Modified Tue Dec 5 03:22:17 2006 UTC (17 years ago) by jeremyd2019
Flag release 0.1.3


Revision 40 - Directory Listing
Modified Tue Dec 5 03:19:07 2006 UTC (17 years ago) by jeremyd2019
implement support for encrypted packet type 0xbd, apparently used for AC3 audio for 'Humax DVD-burning TiVos'


Revision 39 - Directory Listing
Modified Sat Dec 2 23:04:11 2006 UTC (17 years ago) by jeremyd2019
add makefile rules to automate rolling releases.  Users should not use these


Revision 37 - Directory Listing
Modified Fri Dec 1 23:43:13 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_1_2'.

Revision 36 - Directory Listing
Modified Fri Dec 1 23:43:12 2006 UTC (17 years ago) by jeremyd2019
oops, forgot to update version number


Revision 34 - Directory Listing
Modified Fri Dec 1 23:07:16 2006 UTC (17 years ago) by jeremyd2019
fix bug introduced recently while fixing signedness warnings on gcc-4.1.  Thanks to tateu for the fix


Revision 32 - Directory Listing
Modified Fri Dec 1 06:42:35 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_1_1'.

Revision 31 - Directory Listing
Modified Fri Dec 1 06:42:34 2006 UTC (17 years ago) by jeremyd2019
bump version number - going to release again quick due to fixed compile error on Mac OSX


Revision 30 - Directory Listing
Modified Fri Dec 1 06:33:07 2006 UTC (17 years ago) by jeremyd2019
change include file for htonl after compile farm failure on Mac OSX


Revision 29 - Directory Listing
Modified Fri Dec 1 06:22:03 2006 UTC (17 years ago) by jeremyd2019
change include file for htonl after compile farm failure on Mac OSX


Revision 27 - Directory Listing
Modified Fri Dec 1 03:12:08 2006 UTC (17 years ago) by jeremyd2019
port version option to HEAD


Revision 26 - Directory Listing
Modified Fri Dec 1 03:10:30 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag 'REL_0_1_0'.

Revision 25 - Directory Listing
Modified Fri Dec 1 03:10:29 2006 UTC (17 years ago) by jeremyd2019
version for release 0.1.0


Revision 24 - Directory Listing
Modified Fri Dec 1 02:58:57 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create branch
'REL_0_1_BRANCH'.

Revision 23 - Directory Listing
Modified Fri Dec 1 02:58:56 2006 UTC (17 years ago) by (unknown author)
This commit was manufactured by cvs2svn to create tag
'REL_0_1_BRANCHPOINT'.

Revision 22 - Directory Listing
Modified Fri Dec 1 02:58:55 2006 UTC (17 years ago) by jeremyd2019
add README


Revision 21 - Directory Listing
Modified Fri Dec 1 02:46:55 2006 UTC (17 years ago) by jeremyd2019
add COPYING file and short notices in each source file


Revision 16 - Directory Listing
Modified Wed Nov 29 17:50:49 2006 UTC (17 years ago) by jeremyd
apply mak verification patch from Kees Cook <kees@outflux.net>, fix signedness warnings in gcc 4.1, add permission statement from Kees Cook to file derived from mpegcat


Revision 15 - Directory Listing
Modified Mon Oct 30 20:38:20 2006 UTC (17 years, 1 month ago) by jeremyd
fix so that error is properly detected when failing to open a file


Revision 14 - Directory Listing
Modified Wed Jun 14 04:14:37 2006 UTC (17 years, 6 months ago) by jeremyd
make it easier to switch cflags while maintaining defines


Revision 13 - Directory Listing
Modified Wed Jun 14 04:00:51 2006 UTC (17 years, 6 months ago) by jeremyd
hack around alignment issues which crop up on platforms less tolerant of such things than x86 is.  Switch from long to int for types which should be 32bit.  Can't use uint32_t as win32 does not have it.  Now compiles and works on solaris sparc 32 and 64 bit


Revision 12 - Directory Listing
Modified Wed Jun 14 03:58:03 2006 UTC (17 years, 6 months ago) by jeremyd
tweak for LDFLAGS changing, default CC to gcc


Revision 11 - Directory Listing
Modified Fri Jun 9 01:21:34 2006 UTC (17 years, 6 months ago) by jeremyd
add project for vc 2005 express


Revision 10 - Directory Listing
Modified Fri Jun 9 01:19:37 2006 UTC (17 years, 6 months ago) by jeremyd
sync makefile with windows changes


Revision 9 - Directory Listing
Modified Fri Jun 9 01:17:01 2006 UTC (17 years, 6 months ago) by jeremyd
compiles on windows now with vc 2005 express


Revision 8 - Directory Listing
Modified Thu Jun 8 18:20:43 2006 UTC (17 years, 6 months ago) by jeremyd
clean up leaks, add support for stdin/stdout pipe operation


Revision 7 - Directory Listing
Modified Thu Jun 8 17:21:59 2006 UTC (17 years, 6 months ago) by jeremyd
clean up trailing whitespace


Revision 6 - Directory Listing
Modified Thu Jun 8 17:18:49 2006 UTC (17 years, 6 months ago) by jeremyd
add simple buffering to happyfile.  this seems to help performance a lot


Revision 5 - Directory Listing
Modified Thu Jun 8 17:18:08 2006 UTC (17 years, 6 months ago) by jeremyd
fix up nastyness related to making directory.  now it is only a little nasty, running mkdir before each build


Revision 4 - Directory Listing
Modified Thu Jun 8 16:35:32 2006 UTC (17 years, 6 months ago) by jeremyd
tweak makefile


Revision 3 - Directory Listing
Modified Thu Jun 8 16:18:14 2006 UTC (17 years, 6 months ago) by jeremyd
remove GPL file_buffer code and replace with the happyfile stuff I hacked together which is not buffered, but is more likely to work with pipes.  TODO: add buffering, it seems that the program slowed significantly when it was removed.


Revision 2 - Directory Listing
Modified Thu Jun 8 04:48:48 2006 UTC (17 years, 6 months ago) by jeremyd
checkpoint working tivo file decoder, makes mpg file.  Still want to try to minimize code from mpegcat since it is GPL and I am not sure the license implications of mixing with the Turing code


Revision 1 - Directory Listing
Added Thu Jun 8 04:48:48 2006 UTC (17 years, 6 months ago) by (unknown author)
Standard project directories initialized by cvs2svn.

cvs@jdrake.com
ViewVC Help
Powered by ViewVC 1.1.13