summaryrefslogtreecommitdiff
path: root/libavformat/ffmdec.c
Commit message (Collapse)AuthorAge
* Move ffm_close function up to avoid a forward declaration.Reimar Döffinger2010-07-25
| | | | Originally committed as revision 24491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffmdec: Do not manually free streams on read_header error, this is alwaysReimar Döffinger2010-07-25
| | | | | | | | handled by upper layers. Fixes double-frees (issue 2003). Instead call ffm_close to ensure rc_eqs are freed also in the error case. Originally committed as revision 24490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas2010-03-31
| | | | | | Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cast sample_fmt (as read from bitstream as a 16-bit value) to int16, so thatRonald S. Bultje2010-03-17
| | | | | | negative values, e.g. SAMPLE_FMT_NONE (-1), are read correctly also. Originally committed as revision 22585 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
* Fix breakage introduced by setting the sample_fmt to SAMPLE_FMT_NONE ↵Benjamin Larsson2009-12-14
| | | | | | | | (r20623). This makes streaming to ffserver work again. Originally committed as revision 20869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update ffserver to include all basic x264 parameters in .ffm files.Jason Garrett-Glaser2009-11-24
| | | | Originally committed as revision 20601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless duplication of what av_new_stream() already doesAurelien Jacobs2009-04-10
| | | | Originally committed as revision 18416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation when DEBUG_SEEK is definedBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix valid seeking rangeBaptiste Coudurier2009-03-21
| | | | Originally committed as revision 18098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* resync ffm if error in streamBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo, fix eof checkBaptiste Coudurier2009-03-20
| | | | Originally committed as revision 18064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not write ffm write index by default, detect if file is being written and ↵Baptiste Coudurier2009-03-20
| | | | | | return EOF Originally committed as revision 18063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if read failedBaptiste Coudurier2009-02-12
| | | | Originally committed as revision 17173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ffm_write_write_index to return int, and return if error occured.Patrik Kullman2009-02-12
| | | | | | Patch by Patrik Kullman, patrik at yes dot nu Originally committed as revision 17172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return eof/error if only ffm header has been written, should fix #815Baptiste Coudurier2009-02-01
| | | | Originally committed as revision 16924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve long names for FFM muxer and demuxer:Stefano Sabatini2008-07-27
| | | | | | change "ffm format" to "FFM (FFserver live feed) format". Originally committed as revision 14438 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, pts->dtsBaptiste Coudurier2008-06-22
| | | | Originally committed as revision 13881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable feeder threadsBaptiste Coudurier2008-06-22
| | | | Originally committed as revision 13868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffm has no per stream priv_data anymoreBaptiste Coudurier2008-06-19
| | | | Originally committed as revision 13832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with -DDEBUG, patch by Albert Astals Cid, aastals tv-wan es.Albert Astals Cid2008-06-09
| | | | Originally committed as revision 13727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass dts and pts through ffm, should fix streaming b framesBaptiste Coudurier2008-06-09
| | | | Originally committed as revision 13725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass extradata through ffmBaptiste Coudurier2008-06-09
| | | | Originally committed as revision 13721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pts handling in ffmBaptiste Coudurier2008-06-07
| | | | Originally committed as revision 13683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset reading state after successful seek.Baptiste Coudurier2008-06-07
| | | | Originally committed as revision 13682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, rename first to header, more explicit nameBaptiste Coudurier2008-06-06
| | | | Originally committed as revision 13677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace printf by av_logBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_hex_dump_logBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use dprintfBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if frame_offset is negative, prevent segfaultBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return error if len is negative, prevent segfaultBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ffserver specific functions up and only include unistd.h in this caseBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ffm_seek1 before get_pts function since func uses itBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move DEBUG_SEEK definition before get_pts since func uses itBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move get_pts function to avoid useless declarationBaptiste Coudurier2008-05-26
| | | | Originally committed as revision 13415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split ffm de/muxerBaptiste Coudurier2008-05-26
Originally committed as revision 13413 to svn://svn.ffmpeg.org/ffmpeg/trunk