summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* In crop filter, reference picref after updating w/h, fix issue #2377Baptiste Coudurier2010-11-241-1/+3
| | | | Originally committed as revision 25818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add informative log message in the crop filter.Stefano Sabatini2010-11-231-0/+3
| | | | Originally committed as revision 25817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memleak: free palette data on close.Reimar Döffinger2010-11-231-0/+1
| | | | Originally committed as revision 25816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avidec: support non-standard creation_time formatAurelien Jacobs2010-11-231-1/+5
| | | | Originally committed as revision 25815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avidec: trivial simplification regarding av_metadata_setAurelien Jacobs2010-11-231-6/+2
| | | | Originally committed as revision 25814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskaenc: don't duplicate title informationAnton Khirnov2010-11-231-1/+3
| | | | | | | | Title is already written into special fields designated for it -- per-segment Title, per-chapter ChapString and per-stream Name (yay for consistent naming). Therefore, don't duplicate it in Tags. Originally committed as revision 25813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* id3v2: add TDEN<->creation_time tag mappingAnton Khirnov2010-11-231-0/+1
| | | | Originally committed as revision 25812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lavf: document the new creation_time tagAnton Khirnov2010-11-231-1/+2
| | | | Originally committed as revision 25811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, fix missing decrement on split PGS packets.Reimar Döffinger2010-11-231-0/+1
| | | | Originally committed as revision 25810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In h264 decoder, fix decoding when nal end sequence is presentBaptiste Coudurier2010-11-231-8/+9
| | | | Originally committed as revision 25809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some warningsBaptiste Coudurier2010-11-231-2/+2
| | | | Originally committed as revision 25808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fix memleak, forgot to free mp4_dec_config_descrBaptiste Coudurier2010-11-231-2/+5
| | | | Originally committed as revision 25807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In ts demuxer, support aac flexmux using extradata in iods, issue #2346Baptiste Coudurier2010-11-235-82/+157
| | | | Originally committed as revision 25806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unset variable fps for mov and mp4 muxer, they support itBaptiste Coudurier2010-11-231-2/+2
| | | | | | | but timestamps must start at 0 currently, and this causes sync problem. Originally committed as revision 25805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* S/PDIF demuxerAnssi Hannula2010-11-226-3/+241
| | | | | | Patch by Anssi Hannula, anssi d hannula a iki d fi Originally committed as revision 25804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-11-221-5/+5
| | | | Originally committed as revision 25803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement robust parsing in aspect filters.Stefano Sabatini2010-11-221-9/+11
| | | | Originally committed as revision 25802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add informative log messages to the set aspect filters.Stefano Sabatini2010-11-221-0/+4
| | | | Originally committed as revision 25801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give more explicit/less confusing names to the filters dealing withStefano Sabatini2010-11-225-19/+20
| | | | | | aspect ratio. Originally committed as revision 25800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing check on the existence of avcodec_opts[AVMEDIA_TYPE_X],Stefano Sabatini2010-11-221-3/+3
| | | | | | fix crash in ffprobe. Originally committed as revision 25799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In yadif filter, copy video props to output picture.Baptiste Coudurier2010-11-221-2/+12
| | | | | | | Fix issue #2269. Interpolate pts for the second frame when using field output mode. Originally committed as revision 25798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fail RLE decoding if insufficient data for a complete bitmap was decoded.Reimar Döffinger2010-11-221-0/+5
| | | | Originally committed as revision 25797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support PGS subtitles with RLE data split over mutiple packets.Mark Goodman2010-11-221-13/+25
| | | | | | Patch by Mark Goodman [mark goodman gmail com] with some modifications by me. Originally committed as revision 25796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg.c: document default metadata mappingsAnton Khirnov2010-11-221-0/+6
| | | | Originally committed as revision 25795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg.c: copy global metadata by defaultAnton Khirnov2010-11-221-0/+12
| | | | Originally committed as revision 25794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pointer truncation to int in avpicture_layout()Ramiro Polla2010-11-221-3/+3
| | | | Originally committed as revision 25793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
OpenPOWER on IntegriCloud