summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make av_write_header() return AVERROR(EINVAL) rather than -1 if theStefano Sabatini2010-05-221-5/+5
| | | | | | input parameters are not valid. Originally committed as revision 23253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store in a dedicated array the format name - codec id - codec typeStefano Sabatini2010-05-221-26/+21
| | | | | | mapping. Simplify. Originally committed as revision 23252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Open 2-pass logfile in binary mode for both reading and writing.Ramiro Polla2010-05-222-2/+2
| | | | | | | | | | This fixes a regression on Windows introduced by r22769 in which the data read from the file was not properly zero terminated. The file was read as text, which caused the \r characters to be suppressed. Since the zero termination happens at the end of the buffer, and there was one byte less read per line, this caused the remaining space on the buffer to contain random data. Originally committed as revision 23251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVCodecTag from riff.h into internal.h.Francesco Lavra2010-05-2212-10/+16
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 23250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer enum CodecID over int in ff_codec_get_tag().Stefano Sabatini2010-05-222-2/+2
| | | | Originally committed as revision 23249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update regression tests after removing track timecode scale from mkvencDavid Conrad2010-05-225-82/+82
| | | | Originally committed as revision 23248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Don't write track timecode scaleDavid Conrad2010-05-221-1/+0
| | | | | | It's not required for mkv and unsupported in webm Originally committed as revision 23247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Allow unknown EBML doctypeDavid Conrad2010-05-221-4/+3
| | | | Originally committed as revision 23246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Support webm doctypeJames Zern2010-05-224-9/+24
| | | | | | Patch by James Zern <jzern at google> Originally committed as revision 23245 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pixelFormatBpsAVI to pix_fmt_bps_avi and pixelFormatBpsMOV toStefano Sabatini2010-05-211-4/+4
| | | | | | | | pix_fmt_bps_mov. The new names are consistent with the predominant FFmpeg style. Originally committed as revision 23244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename findPixelFormat() to find_pix_fmt().Stefano Sabatini2010-05-211-4/+4
| | | | | | Less ugly and more consistent with the FFmpeg predominant style. Originally committed as revision 23243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused fieldBaptiste Coudurier2010-05-211-2/+0
| | | | Originally committed as revision 23232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ogg muxer, pack multiple frames into one page, much lower overheadBaptiste Coudurier2010-05-213-119/+194
| | | | Originally committed as revision 23231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Avoid busylooping while reading non-blocking inputHoward Chu2010-05-211-0/+1
| | | | | | Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the default codecs for the rtsp muxer to mpeg4 and aacMartin Storsjö2010-05-211-2/+2
| | | | | | These codecs in RTP are supported by many players. Originally committed as revision 23209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxerMartin Storsjö2010-05-212-17/+5
| | | | Originally committed as revision 23208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a libavformat internal function ff_write_chainedMartin Storsjö2010-05-212-0/+33
| | | | Originally committed as revision 23207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_raw_pixelFormatTags symbol to ff_raw_pix_fmt_tags.Stefano Sabatini2010-05-204-5/+5
| | | | | | The new name is shorter and consistent with the FFmpeg style. Originally committed as revision 23206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix doxy reference to unexisting function.Stefano Sabatini2010-05-201-1/+1
| | | | Originally committed as revision 23203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable non interleaved avi code when there is no index available.Michael Niedermayer2010-05-201-0/+10
| | | | | | Fixes issue1956. Originally committed as revision 23202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: make more compact the code for handle_jpeg(), this also allowsStefano Sabatini2010-05-191-14/+5
| | | | | | vertical alignment. Improve readability. Originally committed as revision 31186 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change eval API to take parent log context and log level offset.Michael Niedermayer2010-05-194-23/+30
| | | | | | this is based on stefanos work, especially all bugs are his fault ;) Originally committed as revision 23201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print parent log context too, if available.Michael Niedermayer2010-05-191-3/+9
| | | | Originally committed as revision 23200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make it possible for a log context to keep track of its parent context.Michael Niedermayer2010-05-192-1/+9
| | | | | | | This is usefull to keep track and display relations where things are a bit more complex (like AVProtocols or demuxers used by demuxers and such) Originally committed as revision 23199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove PI definition and use M_PI instead.Stefano Sabatini2010-05-192-7/+2
| | | | | | M_PI is defined by the included file libavutil/mathematics.h. Originally committed as revision 31185 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* av_default_item_name() so Simply AVClasses need 1 function less.Michael Niedermayer2010-05-192-0/+5
| | | | Originally committed as revision 23198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix x264 encoding when delay is > number of input framesBaptiste Coudurier2010-05-191-0/+2
| | | | Originally committed as revision 23197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a chomp BSF to consume zero padding at the end of a packet.Alex Converse2010-05-193-0/+49
| | | | Originally committed as revision 23196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make aac_decode_frame() consume zero padding at the end of a packet.Alex Converse2010-05-191-1/+6
| | | | Originally committed as revision 23195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump minor version for CODEC_ID_VP8David Conrad2010-05-191-1/+1
| | | | Originally committed as revision 23194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VP80 fourccGoogle2010-05-191-0/+1
| | | | | | Patch by Google Originally committed as revision 23193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: Add V_VP8Google2010-05-191-0/+1
| | | | | | Patch by Google Originally committed as revision 23192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VP8 CODEC_IDGoogle2010-05-191-0/+1
| | | | | | Patch by Google Originally committed as revision 23191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 13% faster yuv420 to rgb15 mmx.Loren Merritt2010-05-192-21/+19
| | | | | | It is now faster than the old gpl version on conroe. Originally committed as revision 31181 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix a crash when opening WMS RTSP streamsMartin Storsjö2010-05-191-0/+2
| | | | | | Fixes issue 1948 Originally committed as revision 23181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 40% faster yuv420 to rgb24 mmx.Loren Merritt2010-05-191-72/+71
| | | | | | It is now faster than the old gpl version on conroe. Originally committed as revision 31180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add an APIchanges note regarding the new rtp hinting flagMartin Storsjö2010-05-191-0/+3
| | | | Originally committed as revision 23180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Late bump of the minor version, for the addition of AVFMT_FLAG_RTP_HINTMartin Storsjö2010-05-191-1/+1
| | | | Originally committed as revision 23179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a changelog entry for the RTP hinting in the mov muxerMartin Storsjö2010-05-191-0/+1
| | | | Originally committed as revision 23178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix signedness of q_delta field of the IVIMbInfo.Maxim Poliakovski2010-05-191-1/+1
| | | | | | Patch by Maxim max_pole () gmx * de Originally committed as revision 23170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Free ebml binary buffer on errorDavid Conrad2010-05-181-1/+3
| | | | | | Based on a Chromium patch Originally committed as revision 23169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Fix buffer overread in matroska_ebmlnum_uintDavid Conrad2010-05-181-1/+1
| | | | | | Based on a Chromium patch Originally committed as revision 23168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Ensure time_scale is nonzero, fixes divide-by-zero if the fileDavid Conrad2010-05-181-0/+2
| | | | | | | | has 0 written Based on a Chromium patch Originally committed as revision 23167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Use av_freep in ebml_read_asciiDavid Conrad2010-05-181-1/+1
| | | | | | Based on a Chromium patch Originally committed as revision 23166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use a heuristic for describing the RTP packets using sample dataMartin Storsjö2010-05-182-2/+230
| | | | Originally committed as revision 23165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add initial support for RTP hinting in the mov muxerMartin Storsjö2010-05-184-3/+414
| | | | Originally committed as revision 23164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mov_write_packet non-static, add ff_ prefixMartin Storsjö2010-05-182-8/+10
| | | | Originally committed as revision 23163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the mov muxer structures to a separate headerMartin Storsjö2010-05-182-59/+89
| | | | Originally committed as revision 23162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag for enabling RTP hintingMartin Storsjö2010-05-182-0/+2
| | | | Originally committed as revision 23161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_sdp_write_media a lavf-internal functionMartin Storsjö2010-05-182-2/+24
| | | | | | | This is in preparation for RTP hinting in the MOV muxer, where it needs to be able to create SDP fragments for each media stream. Originally committed as revision 23160 to svn://svn.ffmpeg.org/ffmpeg/trunk