summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix GSM decoding: regular GSM and MSGSM do not use the sameReimar Döffinger2010-10-02
| | | | | | | | bitstream endianness, so they cannot reuse the same code without a lot of function call overhead. Thus use templating to compile two different binaries. Originally committed as revision 25312 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid cast of double nan to int.Stefano Sabatini2010-10-02
| | | | | | It may cause exceptions on some platform. Originally committed as revision 25311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document url_get_filename().Stefano Sabatini2010-10-02
| | | | Originally committed as revision 25310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add init and uninit functions to cmdutils, reduces code duplicationReimar Döffinger2010-10-02
| | | | | | | between ffmpeg and ffplay and avoids a valgrind error by freeing avformat_opts->key. Originally committed as revision 25309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make FRAPS decoder use PC range instead of TV rangeJason Garrett-Glaser2010-10-02
| | | | | | | FRAPS appears to output PC range streams. I can't guarantee this is true of all versions. Originally committed as revision 25308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l fix h263 encoder resolution test, array size is 8 not 7Baptiste Coudurier2010-10-02
| | | | Originally committed as revision 25305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: replace MAX_STREAMS by an arbitrary sanity checkAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate bitstream_filtersAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25303 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate stream_mapsAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate output_codecsAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate input_codecsAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate input_files_ts_scaleAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: dynamically allocate streamid_mapAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmpeg: add a grow_array() helper functionAurelien Jacobs2010-10-01
| | | | Originally committed as revision 25297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reference to nonexistent function.Stefano Sabatini2010-10-01
| | | | Originally committed as revision 25296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Return a queued packet if it has been in the queue for longer than ↵Martin Storsjö2010-10-01
| | | | | | max_delay Originally committed as revision 25295 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Reorder received RTP packets according to the seq numberMartin Storsjö2010-10-01
| | | | | | Reordering is enabled only when receiving over UDP. Originally committed as revision 25294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtpdec: Split out the part of rtp_parse_packet that does the parsing of new ↵Martin Storsjö2010-10-01
| | | | | | packets Originally committed as revision 25293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation of ff_id3v2_readReimar Döffinger2010-10-01
| | | | Originally committed as revision 25292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent/rewrapMartin Storsjö2010-10-01
| | | | Originally committed as revision 25291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Reorganize if statements in rtsp_read_playMartin Storsjö2010-10-01
| | | | Originally committed as revision 25290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp/rtpdec: Allow rtp_parse_packet to take ownership of the packet bufferMartin Storsjö2010-10-01
| | | | | | | Do the same change for ff_rdt_parse_packet, too, to keep the interfaces similar. Originally committed as revision 25289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Use a dynamically allocated receive bufferMartin Storsjö2010-10-01
| | | | Originally committed as revision 25288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix weird indent.Stefano Sabatini2010-10-01
| | | | Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avassert: add missing #include <stdlib.h>Måns Rullgård2010-10-01
| | | | Originally committed as revision 25286 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avassert: prettify macroMåns Rullgård2010-10-01
| | | | Originally committed as revision 25285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename libavutil/assert.h to avassert.hMåns Rullgård2010-10-01
| | | | | | This avoids conflicts with the system assert.h. Originally committed as revision 25284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix av_cmp_q() with negative denominators.Michael Niedermayer2010-10-01
| | | | Originally committed as revision 25283 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself as maintainer of lxfdec.cTomas Härdin2010-10-01
| | | | Originally committed as revision 25282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add demuxer for LXF (Leitch/Harris' VR native stream format)Tomas Härdin2010-10-01
| | | | Originally committed as revision 25281 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pcm_lxf, a decoder for the 20-bit planar PCM format used in LXFTomas Härdin2010-10-01
| | | | Originally committed as revision 25280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a typo in the nameing of av_assert0() in currently not compiled code.Michael Niedermayer2010-09-30
| | | | Originally committed as revision 25279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_assert() system.Michael Niedermayer2010-09-30
| | | | | | | With this the developer can now choose if he wants an assert always enabled or at which compile time assert level. This can thus replace the #define NDEBUG hacks Originally committed as revision 25278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_INOFFICIAL define to disable the deprecated 'inofficial' flagAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_SET_STRING_OLD define to disable the deprecated av_set_string APIAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_USE_LPC define to disable the deprecated AVCodecContext.use_lpc fieldAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return AVERROR(EINVAL) rather than -1 in case of invalid values.Stefano Sabatini2010-09-30
| | | | Originally committed as revision 25274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_SUBTITLE_OLD define to disable the deprecated decode_subtitle APIAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_VIDEO_OLD define to disable the deprecated decode_video APIAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25272 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct tag is m2v1Baptiste Coudurier2010-09-30
| | | | Originally committed as revision 25271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_AUDIO_OLD define to disable the deprecated decode_audio APIAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a yuv420p sample that was incorrectly detected as yuv411pNiobos2010-09-30
| | | | | | | | | (576i50 25Mbps 4:1:1 special case was wrong). Fixes issue2211 Patch by Niobos, niobos dest-unreach be Originally committed as revision 25269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document url_filesize().Stefano Sabatini2010-09-30
| | | | Originally committed as revision 25268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make register_protocol() use the function av_register_protocol2()Stefano Sabatini2010-09-30
| | | | | | | | | rather than av_register_protocol(), which is deprecated. Fix the GCC warning: avio.c: In function ‘register_protocol’: avio.c:93: warning: ‘av_register_protocol’ is deprecated (declared at avio.c:86) Originally committed as revision 25267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* User application side of Codec specific parameters.Michael Niedermayer2010-09-29
| | | | Originally committed as revision 25266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set default values for the scale context in sws_alloc_context().Stefano Sabatini2010-09-29
| | | | Originally committed as revision 32415 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set the default value of param0 and param1 to SWS_PARAM_DEFAULT.Stefano Sabatini2010-09-29
| | | | Originally committed as revision 32414 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set valid default values for the srcw, srch, dstw, dsth options in theStefano Sabatini2010-09-29
| | | | | | | | scale context. Prevent pointless warnings when using av_opt_set_defaults() for setting the default values, as in a pending patch. Originally committed as revision 32413 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add missing case for FF_OPT_TYPE_DOUBLE in av_opt_set_defaults2().Stefano Sabatini2010-09-29
| | | | Originally committed as revision 25265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate entriesBaptiste Coudurier2010-09-29
| | | | Originally committed as revision 25264 to svn://svn.ffmpeg.org/ffmpeg/trunk