aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/aviobuf.c
Commit message (Expand)AuthorAgeFilesLines
* Make url_resetbuf() assert on wrong flags passed and make it static on nextBenoit Fouet2009-10-201-0/+11
* Merge declaration and initializationReimar Döffinger2009-10-121-3/+1
* Simplify: use FFMINReimar Döffinger2009-10-121-3/+1
* Make get_buffer and get_partial_buffer return url_ferror or AVERROR_EOF asReimar Döffinger2009-10-021-0/+8
* seek inside buffer when offset is exactly at the end, fix seeking with memory...Baptiste Coudurier2009-04-131-1/+1
* Merge declaration and initialization of io_buffer_sizeReimar Döffinger2009-01-161-6/+1
* Make io_buffer_size unsigned to avoid a warning about comparingReimar Döffinger2009-01-161-1/+2
* Return AVERROR(ENOMEM) instead of -1 when malloc fails in url_open_dyn_buf_in...Reimar Döffinger2009-01-161-1/+1
* Use AV_WB32 instead of reimplementing it.Reimar Döffinger2009-01-161-4/+2
* Use av_mallocz instead of explicitly zeroing in url_open_dyn_buf_internal.Reimar Döffinger2009-01-161-5/+1
* Replace nonsense -1234 return value in dyn_buf_write by proper AVERROR(ENOMEM)Reimar Döffinger2009-01-161-1/+1
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-5/+5
* Initialize s->opaque before calling url_resetbuf().Aurelien Jacobs2008-12-221-1/+1
* whitespace cosmeticsDiego Biurrun2008-12-131-6/+13
* always use the whole buffer for reading w/ packetized sources to avoid packet...Jindřich Makovička2008-11-101-1/+1
* Append read data onto the buffer instead of overwriting, this ensuresMichael Niedermayer2008-10-181-5/+10
* Make size variables in dyn_buf_write unsigned so gcc will not optimize theReimar Döffinger2008-10-041-1/+1
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-031-14/+14
* Only reset buffer state if seeking is successful; update seek reg ref.Baptiste Coudurier2008-07-311-5/+4
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-1/+2
* improve CRC APIAurelien Jacobs2008-01-041-1/+1
* Add a av_alloc_put_byte function.Reimar Döffinger2007-12-221-0/+14
* Make recently added and still unused read_seek functions return offset_t.Michael Niedermayer2007-12-191-3/+3
* Merge recently added and still unused play and pause functions.Michael Niedermayer2007-12-191-12/+3
* Remove unneeded avio wrapper functions.Michael Niedermayer2007-12-191-26/+1
* return error when url_fseek could not read until desired offset in streamed modeBaptiste Coudurier2007-12-161-0/+2
* Extend ByteIOContext and add the buffered IO functions:Björn Axelsson2007-11-281-0/+37
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-211-16/+51
* Add ff_ prefix to get_v()Kostya Shishkov2007-11-031-1/+1
* Make get_v() available to the other demuxersKostya Shishkov2007-11-031-0/+11
* rename av_crc04C11DB7_update to ff_crc04C11DB7_update and move it to aviobuf....Baptiste Coudurier2007-10-301-0/+5
* Add functionality to set the direction of a ByteIOContext buffer.Björn Axelsson2007-10-111-9/+18
* IndentationBenoit Fouet2007-09-261-2/+2
* Check read_packet before using it.Benoit Fouet2007-09-261-1/+3
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-191-1/+1
* cosmetics: fix indentationAlex Beregszaszi2007-05-111-2/+2
* Move aviobuf.c comments to avio.h. By moving the aviobuf.c comments to avio.h,Panagiotis Issaris2007-03-051-40/+0
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-131-5/+5
* Fix misbehaviour in url_fseek() when seeking fails.Ronald S. Bultje2007-01-301-2/+4
* proper error handling in file size retrieval, patch by Ronald S. Bultje rbult...Ronald S. Bultje2007-01-281-1/+3
* fix indention of previous commitMichael Niedermayer2007-01-011-2/+2
* seekless filesize retrieving support in 7 lines of code, also doesnt break co...Michael Niedermayer2007-01-011-0/+3
* put_*() are not only useful to muxers and protocolAurelien Jacobs2006-12-161-2/+0
* Fix compile with --disable-muxers, patch by Loïc Le Loarer, lll+ffmpeg m4x org.Loïc Le Loarer2006-11-301-4/+6
* move memory reading ByteIOContext init from mov.c to avobuf.cMichael Niedermayer2006-10-201-0/+4
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
* support forward seeking in non seekable streamsMichael Niedermayer2006-09-261-0/+7
* simplify seek() failure checkMichael Niedermayer2006-09-261-4/+1
* simplify url_fseek()Michael Niedermayer2006-09-221-39/+24
* fix regression failure after adler simplificationMichael Niedermayer2006-07-201-1/+1