summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* theora: coeff huffman codes are allowed to be up to 32 bits long (for 32 tokens)David Conrad2010-04-21
| | | | Originally committed as revision 22931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: do not try to unpack DTX frames in AMR-NB decoderVitor Sessak2010-04-21
| | | | Originally committed as revision 22930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MTV decoding on big-endian systemsVitor Sessak2010-04-21
| | | | Originally committed as revision 22929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov: Read QuickTime chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* movenc: Write nero chaptersDavid Conrad2010-04-21
| | | | Originally committed as revision 22927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seems aac gets screwed up by the parser so disable itBaptiste Coudurier2010-04-20
| | | | Originally committed as revision 22926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse stream headers for audio streams in mkv, needed for frame sizeBaptiste Coudurier2010-04-20
| | | | Originally committed as revision 22925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent / reformat some code with broken indenting.Sebastian Vater2010-04-20
| | | | | | Patch by Sebastian Vater <cdgs DOT basty googlemail com>. Originally committed as revision 22924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow setting the environment variable FFMPEG_DATADIR to locate preset files.Robert Krüger2010-04-20
| | | | | | Patch by Robert Krüger <krueger signal7 de>. Originally committed as revision 22923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change a %2 to &1. Patch by Sebastian Vater <cdgs DOT basty googlemail com>.Sebastian Vater2010-04-20
| | | | Originally committed as revision 22922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 31050 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing internal.h #include for brktimegm(), fixes the warning:Diego Biurrun2010-04-20
| | | | | | libavformat/dvenc.c:82: warning: implicit declaration of function ‘brktimegm’ Originally committed as revision 22920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Switch Doxygen comments to JavaDoc style.Diego Biurrun2010-04-20
| | | | Originally committed as revision 22919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset RTCP timestamps after seeking, add range start offset to the packets ↵Martin Storsjö2010-04-20
| | | | | | | | | timestamps If these aren't reset, the timestamps make a huge jump when the next RTCP is received. Originally committed as revision 22918 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert svn rev 21857, readd first_rtcp_ntp_time in RTPDemuxContextMartin Storsjö2010-04-20
| | | | | | | | | | | In order to sync RTP streams that get their initial RTCP timestamp at different times, propagate the NTP timestamp of the first RTCP packet to all other streams. This makes the timestamps of returned packets start at (near) zero instead of at any random offset. Originally committed as revision 22917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set AVFMT_NOTIMESTAMPS flag for mp3 muxerBaptiste Coudurier2010-04-20
| | | | | | Fixes issue 1026 Originally committed as revision 22916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vertical align in libx264.cJason Garrett-Glaser2010-04-19
| | | | Originally committed as revision 22915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Fix libx264 configure check to use pkg-config if available."Måns Rullgård2010-04-19
| | | | | | | There are problems using pkg-config, and a better solution is being worked on. Originally committed as revision 22914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix libx264 configure check to use pkg-config if available.Jason Garrett-Glaser2010-04-19
| | | | Originally committed as revision 22913 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Makefile: make fate target depend on compiling ffmpegVitor Sessak2010-04-19
| | | | Originally committed as revision 22912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify $COMPONENT_LIST handlingMåns Rullgård2010-04-19
| | | | | | | This lets check_deps set the generic CONFIG_ENCODERS and friends using an _if_any construct. Originally committed as revision 22911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify vaapi dependenciesMåns Rullgård2010-04-19
| | | | Originally committed as revision 22910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify vdpau dependenciesMåns Rullgård2010-04-19
| | | | Originally committed as revision 22909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FATE: update nsv-demux checksumsMåns Rullgård2010-04-19
| | | | Originally committed as revision 22908 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffserver support rfc3550Luca Barbato2010-04-19
| | | | Originally committed as revision 22907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rtp protocol obey rfc3550Luca Barbato2010-04-19
| | | | Originally committed as revision 22906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix leak in avfilter_graph_add_filter().Stefano Sabatini2010-04-18
| | | | | | | | In case of reallocation failure the pointer to the original filter array was lost. The correct behavior seems to just keep the old array and count. Originally committed as revision 22905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement librtmp seek support.Howard Chu2010-04-18
| | | | | | | | | | | | | | | | | | | Implement flv_read_seek(), add a missing check on stream_index and fix timestamp rounding in rtmp_read_seek(). Also add the flv_read_seek2() function, which is not enabled but is useful as reference. To actually implement flv_read_seek2() correctly, there would need to be some corresponding av_url_read_fseek2() function to propagate the timestamps down to the ByteIOContext and URLContext. Patch by Howard Chu <hyc <at> highlandsun.com>. See the thread: Subject: [FFmpeg-devel] RTMP seek support Date: 2010-03-28 23:35:02 GMT Originally committed as revision 22904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer AVERROR(ENOSYS) over AVERROR_NOTSUPP.Stefano Sabatini2010-04-18
| | | | | | AVERROR_NOTSUPP is (maybe) going to be deprecated. Originally committed as revision 22903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make url_fsize() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) ifStefano Sabatini2010-04-18
| | | | | | the seek operation is not defined in the ByteIOContext. Originally committed as revision 22902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make url_seek() return AVERROR(ENOSYS) rather than AVERROR(EPIPE) inStefano Sabatini2010-04-18
| | | | | | | the case where the seek operation is not defined in the protocol handler. Originally committed as revision 22901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to some pointer parameters.Michael Kaufmann2010-04-17
| | | | | | Patch by Michael Kaufmann, hallo michael-kaufmann ch Originally committed as revision 22900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Use avctx pointer directlyDavid Conrad2010-04-17
| | | | Originally committed as revision 22899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Read fps and aspect ratio in the decoderDavid Conrad2010-04-17
| | | | Originally committed as revision 22898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Don't crop if there's a left/top offset, it's wrongDavid Conrad2010-04-17
| | | | | | Fixes issue1834 Originally committed as revision 22897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: DC-only IDCTDavid Conrad2010-04-17
| | | | | | 2-4% faster overall decode Originally committed as revision 22896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take ticks per frame into account when warning about difference betweenBaptiste Coudurier2010-04-16
| | | | | | container and codec frame rate. Originally committed as revision 22895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse strf mov atomsMartin Storsjö2010-04-16
| | | | | | This fixes roundup issue 1270. Originally committed as revision 22894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: More buffer length checksDavid Conrad2010-04-16
| | | | | | .5% slower to fix some crashes on invalid streams Originally committed as revision 22893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3: Remove internal debug statementDavid Conrad2010-04-16
| | | | Originally committed as revision 22892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Move warning about missing granule to the correct placeDavid Conrad2010-04-16
| | | | Originally committed as revision 22891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Fix duration calculation if the last page in a file has no granuleDavid Conrad2010-04-16
| | | | Originally committed as revision 22890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oggdec: Remove write-only variableDavid Conrad2010-04-16
| | | | Originally committed as revision 22889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x)Ramiro Polla2010-04-16
| | | | | | FF_NETERROR is implicitly an AVERROR. Originally committed as revision 22888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compile error on mingw where ETIMEDOUT is missing (because it's a WSA ↵Ronald S. Bultje2010-04-15
| | | | | | | | | error). This patch also changes FF_NETERROR() to be an AVERROR(), i.e. it is always negative, whereas it was previously positive. Originally committed as revision 22887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless assert(), since this can (in theora) be used for any XiphRonald S. Bultje2010-04-15
| | | | | | | | codec, so there's no reason to (invalidly) limit it to only Theora. Also fixes issue 1880 (compilation error on -DDEBUG). Originally committed as revision 22886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: cosmetics (vertical align).Gwenole Beauchesne2010-04-15
| | | | Originally committed as revision 22885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: move avctx->{profile,level} init before AVCodecContext.get_format().Gwenole Beauchesne2010-04-15
| | | | Originally committed as revision 22884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: move avctx->refs init before AVCodecContext.get_format().Gwenole Beauchesne2010-04-15
| | | | Originally committed as revision 22883 to svn://svn.ffmpeg.org/ffmpeg/trunk