summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add means to adjust the log level per context.Michael Niedermayer2010-05-08
| | | | Originally committed as revision 23059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove hardcoded-tables hack for IA-64: with latest binutils that now actuallyReimar Döffinger2010-05-08
| | | | | | causes linking errors instead of avoiding them. Originally committed as revision 23058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another try for fixing/improving decode_video documentation.Reimar Döffinger2010-05-08
| | | | Originally committed as revision 23057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make config_props() show conversion information before to create theStefano Sabatini2010-05-07
| | | | | | | | | | swscale context. This makes eventual warnings issued in case of swscale context creation failure to be shown after the conversion information rather than before, which is slightly less confusing. Originally committed as revision 23056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log input size, input format and swscale flags used for conversion inStefano Sabatini2010-05-07
| | | | | | | | config_props(). Useful for debugging. Originally committed as revision 23055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* blackfin: fix yuv422 to yuv420 conversionRonaldo Moura2010-05-07
| | | | | | | | The old code is correct only when stride = 2*width. Patch by Ronaldo Moura <ronaldo d moura monity com br> Originally committed as revision 31142 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* vf_pad: fix mixed code and declarationsMåns Rullgård2010-05-07
| | | | Originally committed as revision 23054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* c99 sucks. Replacing scanf("%i") by strtoul()Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the pad filter.Stefano Sabatini2010-05-07
| | | | Originally committed as revision 23052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document cmdutils.c:print_error().Stefano Sabatini2010-05-07
| | | | Originally committed as revision 23051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove messy pading hack in ffmpeg.c.Michael Niedermayer2010-05-07
| | | | | | Use avfilters if you want padding! Originally committed as revision 23050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure get_filtered_video_pic() doesnt loose interlacedframe/tff.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable libavfilter by default and fix pading for mxf-d10Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: update suncc SPARC CPU name mappingMichael Kostylev2010-05-07
| | | | | | Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 23047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pad filter.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SPARC: disable VIS for Niagara CPUMichael Kostylev2010-05-07
| | | | | | | | The Niagara/T1 supports only a subset of VIS, and even this is very slow. Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 23045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to keep track of interlaced and top field first.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avfilter support for ffmpegMichael Niedermayer2010-05-07
| | | | Originally committed as revision 23043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable vsrc_bufferMichael Niedermayer2010-05-07
| | | | Originally committed as revision 23042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support setting flags for sws.Michael Niedermayer2010-05-07
| | | | Originally committed as revision 23041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Favor chunk size over hitting the correct position after reading the chunk ↵Michael Niedermayer2010-05-07
| | | | | | | | size in asf. Fixes issue1923 Originally committed as revision 23040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "Memory buffer source filter" from SOC.Michael Niedermayer2010-05-07
| | | | | | This is needed by the current SOC-ffmpeg.c code. Originally committed as revision 23039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add intra refresh and crf-max support to the libavcodec libx264 wrapper.Jason Garrett-Glaser2010-05-06
| | | | | | Minor version bump. Originally committed as revision 23038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: store the result of clipping added in r23035Alex Converse2010-05-06
| | | | Originally committed as revision 23037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Error out when too many bits per frame are requested.Alex Converse2010-05-06
| | | | Originally committed as revision 23036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the faac inspired quantizer search make sense for a slightly narrower ↵Alex Converse2010-05-06
| | | | | | definition of "make sense." Originally committed as revision 23035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-05-05
| | | | Originally committed as revision 23034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify print_error(), directly use av_strerror()/strerror() forStefano Sabatini2010-05-05
| | | | | | printing the error code associated to FF_NETERROR(EPROTONOSUPPORT). Originally committed as revision 23033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make print_error() use strerror() in case av_strerror() fails.Stefano Sabatini2010-05-05
| | | | | | | | | Should provide a meaningful error message for systems which do not support strerror_r(). Fix roundup issue #1894. Originally committed as revision 23032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_strerror() return -1 even in the case when av_strerror_r() isStefano Sabatini2010-05-05
| | | | | | | | | | not defined. This allows applications to check if av_strerror() cannot provide a meaningful representation for the provided error code, without having to actually check the filled string. Originally committed as revision 23031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Set colorspace infoDavid Conrad2010-05-05
| | | | Originally committed as revision 23030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Use AV_RB32David Conrad2010-05-05
| | | | Originally committed as revision 23029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Set open-gopDavid Conrad2010-05-05
| | | | Originally committed as revision 23028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Set keyframe intervalDavid Conrad2010-05-05
| | | | Originally committed as revision 23027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Use constant quality for constant quality, not noise thresholdDavid Conrad2010-05-05
| | | | Originally committed as revision 23026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* schroenc: Don't touch gop_structure by default, it should be left adaptiveDavid Conrad2010-05-05
| | | | Originally committed as revision 23025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse IFF metadata.Sebastian Vater2010-05-05
| | | | | | Patch by Sebastian Vater, cdgs D basty A googlemail Originally committed as revision 23024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Align plane size to word-boundary.Sebastian Vater2010-05-05
| | | | | | Patch by Sebastian Vater, cdgs D basty A googlemail Originally committed as revision 23023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Write QuickTime chaptersDavid Conrad2010-05-05
| | | | Originally committed as revision 23022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Swap positions of mov_write_header and mov_write_packetDavid Conrad2010-05-05
| | | | Originally committed as revision 23021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read nero chaptersDavid Conrad2010-05-05
| | | | Originally committed as revision 23020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use pkt->size when it is potentially uninitialized.Thierry Foucu2010-05-04
| | | | | | Patch by Thierry Foucu, tfoucu gmail Originally committed as revision 23017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alternative LGPL-licensed, MMX-optimized YUV to RGB conversion routinesDiego Biurrun2010-05-04
| | | | | | written by Kostya Shishkov Originally committed as revision 31135 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert r22974 int->unsigned parts that don't have any meaningful effect.Ronald S. Bultje2010-05-03
| | | | Originally committed as revision 23016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_strerror() print an error message mentioning the error codeStefano Sabatini2010-05-03
| | | | | | | | | number if strerror_r() did not succeed for whatever reason. This avoids the need for the application to fill the string in case strerror_r() fails, for example because the error code is not known. Originally committed as revision 23015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: The SBR refactor requires the use of 2 independent output X buffers.Alex Converse2010-05-03
| | | | Originally committed as revision 23014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow compiler-specific flags for --disable-optimizationsMåns Rullgård2010-05-03
| | | | | | | ICC needs at least -O1 to link so add this when optimisations are otherwise disabled. Originally committed as revision 23013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* amrnbdec: Apply AMR_SAMPLE_SCALE when finishing the decoder outputMartin Storsjö2010-05-03
| | | | | | The output scaling was accidentally removed in rev 22937. Originally committed as revision 23012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another buffer overflow, fixes issue1758.Ronald S. Bultje2010-05-02
| | | | Originally committed as revision 23011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow to set archiver tool ar.Carl Eugen Hoyos2010-05-02
| | | | Originally committed as revision 23010 to svn://svn.ffmpeg.org/ffmpeg/trunk