summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cosmetics: vertical alignment and line wrapJustin Ruggles2011-01-213-8/+9
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 75b98610a7ce7acf34f583a04aaccd8c619947fe)
* Add memory allocation failure checks to ff_iir_filter_init_coeffs().Justin Ruggles2011-01-213-6/+17
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d42dc217ed2b0f886ffc50b26c2bbff1fee5feca)
* Make PNG test depend on PNG codecMans Rullgard2011-01-211-0/+1
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f0f54c297f1283025d423c4aed817ae31ba549cb)
* cosmetics: wrap long lineJustin Ruggles2011-01-211-1/+3
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit ebb230279aa0ecc2fda4c617860eb354531d4b63)
* Add function ff_iir_filter_flt() to accept floating-point input and output.Justin Ruggles2011-01-212-39/+80
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 0a3d7697b4fcb62305cd4a893b621a406a029ff0)
* mpegtsenc: prefer metadata keyed with "service_name"Janne Grunau2011-01-211-2/+2
| | | | | | | title metadata is only used as fallback if no service_name is available. Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit e5fe65512bfc824b9827ed29909a54122582ef2a)
* Set service_provider and service_name in mpegts demuxerGeorgi Chorbadzhiyski2011-01-211-2/+2
| | | | | | | | | Set service_provider and service_name in mpegts demuxer, previously name and provider_name were set but since the muxer uses service_provider and service_name use them. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit e8315e78814f92d6d031bd3a909d896351a416f8)
* id3v2: don't overwrite existing tagsAnton Khirnov2011-01-211-1/+1
| | | | | | | | | | | Apparently some broken taggers prepend a new ID3v2 tag leaving the existing one intact. Our parser currently reads all tags and overwrites existing values with supposedly outdated ones. fixes issue2419 Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 75aded8328e35c9391e25a1c857eb6e3b801a8d8)
* id3v2: convert metadata after all the tags were readAnton Khirnov2011-01-211-2/+2
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f7fcd6a2549b58a69c02622503676a8b142e4c43)
* id3v2: make ff_id3v2_parse staticAnton Khirnov2011-01-212-34/+28
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 46a2da7698634214eed6d269fc72d284e3d3700f)
* libavcodec minor version is > 99 so fix the formatingGeorgi Chorbadzhiyski2011-01-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | libavcodec minor version is > 99 so when printing the library versions the output is a little bit broken: libavutil 50. 36. 0 / 50.36. 0 libavcore 0. 16. 1 / 0.16. 1 libavcodec 52.108. 0 / 52.108. 0 libavformat 52. 94. 0 / 52.94. 0 libavdevice 52. 2. 3 / 52. 2. 3 libavfilter 1. 74. 0 / 1.74. 0 libswscale 0. 12. 0 / 0.12. 0 Change the formating to look like this: libavutil 50. 36. 0 / 50. 36. 0 libavcore 0. 16. 1 / 0. 16. 1 libavcodec 52.108. 0 / 52.108. 0 libavformat 52. 94. 0 / 52. 94. 0 libavdevice 52. 2. 3 / 52. 2. 3 libavfilter 1. 74. 0 / 1. 74. 0 libswscale 0. 12. 0 / 0. 12. 0 Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit c0dd5653043ca57848dfa480d02d581c7eb1d710)
* Add service_provider and service_name metadataGeorgi Chorbadzhiyski2011-01-212-3/+9
| | | | | | | | | | | | | | | This patch adds support in mpegts muxer for using service_provider and service_name metadata to set service_provider_name and service_name fields in SDT. Example usage: ffmpeg -i file.ts -f mpegts -re -acodec copy -vcodec copy -f mpegts \ -metadata service_provider="Some provider" \ -metadata service_name="Some Channel" \ "udp://239.0.70.2:5000?pkt_size=1316&ttl=1" Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 69688e71bc4c4318209e8d4e3861c47186caebda)
* Fix horizontal/horizontal_up 8x8l intra prediction x86/simd functions.Ronald S. Bultje2011-01-211-22/+10
| | | | | | | | | The original functions did not work correctly for edge pixels, e.g. when CODEC_FLAG_EMU_EDGE is set, leading to corrupt output in e.g. VLC. Based on a patch by Daniel Kang <daniel d kang gmail com>. Signed-off-by: Ronald S. Bultje <rsbultje gmail com> (cherry picked from commit b9c7f66e6da8ac77eaa0c3fb6d476e6fc929b3c9)
* Fix use of sstep/dstep in ff_iir_filter().Justin Ruggles2011-01-211-1/+1
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit c3897d7690fffe016de8ed56fdbdb9d685dbcce2)
* Add regression test for stereo s16le in voc.Justin Ruggles2011-01-212-1/+8
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit a4f5af13fb00d7f55946470bb0f52e1dbf5f3c6a)
* configure: fix mktemp test and fallback functionMans Rullgard2011-01-211-2/+2
| | | | (cherry picked from commit 09a5c2452cab8931f70ecb51705114682c962f98)
* Add GPL dependancy for libmpcodecsMichael Niedermayer2011-01-211-0/+1
|
* Warn about vf_mpMichael Niedermayer2011-01-201-0/+5
|
* Enable libmpcodecs support.Michael Niedermayer2011-01-202-0/+66
|
* Add ASMALIGN() hack to patch around its recent removial from configureMichael Niedermayer2011-01-201-0/+2
|
* Add libmpcodecs wrapper for libavfilter, still disabledMichael Niedermayer2011-01-201-0/+913
|
* Hack libmpcodecs to make it buildable.Michael Niedermayer2011-01-204-7/+17
|
* Remove dependancy of m_option & m_struct from libmpcodecs.Michael Niedermayer2011-01-203-71/+24
|
* Avoid dependancy on global variable verbose in libmpcodecs/vf_pullup.cMichael Niedermayer2011-01-201-1/+1
|
* Add #define _BSD_SOURCE where mplayer is not C99.Michael Niedermayer2011-01-203-0/+3
|
* Add MPlayers libmpcodecs, this will be needed for our libavfilter wraper for it.Michael Niedermayer2011-01-2075-0/+24149
|
* Revert "Update git-howto with ffmpeg.org URLs"Michael Niedermayer2011-01-191-4/+4
| | | | | | This reverts commit 69c92320d760d3925d5c83c4fbca6012deef4195. Reason is that this has been commited by mistake as discussed.
* Revert "Initial MAINTAINERS update"Michael Niedermayer2011-01-191-0/+7
| | | | | | This reverts commit f4f5cab94e0881cd30965b28f3d78d9c63d6918e. Reason is that this has been mistakely commited as discussed.
* ARM: improve VFP ABI checkMans Rullgard2011-01-181-1/+9
| | | | | | | | Recent gcc versions define __ARM_PCS or __ARM_PCS_VFP to indicate the VFP ABI in use, and ARM RVCT defines __SOFTFP__ when using this ABI. If none of these are defined, check $cross_prefix and $cc for the substring "hardfloat", and finally fall back to a linker test. This gives the correct result in most configurations.
* armcc: suppress warning about hardfp compatibilityMans Rullgard2011-01-181-0/+1
|
* armcc: suppress 'assignment in condition' warningMans Rullgard2011-01-181-0/+1
|
* fate: simplify vp8 rulesMans Rullgard2011-01-181-10/+7
|
* a64enc: make PixelFormat arrays constMans Rullgard2011-01-181-2/+2
|
* Replace ASMALIGN() with .p2alignMans Rullgard2011-01-1814-78/+77
| | | | | This macro has unconditionally used .p2align for a long time and serves no useful purpose.
* x86: remove VLA in ac3_downmix_sseMans Rullgard2011-01-181-1/+2
|
* regtest: add openssl to md5 alternativesMans Rullgard2011-01-181-0/+2
|
* configure: make $TMPE executableMans Rullgard2011-01-181-0/+2
| | | | | This is required on systems where the linker does not change the permissions of an existing output file.
* cpu-test: include stdio.h only for test progMans Rullgard2011-01-181-2/+1
|
* Use -Bsymbolic for shared libs only, not executablesMans Rullgard2011-01-181-1/+1
| | | | | | Some linkers fail if this flag is used when creating an executable file. Since the flag is meaningful only for shared libraries, dropping it from the main link flags is correct.
* Use INFINITY and NAN macros instead of 1/0 and 0/0Mans Rullgard2011-01-182-5/+5
|
* Fix quoting in version.shMans Rullgard2011-01-181-10/+10
|
* avfilter: remove stray semicolonMans Rullgard2011-01-181-1/+1
|
* Update git-howto with ffmpeg.org URLsMans Rullgard2011-01-181-4/+4
|
* consolidate .gitignore patters into a single fileJanne Grunau2011-01-1838-161/+30
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Deprecate CREDITSJason Garrett-Glaser2011-01-181-2/+4
| | | | It's useless now that we've switched to git.
* Initial MAINTAINERS updateJason Garrett-Glaser2011-01-181-7/+0
| | | | Per http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2011-January/103440.html.
* Revise check for codec id in voc demuxer.Justin Ruggles2011-01-181-13/+16
| | | | This fixes demuxing of packets that do not contain a codec tag and come before the codec_id has been set.
* Fix bug in voc demuxer that was introduced in SVN r26309.Justin Ruggles2011-01-181-1/+1
| | | | Fixes issue 2560.
* cosmetics: reindentJustin Ruggles2011-01-181-1/+1
|
* Add check for changing number of channels in DCA.Daniel Kang2011-01-181-0/+9
| | | | Fixes issue 2505.
OpenPOWER on IntegriCloud