0
I Use This!
Activity Not Available

Commits : Listings

Analyzed 8 months ago. based on code collected almost 2 years ago.
Mar 05, 2022 — Mar 05, 2023
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
workaround a crash on OSX 10.5.1 MacIntel systems. Seems the intermediate buffer was one line too short and while that "works" on many systems (linux intel, OSX PPC) it is luck due to malloc() implementations and memory layout. More... about 17 years ago
A updated version of the howto. This should do the trick for the next release. More... about 17 years ago
That patch seems to fix this Problem: #10 0x4cc3fffc in png_read_destroy () from /usr/lib/libpng12.so.0 #11 0x4cc4043e in png_destroy_read_struct () from /usr/lib/libpng12.so.0 #12 0x0804939f in decode_png (pngname=0xbffff830 "menu-bg.png", process=0, param=0xbffff930) at png2yuv.c:405 #13 0x08049671 in main (argc=13, argv=0x8050180) at png2yuv.c:425 ---END--- More... over 17 years ago
Need to add back, but conditionally, ${X_LIBS} -lX11. Can't use HAVE_X because OSX 10.5 has X but adding extra -lX11 options causes problems. Use HAVE_V4L in hopes that only linux systems will be affected. More... over 17 years ago
Two things: 1) HAVE_X is not needed. lavplay builds and runs on both Linux and OSX (10.4 and 10.5) fine without it. 2) HAVE_X causes a build failure on OSX 10.5: ld: cycle in dylib re-exports with /usr/X11/lib/libGL.dylib More... over 17 years ago
Fixed: non-clipping of base quantisation in the look-ahead on-the-fly rate controller. Fixed: use of MB lum_variance rather than best_me->var for activity calculation for Pass-1 on-the-fly rate controller causing wildly inconsistent quantisation values for material with a lot of chroma activity. More... over 17 years ago
Added the Patch from the Tracker for Yuri : http://sourceforge.net/tracker/index.php?func=detail&aid=1691505&group_id=5776&atid=305776 More... over 17 years ago
target_bits can be int instead of int32_t. Seems cygwin's implementation of min() is broken somehow. More... over 17 years ago
level 0 optimization suggested by Burkhard Plaum More... over 17 years ago
Add support for model 15 Intel cpus (nocona x86_64) More... over 17 years ago
Sigh, seems a lot of interlacing info being passed around but never placed in the output file. For Quicktime files use the interlacing info to add the 'fiel' atom to the file. After this is done Quicktime Player app will recognize and play the file. More... over 17 years ago
Might as well enable the program with a warning. More... over 17 years ago
Fix memory leak when reading AVI files. IF libquicktime support was present the buffers for quicktime handling would be allocated even if AVI was the input format. Then when the return was done out of the avi logic the buffers were not free'd. More... over 17 years ago
Added the Patch from: http://sourceforge.net/tracker/index.php?func=detail&aid=1770186&group_id=5776&atid=305776 More... over 17 years ago
export & install motionsearch.h More... over 17 years ago
Code hygiene and preparation for promotion to an installed header file. More... almost 18 years ago
Quicktime codec names are strings not integers so while the program would work doing 'qtchroma == QUICKTIME_YUV420' change it to do a strcmp() More... almost 18 years ago
Obviously a typo - using 'pos.x' twice instead of pos.y for the 2nd line. More... almost 18 years ago
Sigh, malloc.h was thought to have gone away has come back to life. While malloc() is in stdlib.h the function memalign is in malloc.h on some systems. More... almost 18 years ago
Andrew's (implied) suggestion for the TODO list ;) More... almost 18 years ago
Remove lingering reference to LOG_INFO More... almost 18 years ago
Don't need syslog.h check after all. More... almost 18 years ago
LOG_* is used NOWHERE except internal to mjpeg_logging. A new routine was defined to map strings ("info") to log level_t More... almost 18 years ago
Greatly reducing the usage of LOG_* symbols. With a little more work those symbols will not have to be visible at all! More... almost 18 years ago
Use mjpeg_error_exit1 and mjpeg_warn instead of LOG_* symbols More... almost 18 years ago
Use mjpeg_error() and mjpeg_debug() instead of the LOG_ symbols More... almost 18 years ago
Use mjpeg_info() instead of mjpeg_log(LOG_INFO). The hope is that the LOG_ symbols will no longer be used/visible. More... almost 18 years ago
Check for syslog.h being present More... almost 18 years ago
memleak fixes from [email protected] More... almost 18 years ago
mpeg2enc has such serious rate control flaws it should not be allowed to run. More... almost 18 years ago