Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-04Do not include intfloat_readwrite.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-25rtmp: ReindentMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-05-25rtmp: Don't try to do av_malloc(0)Martin Storsjö
Some received packets can have size 0. The return value from av_malloc(0) may be NULL, which is ok if the size was 0. On OS X, however, the returned pointer is non-null but leads to crashes when trying to free it. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-04avio: make url_write() internal.Anton Khirnov
2011-04-04avio: make url_read_complete() internal.Anton Khirnov
2011-04-04avio: make url_read() internal.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-03-071l trocadero: forgot reference operator on bytestream_get_be32() argumentKostya Shishkov
Originally committed as revision 22277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30Make RTMP send/receive packet functions report number of bytes read or sent.Kostya Shishkov
Originally committed as revision 21533 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30cosmetics: add an empty line between variable declarations and codeKostya Shishkov
Originally committed as revision 21532 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-24Remove some unused variables, fixes the warnings:Diego Biurrun
libavformat/rtmppkt.c:350: warning: unused variable ‘i’ libavformat/rtmppkt.c:349: warning: unused variable ‘base’ Originally committed as revision 20917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-11Dump RTMP packet contents in debug modeKostya Shishkov
Originally committed as revision 20799 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-04Compress headers for output RTMP packets.Sergiy
Patch by Sergiy (piratfmGMAIL) Originally committed as revision 20728 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-03RTMP packets with one-byte header use previous packet timestamp difference, soSergiy
track timestamp difference as well. Patch by Sergiy (mail.composeAddress("piratfm","gmail.com")) Originally committed as revision 20714 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01Write timestamp deltas, not timestamps, for RTMP packets with partial headerKostya Shishkov
Originally committed as revision 20686 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01Full-header RTMP packets contain real timestamp, others contain timestampKostya Shishkov
difference, so make all read packets store absolute timestamp. As a consequence, we don't need to track audio/video timestamps separately any longer in protocol handler. Originally committed as revision 20685 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01Write header for RTMP packets with channel_id >= 64 correctlyKostya Shishkov
Originally committed as revision 20684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-01Read and write extended timestamps for RTMP packets.Sergiy
Extracted from patch by Sergiy in thread "[PATCH] rtmp-output" Originally committed as revision 20683 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-017l trocadero: reading right into enum variable may cause unwanted effects, useKostya Shishkov
intermediate buffer for reading value instead in RTMP protocol handler. Originally committed as revision 20682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-22When searching for AMF object field value, try to find that object firstKostya Shishkov
instead of assuming it should occur right at given position. This helps finding human-readable error descriptions in RTMP server replies. Originally committed as revision 20575 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-09Use enum instead of integer types where appropriate.Carl Eugen Hoyos
Originally committed as revision 20482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18Support more than 64 channels in RTMP inputKostya Shishkov
Originally committed as revision 20270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-18Accept RTMP packets with one-byte headerKostya Shishkov
Originally committed as revision 20269 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-31RTMP protocol support (as a client)Kostya Shishkov
Originally committed as revision 19556 to svn://svn.ffmpeg.org/ffmpeg/trunk