summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Re-implement avpicture_layout() using pixdesc and imgutils API.Stefano Sabatini2010-11-211-50/+13
| | | | | | | The new implementation is more compact, more correct and doesn't hurt the eyes. Originally committed as revision 25792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace "depth" with "nb_bits" in the header of avcodec_pix_fmt_string().Stefano Sabatini2010-11-211-2/+2
| | | | Originally committed as revision 25791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Musepack SV8 supports "mono" files (though it still codes them as stereo),Kostya Shishkov2010-11-214-12/+17
| | | | | | | | so extend decoder to output only one channel for it. This fixes issue 2368. Originally committed as revision 25790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the new libavcore audio channel API.Stefano Sabatini2010-11-2114-101/+109
| | | | | | | This also allows to remove a linking dependency of libavfilter on libavcodec. Originally committed as revision 25789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declaration of function:Stefano Sabatini2010-11-211-3/+0
| | | | | | | | const char *avcodec_get_channel_name(int channel_id) which was never implemented. Originally committed as revision 25788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move audio channel API from libavcodec to libavcore.Stefano Sabatini2010-11-218-124/+285
| | | | Originally committed as revision 25787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movdec: export creation_date as metadataAurelien Jacobs2010-11-211-4/+18
| | | | Originally committed as revision 25786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avidec: export creation_date as metadataAurelien Jacobs2010-11-211-0/+27
| | | | Originally committed as revision 25785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port overlay filter from the libavfilter repo (with many fixes),Stefano Sabatini2010-11-216-1/+443
| | | | | | adopting Baptiste variant which is simpler and faster. Originally committed as revision 25784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document added functions.Reimar Döffinger2010-11-211-0/+6
| | | | Originally committed as revision 25783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve documentation wording.Reimar Döffinger2010-11-211-2/+2
| | | | Originally committed as revision 25782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Reimar Döffinger2010-11-211-1/+1
| | | | Originally committed as revision 25781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Reimar Döffinger2010-11-211-4/+4
| | | | Originally committed as revision 25780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add explanation and alternative implementation for strange xanReimar Döffinger2010-11-211-0/+56
| | | | | | gamma correction. Originally committed as revision 25779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WC3/xan: move palette handling to decoder, avoiding need forReimar Döffinger2010-11-212-105/+117
| | | | | | | | PaletteControl. This also fixes playback of some files with ffplay (images were corrupted for a short time after a palette change). Originally committed as revision 25778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_append_packet function, to be used in code that merges packetsReimar Döffinger2010-11-212-1/+31
| | | | | | to allow palette handling without using PaletteControl. Originally committed as revision 25777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a av_grow_packet function, to be used by code that mergesReimar Döffinger2010-11-212-1/+27
| | | | | | palette and video data packets to get rid of PaletteControl. Originally committed as revision 25776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm: Fix a comment in the trellis heap codeMartin Storsjö2010-11-201-1/+1
| | | | | | This makes the wording consistent with how people usually talk about heaps. Originally committed as revision 25775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge rotation into lookup table.Reimar Döffinger2010-11-201-38/+34
| | | | Originally committed as revision 25774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, fix indentationBaptiste Coudurier2010-11-201-1/+1
| | | | Originally committed as revision 25773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm: Only increment heap_pos after finding a good enough sampleMartin Storsjö2010-11-191-1/+2
| | | | | | | This increases the PSNR slightly (about 0.1 dB) for trellis sizes below 8, and gives equal PSNR for sizes above that. Originally committed as revision 25769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm: Use a hash table to improve checking for duplicate samplesMartin Storsjö2010-11-191-8/+27
| | | | | | | | | This lowers the run time from 158 to 21 seconds, for -trellis 8 with a 30 second sample on my machine. This requires 64 KB additional memory. Originally committed as revision 25768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix qdm2 decoder packet handling to match the apiBaptiste Coudurier2010-11-191-10/+13
| | | | Originally committed as revision 25767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Order matters, fix test files linking.Stefano Sabatini2010-11-191-1/+1
| | | | Originally committed as revision 25766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log error message in case of invalid parsing.Stefano Sabatini2010-11-181-2/+5
| | | | Originally committed as revision 25765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix style: if( -> if (.Stefano Sabatini2010-11-181-5/+5
| | | | Originally committed as revision 25764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant information in header.Stefano Sabatini2010-11-181-2/+1
| | | | Originally committed as revision 25763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l: Fix crash in SPDIF muxer.Carl Eugen Hoyos2010-11-171-0/+1
| | | | Originally committed as revision 25762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move the av_parse_color() function from libavfilter to libavcoreAurelien Jacobs2010-11-1711-382/+314
| | | | Originally committed as revision 25761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for IEC 61937 ("SPDIF") encapsulation for E-AC-3.Carl Eugen Hoyos2010-11-172-12/+60
| | | | | | | | | Only works via HDMI. Patch by Anssi Hannula (anssi d hannula a iki d fi), based on some work by myself. Originally committed as revision 25760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100L fix get_video_buffer in pad filter, get_video_buffer will store wrong ↵Baptiste Coudurier2010-11-171-0/+3
| | | | | | values for w and h Originally committed as revision 25759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_find_stream_info(): set subtitle codec time_baseAurelien Jacobs2010-11-161-1/+2
| | | | Originally committed as revision 25758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mov demuxer, export .mov encoder metadata tagBaptiste Coudurier2010-11-161-0/+1
| | | | Originally committed as revision 25757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make DNxHD encoder produce files that are strictly VC-3 compatibleBaptiste Coudurier2010-11-163-5/+5
| | | | Originally committed as revision 25756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Parse and use the Content-Base reply header, if presentMartin Storsjö2010-11-153-0/+10
| | | | | | This fixes playing RTSP urls with query parameters. Originally committed as revision 25755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 16l trocadero: Musepack SV7 decoder may skip more than 16 bits at theKostya Shishkov2010-11-151-1/+1
| | | | | | | beginning of the frame, so make it use skip_bits_long() instead of skip_bits() for that. Originally committed as revision 25754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor bump and Changelog entry for r25747Aurelien Jacobs2010-11-142-1/+2
| | | | Originally committed as revision 25753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor bump and APIchanges for r25745Aurelien Jacobs2010-11-142-2/+6
| | | | Originally committed as revision 25752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adpcm: Fix a commentMartin Storsjö2010-11-141-1/+1
| | | | Originally committed as revision 25751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AMR-NB FATE testsVitor Sessak2010-11-141-0/+48
| | | | Originally committed as revision 25750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Musepack7 FATE testVitor Sessak2010-11-141-0/+6
| | | | Originally committed as revision 25749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix frei0r filter after av_parse_color() syntax change.Stefano Sabatini2010-11-131-1/+1
| | | | Originally committed as revision 25748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add missing files in previous commit (ASS encoder and decoder)Aurelien Jacobs2010-11-134-0/+250
| | | | Originally committed as revision 25747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ASS encoder and decoderAurelien Jacobs2010-11-132-0/+3
| | | | Originally committed as revision 25746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow passing subtitles header between decoder and encoderAurelien Jacobs2010-11-133-1/+29
| | | | Originally committed as revision 25745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve av_parse_color() to allow for non-null terminated color stringAurelien Jacobs2010-11-134-7/+15
| | | | Originally committed as revision 25744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve av_parse_color() to support html formattingAurelien Jacobs2010-11-132-6/+18
| | | | Originally committed as revision 25743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add global header support for subtitles encodingAurelien Jacobs2010-11-131-0/+4
| | | | Originally committed as revision 25742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix revision number of the last APIchanges entry.Stefano Sabatini2010-11-131-1/+1
| | | | Originally committed as revision 25741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avfiltergraph.h public.Stefano Sabatini2010-11-133-2/+5
| | | | Originally committed as revision 25740 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud