- 21 Feb, 2011 1 commit
-
-
Anton Khirnov authored
In the name of consistency: put_byte -> avio_w8 put_<type> -> avio_w<type> put_buffer -> avio_write put_nbyte will be made private put_tag will be merged with avio_put_str Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 20 Feb, 2011 1 commit
-
-
Anton Khirnov authored
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
- 26 Jan, 2011 1 commit
-
-
Diego Elio Pettenò authored
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
-
- 16 Oct, 2010 1 commit
-
-
Michael Niedermayer authored
Fixes a scr issue reported with dvdauthor ([FFmpeg-user] FFMPEG encoded MPEG-2 video causes error in DVDAuthor) Originally committed as revision 25512 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Oct, 2010 1 commit
-
-
Michael Niedermayer authored
Originally committed as revision 25414 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 07 Oct, 2010 2 commits
-
-
Michael Niedermayer authored
Originally committed as revision 25385 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Michael Niedermayer authored
This fixes issues if the first DTS is far away from 0. Originally committed as revision 25383 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 31 Mar, 2010 1 commit
-
-
Jean-Daniel Dupas authored
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 30 Mar, 2010 1 commit
-
-
Stefano Sabatini authored
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 01 Oct, 2009 1 commit
-
-
Reimar Döffinger authored
undefined shift behaviour. Document this, fix the assert and add a put_bits32 to handle writing 32 bits and use that where necessary. Originally committed as revision 20124 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 17 Jun, 2009 1 commit
-
-
Ronald S. Bultje authored
(max packet size should fit in 13 bits as a kB value, so 1<<23, plus the header which is 10 bytes), and as per mpegenc.c internal assumptions (min packet size is 20 bytes). See "[PATCH] make packet_size in AVFormatContext unsigned" thread. Originally committed as revision 19215 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 22 May, 2009 1 commit
-
-
Baptiste Coudurier authored
Originally committed as revision 18897 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 May, 2009 1 commit
-
-
Baptiste Coudurier authored
Originally committed as revision 18891 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 13 Apr, 2009 1 commit
-
-
Stefano Sabatini authored
The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 12 Apr, 2009 1 commit
-
-
Stefano Sabatini authored
put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 Mar, 2009 1 commit
-
-
Reimar Döffinger authored
consistent with av_fifo_generic_write. Originally committed as revision 17914 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Mar, 2009 1 commit
-
-
Michael Niedermayer authored
Yes this breaks ABI/API but ive already broken it and will bump avutil major soon. Originally committed as revision 17869 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 19 Jan, 2009 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 14 Jan, 2009 1 commit
-
-
Aurelien Jacobs authored
and remove all ENABLE_ definitions. Originally committed as revision 16600 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 13 Jan, 2009 1 commit
-
-
Aurelien Jacobs authored
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 26 Aug, 2008 1 commit
-
-
Michael Niedermayer authored
Originally committed as revision 14972 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 19 Aug, 2008 1 commit
-
-
Stefano Sabatini authored
deprecated, with corresponding invocations of av_fifo_realloc2(). Originally committed as revision 14848 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 03 Aug, 2008 1 commit
-
-
Justin Ruggles authored
Originally committed as revision 14523 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 03 Jun, 2008 1 commit
-
-
Stefano Sabatini authored
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
-
- 28 May, 2008 1 commit
-
-
Baptiste Coudurier authored
Originally committed as revision 13511 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 25 May, 2008 2 commits
-
-
Michael Niedermayer authored
Fixed issue417. Originally committed as revision 13405 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Michael Niedermayer authored
This is more efficient as in practice the check is redundant most of the time. Callers which do not know if enough data is available have to check it with av_fifo_size(). Doing the check in *read() means the caller has no choice to skip the check when its known to be redundant. Also the return value was never documented in a public header so changing it should not break the API. Besides this fixes the case where read() failed on a 100% full fifo. Originally committed as revision 13404 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 09 May, 2008 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 31 Jan, 2008 2 commits
-
-
Baptiste Coudurier authored
init to 0, fix warning: mpegenc.c:1022: warning: 'avail_space' may be used uninitialized in this function Originally committed as revision 11683 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Baptiste Coudurier authored
Originally committed as revision 11682 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 Nov, 2007 1 commit
-
-
Björn Axelsson authored
patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 16 Sep, 2007 1 commit
-
-
Aurelien Jacobs authored
Originally committed as revision 10513 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 05 Sep, 2007 2 commits
-
-
Michael Niedermayer authored
there is no need for put_timestamp to be exported it is not used outside the PES code Originally committed as revision 10410 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Michael Niedermayer authored
this will be needed for spliting the PES muxer code out Originally committed as revision 10409 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 15 Jul, 2007 1 commit
-
-
Michael Niedermayer authored
same md5 with a short -t dvd encoding fixes streamcopy of dvd Originally committed as revision 9687 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 14 Jul, 2007 1 commit
-
-
Aurelien Jacobs authored
This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-muxer=mpeg1system Originally committed as revision 9650 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 21 Jun, 2007 3 commits
-
-
Baptiste Coudurier authored
Originally committed as revision 9384 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Baptiste Coudurier authored
Originally committed as revision 9383 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Baptiste Coudurier authored
split mpeg ps and variants muxer and demuxer, I'll clean more in a few minutes, lpcm freq tab is left static const in mpeg.h for now until we have more code in common Originally committed as revision 9382 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 12 Jun, 2007 1 commit
-
-
Diego Biurrun authored
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
-