summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add byte reordering for the SIPRO audio codec. See "rmdec.c: add SIPR codecRonald S. Bultje2009-03-201-7/+62
| | | | | | try #2" thread. Patch originally by Vladimir Voroshilov. Originally committed as revision 18062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Assign the x-pf-asf payload string to be decoded by rtp_asf.c, and add aRonald S. Bultje2009-03-203-0/+51
| | | | | | | | SDP line handler that parses the streamID in the SDP so that ASF stream data can be matched to their respective streams in the RTSP demuxer. See "[PATCH] RTSP-MS 12/15: ASF payload support" thread on mailinglist. Originally committed as revision 18061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check av_find_stream_info return valueBaptiste Coudurier2009-03-201-1/+5
| | | | Originally committed as revision 18060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uniformize log messages and add some moreBaptiste Coudurier2009-03-201-3/+7
| | | | Originally committed as revision 18059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use lfg and ff_random_get_seed instead of deprecated av_randomBaptiste Coudurier2009-03-201-6/+7
| | | | Originally committed as revision 18058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check if feed and stream already exist before registering new oneBaptiste Coudurier2009-03-201-11/+30
| | | | Originally committed as revision 18057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make softfloat test program compile again: Setting the av_log_level variableDiego Biurrun2009-03-201-1/+1
| | | | | | needs to be replaced by a call to av_log_set_level(). Originally committed as revision 18056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AES test program compile again: Setting the av_log_level variableDiego Biurrun2009-03-201-1/+1
| | | | | | needs to be replaced by a call to av_log_set_level(). Originally committed as revision 18055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize *srcContext, *dstContext, *outContext to NULL, avoids the warnings:Diego Biurrun2009-03-191-2/+2
| | | | | | | | libswscale/swscale-example.c:60: warning: 'outContext' may be used uninitialized in this function libswscale/swscale-example.c:60: warning: 'dstContext' may be used uninitialized in this function libswscale/swscale-example.c:60: warning: 'srcContext' may be used uninitialized in this function Originally committed as revision 29008 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove useless casting in asm "m" operand.Matthieu Castet2009-03-191-2/+2
| | | | | | Patch by Matthieu Castet, castet D matthieu A free D fr Originally committed as revision 29007 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove useless casting in asm "m" operand.Matthieu Castet2009-03-191-2/+2
| | | | | | Patch by Matthieu Castet, castet D matthieu A free D fr Originally committed as revision 18054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg fail if the argument provided to the -pix_fmt option isStefano Sabatini2009-03-191-2/+6
| | | | | | invalid. Originally committed as revision 18053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set avi fsize to INT64_MAX if riff tag end is not set and file size is not ↵Baptiste Coudurier2009-03-191-1/+1
| | | | | | available Originally committed as revision 18052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move max analyze duration check before considering new packetBaptiste Coudurier2009-03-191-4/+4
| | | | Originally committed as revision 18051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allocate executable memory with VirtualAlloc() in Windows.Ramiro Polla2009-03-191-0/+10
| | | | Originally committed as revision 29006 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check for VirtualAlloc() so it may be used to allocate executable memory inRamiro Polla2009-03-191-0/+2
| | | | | | Windows. Originally committed as revision 18050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop unnecessary cast and cosmetically align.Ramiro Polla2009-03-191-5/+5
| | | | Originally committed as revision 29005 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Support raw TrueHD filesRamiro Polla2009-03-195-2/+35
| | | | Originally committed as revision 18049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation after r18047.Reimar Döffinger2009-03-191-7/+7
| | | | Originally committed as revision 18048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change linesize alignment method to ensure that linesize[0] == 2*linesize[1]Reimar Döffinger2009-03-191-1/+9
| | | | | | | for YUV420P and YUV422P always. Fixes MPEG-2 4:2:2 encoding on PPC and ARM, and should fix mxf_d10 regression. Originally committed as revision 18047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set linesize for palette data, it does not make sense and createsReimar Döffinger2009-03-191-1/+0
| | | | | | problems with following patch to fix linesize alignment. Originally committed as revision 18046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split TrueHD decoder from MLPRamiro Polla2009-03-197-6/+26
| | | | Originally committed as revision 18045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MOV: Use the AOT enum for the mp4_audio_types mapping.Alex Converse2009-03-191-5/+5
| | | | Originally committed as revision 18044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RevertMichael Niedermayer2009-03-191-28/+18
| | | | | | | | | | | | | Date: Wed Mar 18 23:11:50 2009 New Revision: 28996 Log: Fix libswscale compilation on non-x86, hopefully without breaking MinGW64 again. This change was non optimal, correct would have been to revert the offending commits if no time was available to find a clean fix. Originally committed as revision 29003 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* typedef int x86_reg on non x86Michael Niedermayer2009-03-191-0/+2
| | | | Originally committed as revision 18043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 10l typo.Michael Niedermayer2009-03-191-4/+4
| | | | Originally committed as revision 29002 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Nicely align output columns.Diego Biurrun2009-03-191-1/+1
| | | | Originally committed as revision 18042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unscaled converters forMichael Niedermayer2009-03-194-1/+324
| | | | | | | | | YUYV->YUV420P YUYV->YUV422P UYVY->YUV420P UYVY->YUV422P Originally committed as revision 28997 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* share some constants between the FLAC encoder and FLAC decoderJustin Ruggles2009-03-193-15/+10
| | | | Originally committed as revision 18041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation of adler32 test program: Use av_log_set_level()Diego Biurrun2009-03-191-1/+1
| | | | | | instead of assigning a value to the av_log_level variable. Originally committed as revision 18040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix copy and paste typo in input/output devices section.Diego Biurrun2009-03-191-1/+1
| | | | Originally committed as revision 18039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix libswscale compilation on non-x86, hopefully without breaking MinGW64 again.Reimar Döffinger2009-03-181-18/+28
| | | | Originally committed as revision 28996 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use read_yesno() in opt_output_file().Stefano Sabatini2009-03-181-6/+1
| | | | Originally committed as revision 18038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement read_yesno().Stefano Sabatini2009-03-182-0/+17
| | | | Originally committed as revision 18037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flush the remaning chars in the input buffer after reading theStefano Sabatini2009-03-181-0/+2
| | | | | | | | response to the "Overwrite ? [y/N]" question. Fix the behaviour when the question is asked more than one time. Originally committed as revision 18036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a name field for AVPixFmtDescriptor.Stefano Sabatini2009-03-182-0/+17
| | | | Originally committed as revision 18035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale-example: use LFG instead of random()Ramiro Polla2009-03-181-1/+5
| | | | Originally committed as revision 28993 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not assume long is same width as x86 register.Ramiro Polla2009-03-185-36/+39
| | | | Originally committed as revision 28992 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo in AOT_ER_AAC_ELDAlex Converse2009-03-181-1/+1
| | | | Originally committed as revision 18034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update the MPEG-4 AOT table.Alex Converse2009-03-181-0/+13
| | | | Originally committed as revision 18033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename GUID typedef to ff_asf_guid to fix MinGW compilation failureReimar Döffinger2009-03-184-55/+55
| | | | | | (GUID is also defined, but differently, in Windows headers). Originally committed as revision 18032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move MPEG-4 AOT enum to mpeg4audio.h.Alex Converse2009-03-182-30/+30
| | | | Originally committed as revision 18031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a special guidcmp function to compare ASF guids, to avoid the manyReimar Döffinger2009-03-181-19/+24
| | | | | | duplicated sizeof(GUID). Originally committed as revision 18030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consistently use ff_ prefixes for internal symbols.Diego Biurrun2009-03-188-25/+25
| | | | Originally committed as revision 28988 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add list of supported input/output devices.Diego Biurrun2009-03-181-0/+19
| | | | Originally committed as revision 18029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adjust @columnfractions settings to reflect the number of columns in the table.Diego Biurrun2009-03-181-2/+2
| | | | Originally committed as revision 18028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use intptr_t to cast pointers to int in codecs maintained by benjamin larssonRamiro Polla2009-03-172-2/+2
| | | | Originally committed as revision 18027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a fillPlane function to fill a plane with one constant valueCédric Schieli2009-03-171-8/+11
| | | | Originally committed as revision 28986 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Don't write outside of the picture buffer in planarCopy in the gray caseCédric Schieli2009-03-171-2/+8
| | | | Originally committed as revision 28985 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix wrong @file tag.Ronald S. Bultje2009-03-171-1/+1
| | | | Originally committed as revision 18026 to svn://svn.ffmpeg.org/ffmpeg/trunk