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-09-26rtp: Simplify ff_rtp_get_payload_typeRafaël Carré
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-26rtpenc: Add a payload type private optionRafaël Carré
Specifying the payload type is useful when the type number has already been negotiated before creating the stream, for example in SIP protocol. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-24rtp: factorize dynamic payload type fallbackRafaël Carré
Move the identical code in rtp_write_header() and ff_sdp_write_media() inside ff_rtp_get_payload_type() Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-09-15Handle G.722 in RTP, and all the exceptions mandated in RFC 3551Martin Storsjö
Originally committed as revision 25125 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11Remove the inclusion of unneeded headersLuca Abeni
Originally committed as revision 21152 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Do not return payload type 34 for H.263 (it is deprecated)Luca Abeni
Originally committed as revision 18346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-17Remame rtp_get_codec_info() to ff_rtp_get_codec_info(), as it is notLuca Abeni
a static function Originally committed as revision 17390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-16Rename rtp_get_payload_type() to ff_rtp_get_payload_type(), as it is notLuca Abeni
a static function Originally committed as revision 17364 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-27Merge rtp_internal.h in rtp.h, and remove rtp_internal.hLuca Abeni
Originally committed as revision 16817 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-24Do not set sample_rate = 90000 for mp2 and mp3 audio over RTPLuca Abeni
Originally committed as revision 13943 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-31Add a comment about missing entriesLuca Abeni
Originally committed as revision 12646 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-31Use the correct size for the enc_name field (removing the arbitrary "50" size)Luca Abeni
Originally committed as revision 12645 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-31Remove useless entries from AVRtpPayloadTypesLuca Abeni
Originally committed as revision 12644 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-31Support mp3 audio in the RTP muxerLuca Abeni
Originally committed as revision 12643 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-06Make AVRtpPayloadTypes static and constantDiego Pettenò
Patch by Diego 'Flameeyes' Pettenò (flameeyes AT gmail DOT com) Originally committed as revision 11432 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04Split the RTP muxer out of rtp.c, to simplify the RTSP demuxer's dependenciesLuca Abeni
Originally committed as revision 11408 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04Split the RTP demuxing functions out of rtp.c, to simplify the RTP muxer's ↵Luca Abeni
dependencies Originally committed as revision 11406 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02Fix some spelling mistakes.Diego Biurrun
Originally committed as revision 11125 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-21Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson
patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-16Add MPEG2 support to the RTP muxerLuca Abeni
Originally committed as revision 11047 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-16Remove the "AVRtpPayloadTypes[i].pt == i" assumption from RTP and RTSPLuca Abeni
code (this is needed for supporting MPEG2 video in the RTP muxer) Originally committed as revision 11046 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-05Do not send too many RTCP packets (according to RFC 3550, the minimumLuca Abeni
RTCP interval should be 5 seconds) Originally committed as revision 10930 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-05Use a symbolic name for the payload size of an RTCP Sender Report packetLuca Abeni
Originally committed as revision 10929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-02Allow to set the maximum number of frames per RTP packet (and add support forLuca Abeni
this in the AAC packetizer) Originally committed as revision 10647 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-24Fix a warning by removing an useless assignment (buf_ptr should be onlyLuca Abeni
used in the RTP muxer, and not in the demuxer) Originally committed as revision 10561 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-14Support for AAC streaming over RTP. Fragmentation is not implemented yetLuca Abeni
Originally committed as revision 10491 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-10Fix timestamps in RTP packets (now, MPEG1 video with B frames works correctly)Luca Abeni
Originally committed as revision 10469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-10Properly set RTP and NTP timestamps in RTCP SR packetsLuca Abeni
Originally committed as revision 10468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-24Move the RTP packetization code for MPEG12 video in its own file (rtp_mpv.c)Luca Abeni
Originally committed as revision 10201 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-19Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris
Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06Use AV_RB* macros where appropriate.Ronald S. Bultje
patch by Ronald S. Bultje, rsbultje gmail com thread: Re: [FFmpeg-devel] remove int readers date: Sat, 23 Jun 2007 09:32:12 -0400 Originally committed as revision 9499 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-27remove empty write trailer functionsVitor Sessak
patch by Vitor: [vitor1001 gmail com] Originally committed as revision 9442 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-13remove decode_be32/64 and replace them by AV_RB32/64Ronald S. Bultje
patch by Ronald S. Bultje: \ rbultje at ronald bitfreak net / Originally committed as revision 9299 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-15add an enum for need_parsingAurelien Jacobs
Originally committed as revision 8742 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-04changes some function declarations from () to (void) as per ansi c.Stefan Huehner
Patch by Stefan Huehner % stefan A huehner P org % Originally committed as revision 8625 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move rtp_check_and_send_back_rr()'s unaltered comments to the header file.Panagiotis Issaris
Originally committed as revision 8234 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move rtp_get_payload_type()'s unaltered comments to the header file.Panagiotis Issaris
Originally committed as revision 8233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-04move networking #includes into separate fileRamiro Polla
patch by Ramiro Polla angustia =a= arrozcru =d= no-ip =d= org Originally committed as revision 7817 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-20rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi
Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-18The long awaited BeOS cleanup, phase 1François Revol
Originally committed as revision 7581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-09get rid of CODEC_ID_MPEG4AAC after next version bump, and change it to ↵Baptiste Coudurier
CODEC_ID_AAC where used Originally committed as revision 6954 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-08add support for rtp/h264 streamingRyan Martell
Patch by Ryan Martell % rdm4 A martellventures P com % Original thread: Date: Nov 6, 2006 8:56 PM Subject: [Ffmpeg-devel] [PATCH] H.264 via RTP Originally committed as revision 6936 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-03add valid statistics for the RTCP receiver report.Ryan Martell
Basically taken verbatim from RFC 1889. Patch by Ryan Martell % rdm4 A martellventures P com % Original thread: Date: Oct 31, 2006 12:43 AM Subject: [Ffmpeg-devel] [PATCH] RTCP valid receiver statistics.... Originally committed as revision 6879 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-02Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.Steve L'Homme
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk