summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ffserver: Send a Content-Base header in the reply to RTSP DESCRIBE requestsMartin Storsjö2010-05-251-0/+1
| | | | | | This is needed for QuickTime Player to be able to connect properly. Originally committed as revision 23325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after the previous commitMartin Storsjö2010-05-251-27/+27
| | | | Originally committed as revision 23324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* api-example: Try to avoid decoding incomplete framesMartin Storsjö2010-05-251-7/+16
| | | | | | | Use a larger input audio buffer, refill it when it has less than 4 KB data left. Originally committed as revision 23323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Split find_max_val() from find_min_book() to eliminate duplicate ↵Alex Converse2010-05-251-6/+12
| | | | | | searches. Originally committed as revision 23322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless costly inf checks from the trellis scalefactor search.Alex Converse2010-05-251-15/+0
| | | | Originally committed as revision 23319 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Trellis over scalefactors using an estimated codebook rather than ↵Alex Converse2010-05-251-8/+3
| | | | | | | | every codebook. The minimal codebook to encode the band without clipping is used (as is done in the TLS). Originally committed as revision 23318 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Only trellis over a column of 61 scalefactors (reduced from 256).Alex Converse2010-05-251-26/+52
| | | | | | This still provides plenty of dynamic range, makes every move legal, and greatly reduces the search space. Originally committed as revision 23317 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Factor out find_min_book so it can be used by multiple coefficient ↵Alex Converse2010-05-251-17/+22
| | | | | | coders. Originally committed as revision 23316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* We're using generic tag-to-ID functions, so specific codec_id assignmentsZhou Zongyi2010-05-251-5/+0
| | | | | | are no longer necessary. Patch by Zhou Zongyi <zhouzy AT os pku edu cn>. Originally committed as revision 23312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct golomb vlc decoding tables.Michael Niedermayer2010-05-251-3/+3
| | | | | | Fixes issue 1930 Originally committed as revision 23311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mmst_protocol depends on networkMåns Rullgård2010-05-251-0/+1
| | | | Originally committed as revision 23310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Samsung uses SIPP as FourCC for MPEG-4 ASP.Carl Eugen Hoyos2010-05-251-0/+1
| | | | Originally committed as revision 23309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Look for libvpx headers in the vpx subdirectory in configure, tooMartin Storsjö2010-05-251-1/+1
| | | | Originally committed as revision 23308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Headers for libvpx are installed into vpx subdirectory.Carl Eugen Hoyos2010-05-251-2/+2
| | | | Originally committed as revision 23307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix VP8 listing in general.texiMartin Storsjö2010-05-251-1/+1
| | | | Originally committed as revision 23306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 24l trocadero: RTMP reader forgot to shift high byte of timestamp to itstrueice@gmail.com2010-05-251-1/+1
| | | | | | | | proper position Patch by trueice (his gmail account is obvious) Originally committed as revision 23305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theora: Don't read an excess bit for maximum length long bit runs if the runDavid Conrad2010-05-251-18/+24
| | | | | | exactly ends the remaining blocks. Originally committed as revision 23304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP8 decoding via libvpx.James Zern2010-05-257-2/+136
| | | | | | Patch by James Zern for Google, Inc., jzern google com Originally committed as revision 23303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ogg muxer, use random serial number of each ogg streamsBaptiste Coudurier2010-05-241-1/+18
| | | | Originally committed as revision 23302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.Zhentan Feng2010-05-246-2/+696
| | | | Originally committed as revision 23301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libavfilter 1-input - 1-output regression test, corresponding to theStefano Sabatini2010-05-243-2/+136
| | | | | | | | | | target regtest-lavfi_pix_fmts. The lavfi_pix_fmts test is disabled, this because there are many tests which are failing, and there are still some output files which cannot be played by NUT/ffplay. Originally committed as revision 23297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing codec id <-> codec tag entries:Stefano Sabatini2010-05-241-0/+4
| | | | | | | | | | | | CODEC_ID_RAWVIDEO <-> Y41B CODEC_ID_RAWVIDEO <-> Y42B CODEC_ID_RAWVIDEO <-> YUV9 CODEC_ID_RAWVIDEO <-> YVU9 These codec tags are listed in fourcc.org, and are already listed in libavcodec/raw.c:ff_raw_pix_fmt_tags as AVI tags. Originally committed as revision 23296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Fix one of the codec parameter checksMartin Storsjö2010-05-241-1/+1
| | | | | | | | This is probably what was originally intended; the codec pointers are all NULL. Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Fix streaming with more than one streamMartin Storsjö2010-05-241-1/+1
| | | | | | Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Fix extradata handlingHoward Chu2010-05-241-5/+17
| | | | | | Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Fix an out of bounds readMartin Storsjö2010-05-241-1/+1
| | | | | | Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Fix another memory leakMartin Storsjö2010-05-241-1/+0
| | | | | | | | | Don't allocate st->codec, it will be overwritten by the memcpy a few lines further down. Fix by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffserver: Plug some memory leaksHoward Chu2010-05-241-0/+5
| | | | | | Patch by Howard Chu, hyc at highlandsun dot com Originally committed as revision 23290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -f framemd5 muxer similar to framecrc.Reimar Döffinger2010-05-243-12/+51
| | | | Originally committed as revision 23289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display a more descriptive log message when probe buffer limit isJai Menon2010-05-241-1/+1
| | | | | | reached. Originally committed as revision 23288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Implement custom reget_buffer for the input filter.Jai Menon2010-05-241-0/+20
| | | | Originally committed as revision 23287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip pes payload during probing to avoid start code emulation.Janne Grunau2010-05-241-2/+6
| | | | | | Patch by Janne Grunau, janne-ffmpeg jannau net Originally committed as revision 23286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix documentation of av_audio_convert.Cyril Russo2010-05-241-2/+2
| | | | | | Patch by Cyril Russo, stage D nexvision A laposte net Originally committed as revision 23285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: Write codec time base as default duration for video tracks.David Conrad2010-05-243-24/+25
| | | | | | | | This isn't exactly semantically equivalent, but the field has already been long abused to mean this, and writing it helps in determining a decent cfr time base when transcoding from a mkv where the video codec stores none (VP8). Originally committed as revision 23284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert NaN to 0/0 in av_d2qDavid Conrad2010-05-241-0/+2
| | | | | | | This fixes aspect ratio calculation for encoding from files with 0/0 stored, common with ogg/theora Originally committed as revision 23280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AVFMT_GENERIC_INDEX for Ogg demuxer. This avoids the manyReimar Döffinger2010-05-231-0/+1
| | | | | | | seeks needed for binary search when seeking to a previously seen location. Originally committed as revision 23279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* small wording fixDiego Biurrun2010-05-231-1/+1
| | | | Originally committed as revision 23277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention some more changes related to HTML 5 issues.Diego Biurrun2010-05-231-0/+7
| | | | Originally committed as revision 23276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: Revert adding the doctype to metadata; it has no meaning elsewhereDavid Conrad2010-05-231-1/+0
| | | | Originally committed as revision 23275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce the score for the aea demuxer probing function.Benjamin Larsson2010-05-231-1/+1
| | | | Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix detection of some stereo atrac files by not comparing theBenjamin Larsson2010-05-231-3/+2
| | | | | | block size mode and info byte. Originally committed as revision 23272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reflect the 0.6 branch in the Changelog.Diego Biurrun2010-05-231-1/+6
| | | | Originally committed as revision 23270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oups, 100l, revert unrelated hunk from commit r23266Baptiste Coudurier2010-05-231-12/+0
| | | | Originally committed as revision 23269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write 3gp perf tag for artist metadataBaptiste Coudurier2010-05-231-0/+1
| | | | Originally committed as revision 23268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* albm 3gp tag has optional track field not dateBaptiste Coudurier2010-05-231-1/+1
| | | | Originally committed as revision 23267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change author metadata to artist in mov de/muxerBaptiste Coudurier2010-05-233-3/+15
| | | | Originally committed as revision 23266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics : re-indent after last commit.Jai Menon2010-05-231-1/+1
| | | | Originally committed as revision 23265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Avoid manipulating NULL data pointers so that future checksJai Menon2010-05-231-0/+2
| | | | | | | remain valid. This fixes segfaults for those cases where data copy to this invalid pointer is attempted. Originally committed as revision 23264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix value for flags with "0x", to make it clear that it is anStefano Sabatini2010-05-231-1/+1
| | | | | | hexadecimal value. Originally committed as revision 23262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nut decoder read the ff_nut_video_tags to detect codec id ofStefano Sabatini2010-05-231-1/+3
| | | | | | | | | the input file. This is required as Nut codec tags are not contained in ff_codec_bmp_tags. Originally committed as revision 23260 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud