summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Improve SIFF probe by also checking the first tag is one of the expected.Reimar Döffinger2009-09-17
| | | | Originally committed as revision 19898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve dxa probe by checking the values for width and height are reasonable.Reimar Döffinger2009-09-17
| | | | Originally committed as revision 19897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly improve probe for ea format by checking that it is possible toReimar Döffinger2009-09-17
| | | | | | guess whether the file is little- or big-endian. Originally committed as revision 19896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dnxhd test to regression tests.Reimar Döffinger2009-09-17
| | | | Originally committed as revision 19895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not include "mp4:" prefix from RTMP URL into "app" path or second timeLars Täuber2009-09-17
| | | | | | | | | into playpath. Patch by Lars Täuber (<$name> . <$lastname with umlaut replaced with diphtong> @ <gmx> . <net>) Originally committed as revision 19894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register myself as RTMP maintainerKostya Shishkov2009-09-17
| | | | Originally committed as revision 19893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless code causing crash in Targa decoderKostya Shishkov2009-09-17
| | | | Originally committed as revision 19892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CODEC_CAP_SUBFRAMES to the FLAC decoder capabilities. also add a FIXMEJustin Ruggles2009-09-16
| | | | | | | comment as a reminder that we can remove both capabilities once a parser is implemented. Originally committed as revision 19891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup buffer debugs in swScale().Ramiro Polla2009-09-16
| | | | Originally committed as revision 29686 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use correct buffers in vertical scaler in unscaled YV12 case.Ramiro Polla2009-09-16
| | | | Originally committed as revision 29685 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Print a warning if a format has been detected with a low score.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print at debug level the score with which probing succeeded.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention after last commit.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve amortized worst case speed of the muxers packet interleaving codeMichael Niedermayer2009-09-16
| | | | | | from O(packets_in_the_file) to O(num_of_streams). Originally committed as revision 19887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: do not use movw/movt for relocatable values with PICMåns Rullgård2009-09-16
| | | | Originally committed as revision 19886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindent after last commit and remove unneeded empty lineKostya Shishkov2009-09-16
| | | | Originally committed as revision 19885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MPC SV8 probe skip tags until stream header is foundKostya Shishkov2009-09-16
| | | | Originally committed as revision 19884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Monkey's Audio uses subframes too, declare that in its capabilitiesKostya Shishkov2009-09-16
| | | | Originally committed as revision 19883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix overflow check insufficiently improved in r19840.Reimar Döffinger2009-09-16
| | | | | | | It assumes that sizeof(vmd_frame) < 64k, otherwise an additional check to ensure sound_buffers <= UINT_MAX / sizeof(vmd_frame) would be necessary. Originally committed as revision 19882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_CAP_SUBFRAMES for codecs that output multiple subframesSascha Sommer2009-09-16
| | | | | | | | per AVPacket No longer print "Multiple frames in a packet" error message when CODEC_CAP_SUBFRAMES is set (wmapro, wavpack) Originally committed as revision 19881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix PTS calculation for audio formats with bits per sample != 16Sascha Sommer2009-09-16
| | | | Originally committed as revision 19880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Core Audio Format demuxerPeter Ross2009-09-16
| | | | Originally committed as revision 19879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mov LPCM and AAC parsing functions publicPeter Ross2009-09-16
| | | | Originally committed as revision 19878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* perform sanity check on number of audio channels in avcodec_open()Peter Ross2009-09-16
| | | | Originally committed as revision 19877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fill in new VASliceParameterBufferMPEG2.slice_horizontal_position field.Gwenole Beauchesne2009-09-16
| | | | | | This is needed for the Intel G45 driver. Originally committed as revision 19876 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move down HWAccel code path so that to fill in s->mb_x first.Gwenole Beauchesne2009-09-16
| | | | Originally committed as revision 19875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enhance Musepack SV8 probing codeKostya Shishkov2009-09-16
| | | | Originally committed as revision 19874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flv should be AVFMT_VARIABLE_FPS.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Upgrade a few important messages to AV_LOG_WARNING.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention after previous commit.Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make packet interleaving in the muxer not scan through the wholeMichael Niedermayer2009-09-16
| | | | | | | | buffer when simply appending at the end works. Much faster if one stream ends prematurely. Fixes issue1379. Originally committed as revision 19870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Also reset *_end in flush_packet_queue().Michael Niedermayer2009-09-16
| | | | Originally committed as revision 19869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pkgconfig_generate() fill Libs with the required linking flagsStefano Sabatini2009-09-15
| | | | | | | | | | if the "shared" var has not been explicitely enabled, rather than if it has been explicitly disabled. This way is not necessary to explicitly disable shared libraries in order to have a pc file usable with only static libraries. Originally committed as revision 19868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: set genre default immediately before reading genre tagJustin Ruggles2009-09-15
| | | | Originally committed as revision 19867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set ID3v1 genre to 0xFF (unknown) by default instead of 0 (Blues).Justin Ruggles2009-09-15
| | | | Originally committed as revision 19866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix ff_fft_init_arm() prototypeMåns Rullgård2009-09-15
| | | | Originally committed as revision 19865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move per-arch fft init bits into the corresponding subdirsMåns Rullgård2009-09-15
| | | | Originally committed as revision 19864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set 0 FPS in VC-1 test stream format demuxer.Kostya Shishkov2009-09-15
| | | | Originally committed as revision 19863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add two more sizes to ff_sine_windows[] and also pad it with NULLs soVitor Sessak2009-09-15
| | | | | | | | that FF_ELEMS(ff_sine_windows[x]) == 1 << x. Fix issue 1384. Originally committed as revision 19862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for explicit 32-bit FPS value so it works on 64-bit systems tooKostya Shishkov2009-09-15
| | | | Originally committed as revision 19861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make probing for VC1 test bitstream format stricterKostya Shishkov2009-09-15
| | | | Originally committed as revision 19860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix max_coded_frame_size computation to account for byte alignment.Jai Menon2009-09-15
| | | | | | Fixes issue 1386. Originally committed as revision 19859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check offset in flv_probe()Michael Niedermayer2009-09-15
| | | | Originally committed as revision 19858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not return values above AVPROBE_SCORE_MAX from probe().Michael Niedermayer2009-09-15
| | | | Originally committed as revision 19857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make h261 and mpegvideo probe a little more robust so they dont fail withMichael Niedermayer2009-09-15
| | | | | | slightly different probetest. Originally committed as revision 19856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Init i to 0 (10l fix).Martin Storsjö2009-09-15
| | | | | | Patch by Martin Storsjö / martin von martin aus st Originally committed as revision 19855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make mpeg_probe() pass probetest.Michael Niedermayer2009-09-15
| | | | Originally committed as revision 19854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Probetest, to test the demuxers probe functions against random and not so randomMichael Niedermayer2009-09-15
| | | | | | input. Originally committed as revision 19853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly stricter MPEG-PES probing, fixes issue 1383.Reimar Döffinger2009-09-15
| | | | Originally committed as revision 19852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Vastly improved mm_probe function, passes probetest.Reimar Döffinger2009-09-15
| | | | Originally committed as revision 19851 to svn://svn.ffmpeg.org/ffmpeg/trunk