summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
Commit message (Collapse)AuthorAge
* nut: Drop doxygen markersLuca Barbato2015-06-15
|
* nut: Support experimental NUT 4 featuresLuca Barbato2014-05-28
| | | | | | | Add the low overhead pipe mode and the extended broadcast mode. Export the options as 'syncponts' since it impacts only that. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* nut: Fix unchecked allocationsDerek Buitenhuis2013-10-22
| | | | | CC: libav-stable@libav.org Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* Remove commented-out #includesDiego Biurrun2013-05-15
|
* nut: use a define for the nut versionLuca Barbato2013-05-06
| | | | Ease switching version in the future and make evident why that value.
* lavf: move ff_codec_get_tag() and ff_codec_get_id() definitions to internal.hJustin Ruggles2012-11-28
|
* nut: support textual dataLuca Barbato2012-10-29
| | | | Plain text (utf8 encoded) data can be muxed and demuxed in nut.
* nut: support pcm codecs not mapped in aviLuca Barbato2012-10-13
| | | | The native tags will be used when available.
* nut: prioritize native tagsLuca Barbato2012-10-13
| | | | | Use native tags instead of avi ones, simplifies a lot raw video codecs handling.
* Give all anonymously typedeffed structs in headers a nameDiego Biurrun2012-10-06
| | | | Anonymous structs cannot be forward declared and have no benefit.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* nutenc: mux chapters.Anton Khirnov2011-03-17
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* Define ff_nut_video_tags and make Nut muxer and demuxer set it inStefano Sabatini2010-05-23
| | | | | | codec_tag. Originally committed as revision 23259 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix NUT (de)muxer warnings:Vitor Sessak2010-03-28
| | | | | | | | | | | | | | | | | CC libavformat/nutdec.o libavformat/nutdec.c: In function ‘read_seek’: libavformat/nutdec.c:862: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:871: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ libavformat/nutdec.c:879: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ CC libavformat/nutenc.o libavformat/nutenc.c: In function ‘write_packet’: libavformat/nutenc.c:680: warning: passing argument 3 of ‘av_tree_find’ from incompatible pointer type ./libavutil/tree.h:44: note: expected ‘int (*)(void *, const void *)’ but argument is of type ‘int (*)(struct Syncpoint *, struct Syncpoint *)’ Originally committed as revision 22707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Plug memory leak in NUT muxer and demuxerVitor Sessak2010-03-03
| | | | Originally committed as revision 22174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce metadata conversion table for NUT muxer and demuxer.Anton Khirnov2010-02-24
| | | | | | | Patch by Anton Khirnov (wyskas, do no evil mail) Thread "[PATCH] nut metadata conversion table" Originally committed as revision 22015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove misleading comment, _t is POSIX-reserved namespace.Diego Biurrun2008-12-13
| | | | Originally committed as revision 16105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove comment suggesting using variables ending in _t as this would break ↵Michael Niedermayer2008-12-11
| | | | | | POSIX. Originally committed as revision 16061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove _t for POSIX compatibility.Michael Niedermayer2008-12-11
| | | | Originally committed as revision 16057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r14497Michael Niedermayer2008-08-01
| | | | | | | | | Log: Add missing header #includes. Policy violation (change not approved by maintainer) and while discussions where ongoing and no consensus has been reached. Originally committed as revision 14500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing header #includes.Diego Biurrun2008-08-01
| | | | Originally committed as revision 14497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov2008-03-07
| | | | | | of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Subtitle support. (untested)Michael Niedermayer2008-03-05
| | | | Originally committed as revision 12330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Elision header demuxing support.Michael Niedermayer2008-02-15
| | | | Originally committed as revision 11935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update flagsMichael Niedermayer2008-02-13
| | | | Originally committed as revision 11929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename av_crc04C11DB7_update to ff_crc04C11DB7_update and move it to ↵Baptiste Coudurier2007-10-30
| | | | | | aviobuf.c so it can be reused by other (de)muxers Originally committed as revision 10873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/wording cosmeticsDiego Biurrun2007-08-17
| | | | Originally committed as revision 10131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* header repetitionMichael Niedermayer2007-08-10
| | | | Originally committed as revision 10051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move syncpoint cache related stuff to common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move lsb2full to common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move crc wrapper to slightly better spotMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move syncpoint timestamp resetting code to a common fileMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use a dynamic ByteIOContext instead of using the lavf bufferMichael Niedermayer2007-08-09
| | | | | | | this makes the code work with big packets, it is also simpler and saves a byte or 2 Originally committed as revision 10015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make StreamContext.time_base a pointerMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* variables needed for muxerMichael Niedermayer2007-08-09
| | | | Originally committed as revision 10009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing comment markers to #endif directive.Diego Biurrun2007-07-02
| | | | Originally committed as revision 9455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a comment to indicate which #endif belong to which #defineGuillaume Poirier2007-06-17
| | | | Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add multiple inclusion guards to headersMåns Rullgård2007-06-17
| | | | Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l forgot (skip non keyframes after seeking between syncpoint and the first ↵Michael Niedermayer2006-11-16
| | | | | | keyframe) Originally committed as revision 7103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* index less seeking in O(log n) timeMichael Niedermayer2006-11-14
| | | | Originally committed as revision 7056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* updating nut demuxer to latest specMichael Niedermayer2006-11-11
no muxing yet no index yet no seeking yet libnuts crcs dont match mine (didnt investigate yet) samplerate is stored wrong by libnut (demuxer has a workaround) code is not clean or beautifull yet, but i thought its better to commit early before someone unneccesarily wastes his time duplicating the work demuxer split from muxer Originally committed as revision 6966 to svn://svn.ffmpeg.org/ffmpeg/trunk