summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Indent libswscale:Ramiro Polla2009-08-16
| | | | | | | | | | | - Use 4 spaces throughout for indentation; - Fix inconsistent indentation; - Indent function calls and declarations aligning arguments on multiple lines to the column after the opening parentheses; - Align asm code to the column 4 spaces after the call to __asm__(); - Align cases in switch statements to the same column as "switch". Originally committed as revision 29522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use pkg-config to generate the linker flags for libdirac.Diego Biurrun2009-08-15
| | | | | | | | We do the same for libschroedinger and already use pkg-config to generate the CFLAGS for libdirac anyway, so there is no new dependency. Thanks to Kovensky for reporting breakage on IRC. Originally committed as revision 19654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug caused by difference in stride and picture width.Anuradha Suraparaju2009-08-15
| | | | | | | | | | | | | | When a frame is allocated using libschroedinger routines, the frame data size does not match the actual frame size if the width is not a multiple of 16. So we cannot do a straightforward memcpy of the frame returned by libschroedinger into the FFmpeg picture as the stride differs from the width. Fix this bug by allocating for the libschroedinger frame with the dimensions in AVCodecContext within libavcodec and passing the frame to libschroedinger. patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 19653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation, prettyprinting, K&R coding styleDiego Biurrun2009-08-15
| | | | Originally committed as revision 19652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop some more useless braces around if/for constructs.Diego Biurrun2009-08-15
| | | | Originally committed as revision 19651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify another 'if' condition: Replace 'exp == 0' by '!exp'.Diego Biurrun2009-08-15
| | | | Originally committed as revision 19650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a function that can apply an order 2 rational transfer function in-place.Colin McQuillan2009-08-15
| | | | | | | | | This function will be used in the upcoming AMR-NB floating point decoder for high-pass filtering. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless braces around if/for/while expressions.Diego Biurrun2009-08-15
| | | | Originally committed as revision 19648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify 'if' condition statements.Diego Biurrun2009-08-15
| | | | | | Drop useless '!= 0' from 'exp != 0', replace 'exp == 0' by '!exp'. Originally committed as revision 19647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix start_display_time/end_display_time to be relative to packet pts in xsub ↵Reimar Döffinger2009-08-15
| | | | | | | | decoder. Makes no difference for the sample AVI files since they all have no packet pts values. Originally committed as revision 19646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-08-15
| | | | Originally committed as revision 29518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reindent.Reimar Döffinger2009-08-15
| | | | Originally committed as revision 19645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove code that is now dead.Reimar Döffinger2009-08-15
| | | | Originally committed as revision 19644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify initialization of AVSubtitle by using memset.Reimar Döffinger2009-08-15
| | | | Originally committed as revision 19643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure AVSubtitle is initialized, memset it to 0.Reimar Döffinger2009-08-15
| | | | Originally committed as revision 19642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, error out if subtitle encoder failed instead of writing an AVPacketReimar Döffinger2009-08-15
| | | | | | with ridiculous size and thus crashing. Originally committed as revision 19641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix cmd_pos bounds check to avoid the overflow case.Reimar Döffinger2009-08-15
| | | | Originally committed as revision 19640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Carl Eugen Hoyos2009-08-14
| | | | Originally committed as revision 19639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Vertical yuv -> yuv16 scaler.Ramiro Polla2009-08-14
| | | | Originally committed as revision 29517 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* BGR32 MMX special convertor.Peter Schlaile2009-08-14
| | | | | | Patch by Peter Schlaile < peter at schlaile dot de > Originally committed as revision 29515 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* 10L: remove instruction left over from debuggingMåns Rullgård2009-08-14
| | | | Originally committed as revision 19638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON optimised vorbis_inverse_couplingMåns Rullgård2009-08-14
| | | | | | 12% faster Vorbis decoding on Cortex-A8. Originally committed as revision 19637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Introduce av_clip_uint16().Ramiro Polla2009-08-13
| | | | Originally committed as revision 19636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* swscale-example: Don't check for chroma planes in mono formats.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29511 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 horizontal scaler: Determine code size at runtime.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29510 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Protect mmx2 filter code buffers so they are not executable and writeable atRamiro Polla2009-08-13
| | | | | | the same time (only mmap for now). Originally committed as revision 29509 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove duplicate define (it is the same in the lum code).Ramiro Polla2009-08-13
| | | | Originally committed as revision 29508 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename "funny" code to "mmx2 filter" code.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29507 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29506 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Remove hack to end loop by setting variables to break.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29505 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Don't return random value from main().Ramiro Polla2009-08-13
| | | | Originally committed as revision 29504 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Check for Gray formats.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29503 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add ff_celp_circ_addf() function to be used for sparse vector circularColin McQuillan2009-08-12
| | | | | | | | | | convolution in the upcoming AMR-NB floating point decoder. The function scales and adds a vector, that is lagged by some offset, to another vector with the same number of elements. Patch by Colin McQuillan ( m.niloc googlemail com ) Originally committed as revision 19634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a memleak with win32 threads: the handle returned by _beginthreadexShehzad Salim2009-08-12
| | | | | | | must be closed (this differs from _beginthread). Patch by Shehzad Salim (shehzadsalim gmail com) Originally committed as revision 19633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Moves the display of metadata to dump_format()Peter Ross2009-08-12
| | | | Originally committed as revision 19632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse ID3 tags in Musepack SV7 filesMatti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen (mhamalai@students.oamk.+358) Thread: [PATCH] 6/6 Add parsing of ID3v2 tags in Musepack SV7 demuxer Originally committed as revision 19631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse APE metadata tags in Musepack SV7 filesMatti Hamalainen2009-08-11
| | | | | | | | Patch by Matti Hamalainen (to get his mail address remove common endings from "mhamalainen@studentsnen.oamknen.finen") Thread: [PATCH]5/6 Add APE tag metadata reading support in Musepack SV7 demuxer Originally committed as revision 19630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move APE tag parsing into separate module.Kostya Shishkov2009-08-11
| | | | | | Based on patch by Matti Hamalainen (mhamalai<mot>students<punkt>oamk<punkt>) Originally committed as revision 19629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use internals of ByteIOContext during APE tags parsing.Matti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen, mail = reverse("if.kmao.stneduts@ialamahm") Thread: [PATCH] 2/6 Fix broken APE tag key handling Originally committed as revision 19628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect APE tag size adjustment based on flags.Matti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen (mhamalai <luona> students <piste> oamk <piste> fi) Thread: [PATCH] 1/6 Remove incorrect APE tag size adjustment based on flags Originally committed as revision 19627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their nativeAlexis Ballier2009-08-11
| | | | | | | | endian counterparts. Patch by Alexis Ballier, alexis D ballier gmail Originally committed as revision 19626 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix a crash in SVQ1 with cmp!=sadLoren Merritt2009-08-11
| | | | Originally committed as revision 19625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avidec: simplify, using av_rescale_q() instead of av_rescale()Aurelien Jacobs2009-08-10
| | | | Originally committed as revision 19624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* actually define AVSEEK_FLAG_FRAME as described in avformat_seek_file() docAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: disable h264 parser as long as it totally mess up frame typeAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: correctly parse flags for simpleblock framesAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependency generation with ccache/gccMåns Rullgård2009-08-10
| | | | | | | | | | | When running behind ccache, the output from -MMD is corrupted unless we also use the -MF and -MT flags. Since ccache is difficult to detect and gcc 2.x doesn't support the -MF and -MT flags, we always use the old dependency generation method when gcc 2.x is detected. Originally committed as revision 19620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix gcc detection for v2.95Måns Rullgård2009-08-10
| | | | Originally committed as revision 19619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: whitespace, prettyprinting, coding style fixesDiego Biurrun2009-08-10
| | | | Originally committed as revision 19618 to svn://svn.ffmpeg.org/ffmpeg/trunk