aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mp3enc: avoid truncating id3v1 tags by one byteTobias Rapp2011-11-011-5/+6
| | | | | | Avoid writing the trailing null-byte for id3v1 tags if length reaches max length. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* mmsh_read_seek: skip headerMichael Niedermayer2011-10-311-0/+3
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* mmsh:_implement a minimal mmsh_seek() so the stream position can be found out.Michael Niedermayer2011-10-311-1/+11
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* asfdec: Check packet_replic_size earlierMichael Niedermayer2011-10-311-4/+4
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* mmsh: mmsh_read_seek()Michael Niedermayer2011-10-311-0/+20
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* mmsh: split out mmsh_open_internal()Michael Niedermayer2011-10-311-2/+8
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* mmsh: move location storage into contextMichael Niedermayer2011-10-311-3/+4
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Revert "Remove detection of mmsh protocol in ffplay."Michael Niedermayer2011-10-311-2/+4
| | | | This reverts commit 2f642393381659f4a198d9c5a96896eebb23de18.
* dirac: alignment for dirac_hpel_filter_v has been fixedMichael Niedermayer2011-10-311-4/+4
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: alignment for add_dirac_obmc has been fixedMichael Niedermayer2011-10-311-4/+4
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: alignment for add_rect_clamped has been fixedMichael Niedermayer2011-10-311-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: alignment for put_signed_rect_clamped has been fixedMichael Niedermayer2011-10-311-2/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: alignment for dirac_hpel_filter_v() has been fixedMichael Niedermayer2011-10-311-2/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: fix stride alignmentMichael Niedermayer2011-10-311-1/+1
| | | | | | | This code was already added by Yuvi in c82cbea68273c6f08c4d0e94fc9fd50bfdea4e2b It was subsequently lost somehow Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dirac: fix segfault in horizontal_compose_haarMichael Niedermayer2011-10-311-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: bump micro after recent changes in the overlay filterStefano Sabatini2011-10-311-1/+1
|
* vf_overlay: add support to alpha pre-multiplication in the RGBA pathStefano Sabatini2011-10-311-0/+29
| | | | | | | | Based on the work of Mark Himsley <mark@mdsh.com>. See thread: Subject: [FFmpeg-devel] libavfilter: extending overlay filter Date: Sun, 13 Mar 2011 14:18:42 +0000
* vf_overlay: enable RGB pathStefano Sabatini2011-10-312-20/+116
| | | | Add option rgb which forces the RGB path.
* dirac: ff_diracdsp_init_mmx() is only compiled when yasm is availableMichael Niedermayer2011-10-311-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-3110-98/+109
|\ | | | | | | | | | | | | | | * qatar/master: libdirac/libschroedinger: Drop unnecessary symbol prefixes. cmdutils: check fread() return value Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libdirac/libschroedinger: Drop unnecessary symbol prefixes.Diego Biurrun2011-10-309-95/+94
| | | | | | | | | | The names used in the libdirac/libschroedinger wrappers are long enough as-is. Bloating them with unnecessary prefixes makes them even more unwieldy.
| * cmdutils: check fread() return valueJanne Grunau2011-10-301-3/+15
| |
* | sws: fallback to mmx2 when yuv2yuvX_sse3() cannot be used.Michael Niedermayer2011-10-311-0/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | sws: print a warning on unaligned input on SSE2+Michael Niedermayer2011-10-311-0/+12
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | sws: increase stride alignment requirement for the warning print code.Michael Niedermayer2011-10-311-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Dirac decoding is supported natively.Carl Eugen Hoyos2011-10-311-1/+1
| |
* | Add missing 'tab'.Carl Eugen Hoyos2011-10-311-1/+1
| |
* | Bump libavcodec minor version for the Dirac decoder.Carl Eugen Hoyos2011-10-311-1/+1
| |
* | dirac: enable ff_spatial_idwt_init_mmx()Michael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: enable diracdsp_mmxMichael Niedermayer2011-10-302-3/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: ff_horizontal_compose_dd97i_ssse3 does not work yet, thus disable itMichael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: put_dirac_pixels8_mmx() does not work yet, thus disable it.Michael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: add_rect_clamped does currently not receive aligned data, thus use ↵Michael Niedermayer2011-10-301-1/+1
| | | | | | | | | | | | unaligned accesses. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: put_signed_rect_clamped does currently not receive aligned data, thus ↵Michael Niedermayer2011-10-301-2/+2
| | | | | | | | | | | | use unaligned accesses. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac; dirac_hpel_filter_h does currently not receive aligned data thus use ↵Michael Niedermayer2011-10-301-2/+2
| | | | | | | | | | | | unaligned accesses. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dirac: dirac_hpel_filter_v does currently not receive aligned data, thus use ↵Michael Niedermayer2011-10-301-5/+5
| | | | | | | | | | | | unaligned accesses. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Dirac: More formatingJordi Ortiz2011-10-306-122/+120
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Dirac: Doxygen comments and some formatting enhancementsJordi Ortiz2011-10-303-313/+369
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Dirac: allcodecs in alphabetical orderJordi Ortiz2011-10-301-1/+1
| | | | | | | | | | | | (cherry picked from commit b44c20e9f04f29aff09f64659b3c2926e08b46f8) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Dirac now returns AVFrames instead of DiracFramesJordi Ortiz2011-10-301-9/+11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | DIRAC Decoder stable version, MMX support removed.multiple authors2011-10-3019-37/+4165
| | | | | | | | | | | | | | | | | | Look for MMX_DISABLED to find the disabled functions. Authors of this code are Marco Gerards <marco@gnu.org> and David Conrad <lessen42@gmail.com> With changes from Jordi Ortiz <nenjordi@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_overlay: use opt.h API for setting optionsStefano Sabatini2011-10-302-7/+49
| | | | | | | | Extend syntax, allow to easily add more options later.
* | libmp3lame: log error message in case of invalid number of channelsStefano Sabatini2011-10-301-2/+5
| | | | | | | | | | Also return meaningful error number in place of -1. Improve feedback.
* | Remove pointless per-frame malloc/free.Reimar Döffinger2011-10-301-12/+7
| | | | | | | | Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | MMX put_no_rnd_pixels_l2David Conrad2011-10-301-0/+41
| |
* | postproc: remove stray +Michael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix deprecated warnings in .bit (de)muxerVladimir Voroshilov2011-10-301-9/+9
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | spdifenc: use special alignment for DTS-HD length_codeAnssi Hannula2011-10-301-1/+4
| | | | | | | | | | | | | | | | Align IEC 61937 length_code for DTS-HD so that (length_code & 0xf) == 0x8. This is reportedly needed with some receivers. Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi>
* | propresenc: fix missed LE pixfmt occuranceMichael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | proresenc: the encoder expects native endian input.Michael Niedermayer2011-10-301-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>