aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
Commit message (Collapse)AuthorAgeFilesLines
* Print extradata in case of failure. I had this in my local tree and itMichael Niedermayer2009-12-131-1/+3
| | | | | | might be usefull for others ... Originally committed as revision 20828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* APIChanges & minor bump due to avg_frame_rate addition.Michael Niedermayer2009-12-131-1/+1
| | | | Originally committed as revision 20827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avg_frame_rate.Michael Niedermayer2009-12-132-0/+11
| | | | Originally committed as revision 20826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use constant CODEC_ID_NONE instead of 0 where appropriate.Carl Eugen Hoyos2009-12-131-1/+1
| | | | Originally committed as revision 20824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented out code.Michael Niedermayer2009-12-131-15/+1
| | | | Originally committed as revision 20823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out extradata reading code.Kostya Shishkov2009-12-131-17/+22
| | | | | | Borrowed from RM demuxer in FFmbc. Originally committed as revision 20821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RM audio stream version should be 16-bit followed by header size or reservedKostya Shishkov2009-12-131-9/+11
| | | | | | | word, so treat it this way instead of extracting different parts from 32-bit value. Originally committed as revision 20820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make RM demuxer look more like proper demuxer by introducing codec tagsKostya Shishkov2009-12-131-13/+35
| | | | | | | instead of many strcmp() on always four-byte strings. Idea borrowed from RM demuxer in FFmbc by Baptiste Coudurier. Originally committed as revision 20819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out variable declarationKostya Shishkov2009-12-131-2/+1
| | | | Originally committed as revision 20818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix PTS for OGM codecs.David Conrad2009-12-124-14/+45
| | | | | | Fixes issue251 Originally committed as revision 20815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset pts_buffers in av_read_frame_flush().John Stebbins2009-12-121-1/+4
| | | | | | Patch by John Stebbins, jstebbins jetheaddev com Originally committed as revision 20806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dump RTMP packet contents in debug modeKostya Shishkov2009-12-113-0/+124
| | | | Originally committed as revision 20799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 5l trocadero: don't forget to free packet in gen_connect()Martin Storsjö2009-12-111-0/+1
| | | | | | Patch by Martin Storsjö ($name at $name dot `abbreviation for "street"`) Originally committed as revision 20798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to interact with RTMP server after "stop" command was received.Martin Storsjö2009-12-111-0/+10
| | | | | | Patch by Martin Storsjö ($name at $name dot `Sao Tome and Principe domain`) Originally committed as revision 20797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* (Partly) support Metasoft MJPEG Codec, fixes half of issue 1611.Carl Eugen Hoyos2009-12-101-0/+1
| | | | Originally committed as revision 20796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support Etymonix MPEG-2 video codec, fixes issue 1603.Carl Eugen Hoyos2009-12-101-0/+1
| | | | Originally committed as revision 20795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add dvcs to dvvideo, fixes issue 1604Ben Littler2009-12-091-0/+1
| | | | Originally committed as revision 20786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support AVI1 and AVI2 in avi as MJPEG.Carl Eugen Hoyos2009-12-081-0/+2
| | | | | | Fixes issue 1602. Originally committed as revision 20781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raise threshold of h263 probe by 1 to avoid misdetection.Michael Niedermayer2009-12-081-1/+2
| | | | | | Fixes issue 1588. Originally committed as revision 20765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add out commented av_log to debug h263_probe.Michael Niedermayer2009-12-081-0/+1
| | | | Originally committed as revision 20764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also print the number of invalid packets in the debug output.Michael Niedermayer2009-12-081-1/+1
| | | | Originally committed as revision 20763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flip the comparission direction of vid+audio+priv1 and pspack, it appears to ↵Michael Niedermayer2009-12-081-1/+1
| | | | | | | | | have been wrong. Fixes issue1571. Originally committed as revision 20762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AU : demuxed packet size should be sample size aligned.Jai Menon2009-12-071-2/+4
| | | | | | Fixes issue 1593. Originally committed as revision 20758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: insert space between codeword and left parenthesisKostya Shishkov2009-12-061-3/+3
| | | | Originally committed as revision 20746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not send invokes to RTMP server if we are not connected to it.Sergiy2009-12-061-2/+4
| | | | | | Patch by Sergiy (server.connect("gmail.com").selectAddress("piratfm")) Originally committed as revision 20745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calls to url_fseek should have their return value checked inSean Soria2009-12-061-1/+3
| | | | | | | | | | av_seek_frame_binary, just as they do in av_seek_frame_generic. Otherwise, function may return success even though url_fseek reported failure. Patch by Sean Soria, first.last at gmail Originally committed as revision 20744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2009-12-041-78/+78
| | | | Originally committed as revision 20732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTMP output (publishing FLV stream to RTMP server).Sergiy2009-12-042-14/+242
| | | | | | Patch by Sergiy (piratfm at `do-no-evil-mail`.com) Originally committed as revision 20731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compress headers for output RTMP packets.Sergiy2009-12-041-1/+25
| | | | | | Patch by Sergiy (piratfmGMAIL) Originally committed as revision 20728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicating variableKostya Shishkov2009-12-031-1/+0
| | | | Originally committed as revision 20718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 5l trocadero: RTMP channel ID lies in range 3-65599, uint8_t is too small for itKostya Shishkov2009-12-031-1/+1
| | | | Originally committed as revision 20717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send connect() and createStream() in RTMP system channel, not video channel.Sergiy2009-12-031-2/+2
| | | | | | Patch by Sergiy (com gmail . piratfm @ mail =) Originally committed as revision 20716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move "app" string into RTMP protocol context.Sergiy2009-12-031-10/+11
| | | | | | Patch by Sergiy (com.gmail@piratfm) Originally committed as revision 20715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTMP packets with one-byte header use previous packet timestamp difference, soSergiy2009-12-032-5/+10
| | | | | | | 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
* Update Changelog, documentation, and libavformat minor version number forRamiro Polla2009-12-031-2/+2
| | | | | | "A format generated by IndigoVision 8000 video server" added in r20681. Originally committed as revision 20712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add another known RTMP channel ID to enum.Sergiy2009-12-021-0/+1
| | | | | | From patch by Sergiy (mail = piratfm, gmail) Originally committed as revision 20703 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move is_input flag into RTMP protocol context.Sergiy2009-12-021-4/+4
| | | | | | | Patch by Sergiy (gmail(piratfm)) Thread "[PATCH] rtmp-output" Originally committed as revision 20702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print error message when image2 muxer fail to compute frame filenameBaptiste Coudurier2009-12-011-1/+3
| | | | Originally committed as revision 20694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ret type to int64_t because url_fseek returns int64_t.Sean Soria2009-12-011-1/+2
| | | | | | | This fixes seeking in files > 2gb. Patch by Sean Soria, sean dot soria at gmail dot com. Originally committed as revision 20693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext in av_log, better than AVCodecContext when multiple ↵Baptiste Coudurier2009-12-011-7/+9
| | | | | | streams are present Originally committed as revision 20689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Write timestamp deltas, not timestamps, for RTMP packets with partial headerKostya Shishkov2009-12-011-3/+6
| | | | Originally committed as revision 20686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Full-header RTMP packets contain real timestamp, others contain timestampKostya Shishkov2009-12-012-9/+2
| | | | | | | | 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
* Write header for RTMP packets with channel_id >= 64 correctlyKostya Shishkov2009-12-011-1/+9
| | | | Originally committed as revision 20684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read and write extended timestamps for RTMP packets.Sergiy2009-12-011-1/+8
| | | | | | Extracted from patch by Sergiy in thread "[PATCH] rtmp-output" Originally committed as revision 20683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 7l trocadero: reading right into enum variable may cause unwanted effects, useKostya Shishkov2009-12-011-1/+2
| | | | | | intermediate buffer for reading value instead in RTMP protocol handler. Originally committed as revision 20682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support "A format generated by IndigoVision 8000 video server".Michael Niedermayer2009-12-013-0/+93
| | | | Originally committed as revision 20681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* slif aka "SoftLab MPEG-2 I-frames Codec" support.Michael Niedermayer2009-12-011-0/+1
| | | | | | | Flipping one bit still is popular it seems as a means to create a new codec. fixes issue1469. Originally committed as revision 20679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning if the duration is estimated from the bitrate, as this isMichael Niedermayer2009-11-301-0/+1
| | | | | | likely not accurate. Originally committed as revision 20675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decode qcelp in aiff, implement #1524, patch by VitorVitor Sessak2009-11-302-3/+12
| | | | Originally committed as revision 20674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, max value for timescale is UINT16_MAXBaptiste Coudurier2009-11-291-1/+1
| | | | Originally committed as revision 20661 to svn://svn.ffmpeg.org/ffmpeg/trunk