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-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-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-04Do not include mathematics.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-10rtpenc: Declare the rtp flags private AVOptions in rtpenc.hMartin Storsjö
This allows other muxers that chain a RTP muxer to declare the same options easily. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-06-10rtpenc: MP4A-LATM payload supportJuan Carlos Rodriguez
This is enabled with an AVOption on the RTP muxer. The SDP generator looks for a latm flag in the rtpflags field. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-17avio: rename put_flush_packet -> avio_flushAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-07avio: deprecate url_fget_max_packet_sizeAnton Khirnov
AVIOContext.max_packet_size should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio: avio_ prefixes for put_* functionsAnton Khirnov
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-30Replace dprintf with av_dlogLuca Barbato
dprintf clashes with POSIX.1-2008
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
2010-12-05RTP/VP8: Update the warning about the VP8 payloadMartin Storsjö
The current implementation is incompatible with the latest spec drafts, this should be communicated clearly to the user. Originally committed as revision 25887 to svn://svn.ffmpeg.org/ffmpeg/trunk
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-08-25rtp: Replace hardcoded RTCP packet types with definesJosh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-16Add RTP packetization of VP8Josh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24797 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-07Add RTP packetization of Theora and VorbisJosh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-06rtpenc: remove unnecessary #include unistd.hMåns Rullgård
Originally committed as revision 24071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-17Simplify (no need to check for st->codec->extradata) and correctLuca Abeni
(extradata_size must be at least 5 bytes) the H.264 MP4 syntax check in rtpenc.c Originally committed as revision 23638 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16If the video stream is H.264 with MP4 syntax, store the NAL lenght size inLuca Abeni
the RTP muxer context (it will be used later for splitting frames in NALs) Originally committed as revision 23625 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö
Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 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-03-28Initialize ssrc and base_timestamp using ff_random_get_seed()Martin Storsjö
Originally committed as revision 22706 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15Use AVFormatContext.start_time_realtime in the RTP muxerMartin Storsjö
Originally committed as revision 22543 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11Make the ntp_time function available to other parts of libavformat, as ↵Martin Storsjö
ff_ntp_time Originally committed as revision 22438 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-10Fix syncronisation for streams with a high encoding delay.Timo Teräs
Patch by Timo Teräs (timo DOT teras AT iki DOT fi) Originally committed as revision 21743 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-13Remove the inclusion of unneeded headersLuca Abeni
Originally committed as revision 21193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-30Remove outdated comments.Luca Abeni
Originally committed as revision 20983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-28Remove a useless local variable.Luca Abeni
Originally committed as revision 20946 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-28Remove outdated commentLuca Abeni
Originally committed as revision 20945 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-28Remove an unneeded local variable.Luca Abeni
Originally committed as revision 20944 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-28Use different dynamic payload types for audio and video.Luca Abeni
Originally committed as revision 20940 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-08Add support for AMR audio in the RTP muxerMartin Storsjö
patch by Martin Storsjö (martin AT martin DOT st) Originally committed as revision 18375 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Add support for H.263 video in the RTP muxerMartin Storsjö
patch by Martin Storsjö (martin AT martin DOT st) Originally committed as revision 18347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-28Make rtp_write_header() fail in case of unsupported payload typeLuca Abeni
Originally committed as revision 18204 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-02-06Do not use RTP_MAX_PACKET_LENGTH in the RTP muxerLuca Abeni
Originally committed as revision 17022 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-06Merge rtp_aac.h and rtp_mpv.h in rtpenc.hLuca Abeni
Originally committed as revision 17020 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-06Split rtp.h in rtp.h, rtpdec.h, and rtpenc.hLuca Abeni
Originally committed as revision 17016 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-05Introduce a new num_frames field in RTPDemuxContext so that rtp_aac.cLuca Abeni
does not need to abuse read_buf_index Originally committed as revision 17004 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-07-13RTP: use dprintf(), allow compilation with -DDEBUGMåns Rullgård
Originally committed as revision 14211 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-08Remove outdated commentLuca Abeni
Originally committed as revision 14107 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Remove improper usage of AV_TIME_BASE_QLuca Abeni
Originally committed as revision 13960 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-03Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 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-02-20Fix computation of the "NTP time" field in RTCP SR packets, and do notLuca Abeni
export times with microsecond precision Originally committed as revision 12158 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-21Add support for H.264 video in the RTP muxerLuca Abeni
Originally committed as revision 11589 to svn://svn.ffmpeg.org/ffmpeg/trunk