summaryrefslogtreecommitdiff
path: root/libavformat/libnut.c
Commit message (Collapse)AuthorAge
* lavf: replace av_new_stream->avformat_new_stream part II.Anton Khirnov2011-10-19
| | | | | | | | Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed.
* lavf: use designated initialisers for all (de)muxers.Anton Khirnov2011-07-17
| | | | It's more readable and less prone to breakage.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avio: rename put_flush_packet -> avio_flushAnton Khirnov2011-03-16
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fsizeAnton Khirnov2011-03-07
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov2011-03-04
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio_ prefix for url_fseekAnton Khirnov2011-03-01
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: avio: avio_ prefixes for put_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | 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>
* avio: avio_ prefixes for get_* functionsAnton Khirnov2011-02-21
| | | | | | | | | | | | | | In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* avio: rename ByteIOContext to AVIOContext.Anton Khirnov2011-02-20
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | 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.
* 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
* 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
* Add ff_ prefixes to exported symbols in libavformat/riff.h.Daniel Verkamp2009-06-22
| | | | | | patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 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
* Update lavf/libnut.c to _tt type names in libnut APIOded Shimon2008-12-12
| | | | Originally committed as revision 16075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_MUXERS preprocessor conditionals by more specificDiego Biurrun2008-09-02
| | | | | | CONFIG_FOO_MUXER conditionals where appropriate. Originally committed as revision 15158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert every muxer/demuxer to write/read sample_aspect_ratio from/toAurelien Jacobs2008-08-23
| | | | | | the corresponding AVStream instead of AVCodecContext Originally committed as revision 14933 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
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | 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
* Give the libnut muxer a lib prefix in its name so it does not conflict withDiego Biurrun2007-11-07
| | | | | | the native implementation. Originally committed as revision 10941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefix library format names with 'lib' in libavformatRamiro Polla2007-09-05
| | | | Originally committed as revision 10414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-08
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove usage of deprecated functions in libnut.c (codec_get_id/tag)Oded Shimon2007-03-10
| | | | Originally committed as revision 8316 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add doxygen file header to libnut.cOded Shimon2007-03-10
| | | | Originally committed as revision 8315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add LGPL header as requested by Oded.Diego Biurrun2007-02-25
| | | | Originally committed as revision 8126 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Properly separate native and libnut NUT (de)muxers.Diego Biurrun2007-02-09
| | | | Originally committed as revision 7891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add codec_id <-> codec_tag tables to AVIn/OutputFormatMichael Niedermayer2007-01-21
| | | | Originally committed as revision 7593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sync to libnut, nom->numOded Shimon2006-12-23
| | | | Originally committed as revision 7367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change mpeg4 fourcc from "mp4s" to "mp4v"Oded Shimon2006-11-17
| | | | Originally committed as revision 7116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update to libnut, use framecode table generatorOded Shimon2006-11-17
| | | | Originally committed as revision 7115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update to libnut API, changes to frame_table_inputOded Shimon2006-11-17
| | | | Originally committed as revision 7114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update to libnut API, non-negative errorsOded Shimon2006-11-16
| | | | Originally committed as revision 7094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update to libnut API, don't free the streamsOded Shimon2006-11-15
| | | | Originally committed as revision 7087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update to libnut, add cache_syncpointsOded Shimon2006-11-14
| | | | Originally committed as revision 7062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update to libnut API, rename nut.h->libnut.hOded Shimon2006-11-14
| | | | Originally committed as revision 7051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change include "nut.h" to <nut.h> to make gcc pick the correct nut.h for ↵Oded Shimon2006-11-12
| | | | | | libnut de/muxer.. Originally committed as revision 6985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add libnut support until ffmpeg gets an independant and complete de/muxer ↵Oded Shimon2006-11-12
for NUT Originally committed as revision 6977 to svn://svn.ffmpeg.org/ffmpeg/trunk