summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add ff_ prefix to vorbis_commentDavid Conrad2010-03-12
| | | | Originally committed as revision 22472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't use shell syntax to set variables for make.Ramiro Polla2010-03-12
| | | | Originally committed as revision 22471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix spelling.Ronald S. Bultje2010-03-11
| | | | Originally committed as revision 22470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a crash in the H.263 RTP packetizerMartin Storsjö2010-03-11
| | | | | | | If size == 1 and buf[0] == 0 and buf[1] == 0 (the first byte after the buffer), it would set size = -1 and crash in the later memcpy. Originally committed as revision 22469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent memory leak introduced in r22389 in Bink demuxer: pass partial ↵Peter Ross2010-03-11
| | | | | | packets to decoder. Originally committed as revision 22468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rdft speed user configureable.Michael Niedermayer2010-03-11
| | | | | | Change default speed back to a slower variant. Originally committed as revision 22467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make binkaudio work with ff_float_to_int16_interleave_c (martin at martin ↵Peter Ross2010-03-11
| | | | | | dot st) Originally committed as revision 22466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, break a long line, fix brace placementMartin Storsjö2010-03-11
| | | | Originally committed as revision 22465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTSP muxer: Create the SDP with the numerical IP of the peerMartin Storsjö2010-03-11
| | | | | | instead of using the original host name Originally committed as revision 22464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Seek to keyframesDavid Conrad2010-03-11
| | | | Originally committed as revision 22463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Determine pts and filepos on a packet basis in read_timestampDavid Conrad2010-03-11
| | | | | | | This takes into account whether the granule defines the start or end times of packets, and sets the correct file offset of the associated page. Originally committed as revision 22462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Move PTS/DTS calculation to a functionDavid Conrad2010-03-11
| | | | Originally committed as revision 22461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Fix memory leak in setting up vorbis headersDavid Conrad2010-03-11
| | | | Originally committed as revision 22460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Don't use ogg_stream's seq for vorbis or speex headersDavid Conrad2010-03-11
| | | | Originally committed as revision 22459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Fix duration calculation for streams with non-zero startDavid Conrad2010-03-11
| | | | Originally committed as revision 22458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Parse skeleton to determine the start time of each streamDavid Conrad2010-03-11
| | | | Originally committed as revision 22457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Check that we have a codec in gptopts (needed for skeleton)David Conrad2010-03-11
| | | | Originally committed as revision 22456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Move ogg_find_stream and ogg_gptopts to oggdec.hDavid Conrad2010-03-11
| | | | | | (skeleton will need them) Originally committed as revision 22455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Set data_offset to the right valueDavid Conrad2010-03-11
| | | | | | | Otherwise it gets set automatically to a page midstream and prevents seeking to the first page. Originally committed as revision 22454 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Save offset of the page needed to reconstruct the current packetDavid Conrad2010-03-11
| | | | Originally committed as revision 22453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement framedrop.Michael Niedermayer2010-03-11
| | | | | | | | Replace SDL timer by a seperate thread, more accurate and less annoying. frame drop is enabled by default, bug reports welcome. Fixes issue1191 Originally committed as revision 22452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMåns Rullgård2010-03-11
| | | | Originally committed as revision 22451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* random_seed: try other alternatives if reading /dev/random failsMåns Rullgård2010-03-11
| | | | Originally committed as revision 22450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sha: add missing includeMåns Rullgård2010-03-11
| | | | Originally committed as revision 22449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* snow: remove unused stub functionsMåns Rullgård2010-03-11
| | | | | | | | w53_32_c() and w97_32_c() are defined as stubs when snow encoder is disabled. In this case, those functions are not referenced at all and do thus not need to be defined. Originally committed as revision 22448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffplay: use correct format specifiers in printf()Måns Rullgård2010-03-11
| | | | Originally committed as revision 22447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some required castsMåns Rullgård2010-03-11
| | | | | | | | These casts are correct and safe. The pointers are guaranteed to have proper alignment, and aliasing is not a problem with character types. Originally committed as revision 22446 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove stray semicolonMåns Rullgård2010-03-11
| | | | Originally committed as revision 22445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: use map() function in a couple of placesMåns Rullgård2010-03-11
| | | | Originally committed as revision 22444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add --disable-everything optionMåns Rullgård2010-03-11
| | | | | | | This disables all codecs, formats, etc. It saves some typing when only a few components are desired. Originally committed as revision 22443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix some apparent +- errors in the audio vissualization.Michael Niedermayer2010-03-10
| | | | | | | The bugs become only vissible at higher time resolution than what is used currently. Originally committed as revision 22442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sparc: fix a few pages of cast warningsMåns Rullgård2010-03-10
| | | | Originally committed as revision 22441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sparc: fix dsputil prototypesMåns Rullgård2010-03-10
| | | | Originally committed as revision 22440 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow mips64el and powerpc64 as values for --archMåns Rullgård2010-03-10
| | | | Originally committed as revision 22439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the ntp_time function available to other parts of libavformat, as ↵Martin Storsjö2010-03-10
| | | | | | ff_ntp_time Originally committed as revision 22438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only use .size in ARM assembly when targeting ELFMartin Storsjö2010-03-10
| | | | | | This fixes compilation on mingw32ce Originally committed as revision 22437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only reschedule refresh if we successfully removed the scheduled one.Michael Niedermayer2010-03-10
| | | | | | Fixes some spurious error messages. Originally committed as revision 22435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase VIDEO_PICTURE_QUEUE_SIZE to 2.Michael Niedermayer2010-03-10
| | | | | | | | this allows more asynchronous decoding and display thus improving video smoothness. It also seems to improve absolute video decoding speed for some reason Originally committed as revision 22434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not call SDL_SetVideoMode() with the same size as previouslyMichael Niedermayer2010-03-10
| | | | | | as this blanks the window. Originally committed as revision 22433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ffm_close return type.Benoit Fouet2010-03-10
| | | | Originally committed as revision 22432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak in FFM demuxerVitor Sessak2010-03-10
| | | | Originally committed as revision 22431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* undef av_always_inline before redefiningMåns Rullgård2010-03-10
| | | | | | Fixes numerous warnings with --enable-small or --disable-optimizations. Originally committed as revision 22430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check level_prefix a bit (this just checks the max our bitreader can handle,Michael Niedermayer2010-03-10
| | | | | | | as i did nt find a limit in the spec) This should stop cavlc_decode_residual() on a zero bitstream Originally committed as revision 22429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In mpegts muxer, free adts context and temporary dataBaptiste Coudurier2010-03-10
| | | | Originally committed as revision 22428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2010-03-10
| | | | Originally committed as revision 22427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include os_support.h which has a fallback declaration of socklen_tDave Yeo2010-03-10
| | | | | | | | This fixes compilation on some OSes Patch by Dave Yeo, daveryeo at telus dot net Originally committed as revision 22426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Using struct timeval requires sys/time.h, fixes compilation on some OSesDave Yeo2010-03-10
| | | | | | Patch by Dave Yeo, daveryeo at telus dot net Originally committed as revision 22425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Add support for UYVY pixel format.Ramiro Polla2010-03-10
| | | | Originally committed as revision 22424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: fix version.h generationMåns Rullgård2010-03-10
| | | | | | Note to self: always test in a clean directory Originally committed as revision 22423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove .SECONDARY directiveMåns Rullgård2010-03-10
| | | | | | | | | The presence of the .SECONDARY directive caused thing to not always be correctly rebuilt. Mentioning the object files explicitly as targets gives the desired result of make not deleting them without unpleasant side-effects. Originally committed as revision 22422 to svn://svn.ffmpeg.org/ffmpeg/trunk