summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* log.c: Use parameter passed to macro instead of the equivalent local variableRamiro Polla2010-06-09
| | | | | | in the only function that uses the macro. Originally committed as revision 23555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add win32 console color output.Ramiro Polla2010-06-09
| | | | | | Based on patches by James Darnley <james dot darnley at gmail dot com>. Originally committed as revision 23554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ansi color array to outside of av_log_default_callback(). Do not passRamiro Polla2010-06-09
| | | | | | | ansi color code to colored_fputs(), and pass instead the error level so the proper color code may be used. Originally committed as revision 23553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename use_ansi_color to use_color so it is not ANSI-specific.Ramiro Polla2010-06-09
| | | | Originally committed as revision 23552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_compare_mod()Michael Niedermayer2010-06-09
| | | | Originally committed as revision 23551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the http protocol handler returns errors if a delayed open had failedMartin Storsjö2010-06-09
| | | | Originally committed as revision 23548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix printf format warningsEli Friedman2010-06-09
| | | | | | patch by Eli Friedman <eli dot friedman at gmail dot com> Originally committed as revision 23547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize the http connection in http_seek, tooMartin Storsjö2010-06-09
| | | | | | | | This makes url_fsize return correct values for delay opened connections that have not yet been initialized. This fixes using the image2 demuxer with http sources. Originally committed as revision 23546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve the mp4toannexb BSF to convert the extradata.Luca Abeni2010-06-09
| | | | Originally committed as revision 23545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make texi2pod.pl process @include texinfo directives wherever they areStefano Sabatini2010-06-08
| | | | | | placed, and not only if inside @c man begin/end sections. Originally committed as revision 23544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Tweak texi2pod.pl to make it print the various sections in theStefano Sabatini2010-06-08
| | | | | | | | | | generated document following the same order as that used in the texi file. Also allow rendering of *all* the sections, not only a limited predefined subset. Originally committed as revision 23543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a rule triggered by @man begin WORD WORDS. This rule onlyStefano Sabatini2010-06-08
| | | | | | | | | | outputs the section if WORDS has been defined in the list of options flags. The meaning of this rule is not clear, and not used by the FFmpeg documentation system anyway. Originally committed as revision 23542 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename the ff* tools @chapters "Invocation" to "Synopsis", and placeStefano Sabatini2010-06-08
| | | | | | | | | | | them at the beginning of the file, for consistency with the final ordering of the corresponding man pages. Also create a separate @chapter for the "Options" section, as it is done for the man pages, rather than merge it in the same section of "Synopsis". Originally committed as revision 23541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to seek to index for streamed files and if the user explicitlyReimar Döffinger2010-06-08
| | | | | | requested us not to read the index. Originally committed as revision 23540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the MATROSKA_ID_TAGDEFAULT to match the specification (instead ofReimar Döffinger2010-06-08
| | | | | | libmatroska etc. typo) but continue to support the "old" value. Originally committed as revision 23539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In case of stream copy, copy the extradata from the input codec context toLuca Abeni2010-06-08
| | | | | | the output codec context (instead of just copying a pointer to the extradata). Originally committed as revision 23538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix vp3_draw_horiz_band to calculate chroma offsets correctlyReimar Döffinger2010-06-08
| | | | | | for 4:2:2 and 4:4:4 formats. Originally committed as revision 23537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RTSP tunneling over HTTPJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail dot com Originally committed as revision 23536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the RTSP muxer use rtsp_hd_out, for consistencyMartin Storsjö2010-06-08
| | | | Originally committed as revision 23535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-06-08
| | | | Originally committed as revision 23534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Pictor/PC Paint to image2 muxer/demuxerPeter Ross2010-06-08
| | | | Originally committed as revision 23533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pictor/PC Paint decoderPeter Ross2010-06-08
| | | | Originally committed as revision 23532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for disabling chunked transfer encoding for the http protocolJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, josh dot allmann at gmail Originally committed as revision 23531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ff_ega_palettePeter Ross2010-06-08
| | | | Originally committed as revision 23530 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix handling of errors in the http protocolMartin Storsjö2010-06-08
| | | | | | | | | If http_connect fails, we've already stored the new connection handle in s->hd, so clear it so http_close won't double-free it. 10l to me for not spotting it during review Originally committed as revision 23529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bugs in the http custom header handlingMartin Storsjö2010-06-08
| | | | | | | | | Initialize the buffer av_strlcatf writes into. Add the dash at the end of the Range header. 10l to me for not spotting it earlier Originally committed as revision 23528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroska: move LFG state from muxer context to local variableMåns Rullgård2010-06-08
| | | | | | | The LFG is only used in one place, so there is no need to keep it in the context. Originally committed as revision 23527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the capability to write custom HTTP headersJosh Allmann2010-06-08
| | | | | | Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify the behaviour of http_open to implicitly delay connection establishmentJosh Allmann2010-06-08
| | | | | | | | The connection is made on the first http_read, http_write or http_seek. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support presets in ffserver.confHoward Chu2010-06-08
| | | | Originally committed as revision 23524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prepare Indeo4 (step 1): upscale indeo5 base tables by 2 and convert those ↵Maxim Poliakovski2010-06-08
| | | | | | into uint16_t. Originally committed as revision 23523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvpx: Set the libvpx frame dropping threshold to frame_skip_thresholdMartin Storsjö2010-06-08
| | | | | | | The default for frame_skip_threshold is 0, which thus disables the libvpx frame dropping. Originally committed as revision 23522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libvpx: Don't use the VPX_KF_FIXED modeJames Zern2010-06-08
| | | | | | | | This mode emits no keyframes at all, despite its name. Patch by James Zern, jzern at google dot com Originally committed as revision 23521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fold constants and re-indent after last commit.Alex Converse2010-06-08
| | | | Originally committed as revision 23520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Base downsampled SBR synthesis filterbank on a single IMDCT.Alex Converse2010-06-08
| | | | | | | Based on Han-Wen Hsu, et al. "Fast Complex Quadrature Mirror Filterbanks for MPEG-4 HE-AAC" Originally committed as revision 23519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare myself (Maxim Poliakovski) maintainer for the OMA Demuxer.Maxim Poliakovski2010-06-08
| | | | Originally committed as revision 23518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Fix types and now unused variables after last commit.Alex Converse2010-06-07
| | | | Originally committed as revision 23517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rewrite the SBR decoder QMF analysis filter on top of the IMDCT instead of ↵Alex Converse2010-06-07
| | | | | | | | | | the RDFT. This is based on a procedure to implement the filterbank on the DCT-IV described in Hsu, H.W. et al. "A Complex Quadrature Mirror Filterbanks for MPEG-4 HE-AAC" http://sites.google.com/site/wenchiehlee1020/Papers/ComplexFB_AES_121paper144.pdf Originally committed as revision 23516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new macro AV_BASE64_SIZE.James Zern2010-06-07
| | | | | | Patch by James Zern, jzern google com Originally committed as revision 23515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize 1D DCT transform used in MP{1,2,3}. Makes also this function suitableVitor Sessak2010-06-07
| | | | | | for being moved to the shared DCT framework in the future. Originally committed as revision 23514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Added M701 codec_tag for mpeg2videoTomas Härdin2010-06-07
| | | | Originally committed as revision 23513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, there is no aac.c any more, so no need for a dependency.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* librtmp may link to different ssl implementationsLuca Barbato2010-06-06
| | | | | | Make sure we link using the right libs by using pkg-config Originally committed as revision 23511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not exclude anymore the pixel formats rgb444, bgr444, rgb4_byte,Stefano Sabatini2010-06-06
| | | | | | | | and bgr4_byte from the lavfi-pix_fmts test. The formats are now supported by NUT. Originally committed as revision 23510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not read the RM index when input is streamed (since it requires seekingReimar Döffinger2010-06-06
| | | | | | forward and then back again) or AVFMT_FLAG_IGNIDX is set. Originally committed as revision 23509 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to B4BY and R4BY NUT codec tags added in NUT r672.Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix width computation for nv12/nv21 in ff_get_plane_bytewidth().Stefano Sabatini2010-06-06
| | | | Originally committed as revision 23507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regtest: add seektest reference files for rgb/yuv in aviMåns Rullgård2010-06-06
| | | | Originally committed as revision 23506 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacdec also depends on cbrt_tables.h for hardcoded-tables.Reimar Döffinger2010-06-06
| | | | Originally committed as revision 23505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bgr/rgb444 for nutMichael Niedermayer2010-06-06
| | | | Originally committed as revision 23504 to svn://svn.ffmpeg.org/ffmpeg/trunk