Wykres commitów

24 Commity (master)

Autor SHA1 Wiadomość Data
John Cox 542692bcfe Should now be able to make a debian distro
Beware that this isn't an offical package push and I've faked up a bug
no in the changelog to get lintian to stop warning me about it
2015-10-30 16:26:38 +00:00
John Cox f1d24ff47e Build man pages
And add install targets for them
Also fix a few small documentation issues in the source
2015-10-29 18:23:25 +00:00
John Cox beb9855a81 Tidy makefile for debianisation 2015-10-27 12:58:54 +00:00
John Cox 15a7be8f75 Add primative ability to extract RTP payloads from pcap
and also convert RTP to 264
2014-08-19 14:57:51 +01:00
John Cox 0e8463ea1d Fix static library linking
Now we make the .so correctly we tried to link with it which meant the tools
didn't run by default!  Linkage now fixed to static.
2013-04-08 17:15:42 +01:00
John Cox 6970a9f9ba Fix lib generation
Cease trying to look inside .so from make and as we now want to keep the
objects lying around move them to OBJDIR and always create the static lib
from scratch rather than using ar on it one .o at a time
2013-04-08 16:06:03 +01:00
Tony Ibbs 753e21ecc3 Attempt to make the Python binding work again... 2013-04-05 10:32:35 +01:00
John Cox 6bd2819144 Fix broken execute permissions
Probably my fault for editing in Windows without core.filemode false
2013-02-19 13:05:58 +00:00
Tibs 631d9646bf Make the Makefile work on Mac OS X Lion again
(or, at least, on my Mac - still investigating whether this is all that
needs to be done for issue 19 or not, but it's definitely a necessary
first step)
2012-07-09 19:36:09 +01:00
Tony Ibbs affe4cf2ad Fix issue 14
Thanks to staalebk for raising the issue and providing an appropriate
fix.
2012-03-15 14:08:55 +00:00
John Cox b6b7aa1c13 Merged tsdvbsub & tsfilter branches 2011-10-20 17:16:14 +01:00
John Cox f52aca0e05 Added tsdvbsub, a small utility that dumps the contents of a DVB subtitle
stream inn a TS.  This is still in the early stages of development, but may
be useful for checking that subtitles and timestamps align in an expected
manner
2011-10-20 16:43:43 +01:00
Richard Watts 1c8447e611 Add a new tsfilter utility to filter transport streams by their pids;
this is useful for extracting programmes from a multiplex.
2011-09-04 16:11:07 +01:00
tibs f21f9b270a Pull the innards of tsplay.c out into a separate (library) file, for later convenience
--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%40146
2009-08-06 14:14:28 +00:00
tibs 0763ebb39c Be good, and make publicly declared functions with no arguments say
``(void)`` instead of just ``()``.

--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%40129
2009-02-23 19:46:02 +00:00
tibs 2f658aa0a3 Write some initial code to allow for output redirection
--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%40116
2009-02-16 21:45:34 +00:00
tibs e1598da9c0 Bug 14603 -- this removes the remaining compilation warnings on my Mac OS X
build, and hopefully also in Linux. Ideally, do the same sort of thing for
the other "macro returning a constant string" cases.

--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4070
2008-10-18 16:15:26 +00:00
tibs 223c96020a Fix continuation lines in the Makefile so it works.
Fix "if (err = EOF)", which should be a comparison.

Various pedantries (petty stuff):
* Remove compiler warning on use of build_TS_reader_with_fns - this was because
  "char *" is signed on my Mac, whilst "byte *" is not. Fixed by making it
  exepct "byte *", and whilst I'm at it make pcapreport.c use the datatypes from
  compat.h -- not because they're better than the stdint.h type, because they
  clearly aren't, but purely for consistancy (long term, I still want to move
  to stdint types - it should be easier now as we don't need to support ancient
  compilers))
* Reformat pcapreport.c (this is going to make for a big difference, oh well)
  to standard tstools indentation patterns.

--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4062
2008-09-09 19:01:50 +00:00
rhodri 2b3fb08215 Add AC3 support to esmerge.
--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4061
2008-09-09 13:45:11 +00:00
rrw 025d598651 You can now run pcapreport to report on a pcap file (in a very limited
way!). Next step is to analyse PCR against the pcap timestamps.

--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4051
2008-09-05 16:09:58 +00:00
tibs 262f4b0c19 Add new program contributed by Gareth Bailey of Kynesim.
--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4027
2008-07-31 10:06:33 +00:00
tibs 0e5185163e What was the OS X Makefile now works on Linux as well (it makes a simple
attempt to autodetect whether it is running on Mac OS X). Thus it replaces
the original Linux Makefile (and we're back to a GNU make file plus an
nmake make file for Windows).

--HG--
rename : Makefile.osx => Makefile
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4011
2008-06-11 12:35:05 +00:00
tibs 3d1ec70f5b Previously, doing::
make
    make clean

did not delete all the binaries. Now, target objclean does what clean
used to do, and clean/distclean act more conventionally.

Also, Makefile.osx *should* now be a suitable makefile for Linux/BSD
as well -- but wait until I can test it at work (on Linux) before
making it the "main" Makefile.

--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%4010
2008-06-04 21:26:20 +00:00
tibs 70e9b431a7 Initial import to berlios.de
--HG--
extra : convert_revision : svn%3Aeff31bef-be4a-0410-a8fe-e47997df2690/trunk%401
2008-04-14 04:09:29 +00:00