summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Reorder nut specific codec tags and add a comment for marking them asStefano Sabatini2010-05-09
| | | | | | | | | | | | such. Also put the [3][0][0][0] codec tag, mapped to rgb565le, in a special section. It needs to be specified *after* the nut RGB[16] codec tag, otherwise it will be used by default when encoding normal non-flipped rgb565le, and will be decoded like a flipped format (see rawdec.c:raw_init_decoder()). Originally committed as revision 23075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing nut-specific codec tags for rawvideo pixel formats.Stefano Sabatini2010-05-09
| | | | | | | | | | | | | | | | | | Add codec tags for the formats: [15]BGR Packed RGB 5:5:5, 16bpp, (msb)1A 5R 5G 5B(lsb), big-endian [NOT in AVI] [15]RGB Packed BGR 5:5:5, 16bpp, (msb)1A 5B 5G 5R(lsb), big-endian [NOT in AVI] [16]BGR Packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian [NOT in AVI] [16]RGB Packed BGR 5:6:5, 16bpp, (msb) 5B 6G 5R(lsb), big-endian [NOT in AVI] RGBA Packed RGBA 8:8:8:8, 32bpp, RGBA [NOT in AVI] BGRA Packed RGBA 8:8:8:8, 32bpp, BGRA [NOT in AVI] ABGR Packed RGBA 8:8:8:8, 32bpp, ABGR [NOT in AVI] ARGB Packed RGBA 8:8:8:8, 32bpp, ARGB [NOT in AVI] RGB[24] Packed RGB 8:8:8, 24bpp RGB [NOT in AVI] BGR[24] Packed RGB 8:8:8, 24bpp BGR [NOT in AVI] which are listed in the nut4cc.txt spec. Originally committed as revision 23074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the codec tags for the yuvjXXX pixel formats the same as theStefano Sabatini2010-05-09
| | | | | | corresponding ones for the yuvXXX pixel formats. Originally committed as revision 23073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to the Y411 codec tag, corresponding to the rawvideo pixelStefano Sabatini2010-05-09
| | | | | | | | format uyyvyy411. The codec tag is referenced in fourcc.org. Originally committed as revision 23072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the nut demuxer issue a more meaningful error message if itStefano Sabatini2010-05-09
| | | | | | cannot recognize the provided codec tag. Originally committed as revision 23071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bswap: 10L add missing parens around macro argsMåns Rullgård2010-05-09
| | | | Originally committed as revision 23070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace usage of s->streams[0]->* with st->*, which is shorter.Sebastian Vater2010-05-09
| | | | | | Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove "bps" parameter to decodeplane8/32(), it's unused.Sebastian Vater2010-05-09
| | | | | | Patch by Sebastian Vater <cdgs basty googlemail com>. Originally committed as revision 23068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add entry for AVFilterPicRef interlaced and top_field_first fieldsStefano Sabatini2010-05-09
| | | | | | addition. Originally committed as revision 23067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavfi minor after the addition of the fields interlaced andStefano Sabatini2010-05-09
| | | | | | top_field_first in AVFilterPicRef, done in r23044. Originally committed as revision 23066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* qt-faststart: Avoid leaking memory if encountering a file with double ftyp atomsMartin Storsjö2010-05-09
| | | | Originally committed as revision 23065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FATE: update idroq-video-encode commandMåns Rullgård2010-05-09
| | | | Originally committed as revision 23064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IFF: decode last 8 pixels per lineMåns Rullgård2010-05-09
| | | | | | | | | | | The decodeplane8() function processes one byte of input less than it should. Also, the for loop has an unusual style with side-effects in the controlling expression; replaced with a more intuitive while loop. 10l to Basty. Originally committed as revision 23063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build with swscale disabledMåns Rullgård2010-05-09
| | | | Originally committed as revision 23062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize decodeplane8(), patch by Sebastian Vater <cdgs basty googlemail com>.Sebastian Vater2010-05-08
| | | | Originally committed as revision 23061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix auto-scaling.Stefano Sabatini2010-05-08
| | | | | | | | Use the numeric value assigned to sws_flags for the sws_flags set in the graph, rather than the string "bilinear", which is not even parsable by the scale filter. Originally committed as revision 23060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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