aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/tree.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-11-231-2/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (22 commits) aacdec: Fix PS in ADTS. avconv: Consistently use PIX_FMT_NONE. dsputil: use cpuflags in x86 emu_edge_core dsputil: use movups instead of movdqu in ff_emu_edge_core_sse() wma: initialize prev_block_len_bits, next_block_len_bits, and block_len_bits. mov: Remove some redundant and obsolete comments. Add libavutil/mathematics.h #includes for INFINITY doxy: structure libavformat groups doxy: introduce an empty structure in libavcodec doxy: provide a start page and document libavutil doxy: cleanup pixfmt.h regtest: split video encode/decode tests into individual targets ARM: add explicit .arch and .fpu directives to asm.S pthread: do not touch has_b_frames avconv: cleanup the transcoding loop in output_packet(). avconv: split subtitle transcoding out of output_packet(). avconv: split video transcoding out of output_packet(). avconv: split audio transcoding out of output_packet(). avconv: reindent. avconv: move streamcopy-only code out of decoding loop. ... Conflicts: avconv.c libavcodec/aaccoder.c libavcodec/pthread.c libavcodec/version.h libavutil/audioconvert.h libavutil/avutil.h libavutil/mem.h tests/ref/vsynth1/dv tests/ref/vsynth1/mpeg2thread tests/ref/vsynth2/dv tests/ref/vsynth2/mpeg2thread Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doxy: provide a start page and document libavutilLuca Barbato2011-11-221-2/+15
| | | | | | | | | | | | Introduce a basic layout, the subpages are currently left empty. Split libavutil in multiple groups as example of the structure
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * Remove a few if (p) av_freep(&p) formsClément Bœsch2011-02-041-1/+1
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* | Remove a few if (p) av_freep(&p) formsClément Bœsch2011-02-061-1/+1
|/ | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 523d9407d57e9210428b6d962f0ebf48aae55638)
* Fix grammar errors in documentationMåns Rullgård2010-06-301-3/+3
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | 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
* Plug memory leak in NUT muxer and demuxerVitor Sessak2010-03-031-0/+13
| | | | Originally committed as revision 22174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r22119 and partially revert 22120.Vitor Sessak2010-03-011-1/+0
| | | | Originally committed as revision 22135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_tree_destroy_free_elem() to destroy a tree and free all theVitor Sessak2010-02-281-0/+1
| | | | | | values stored on it. Originally committed as revision 22119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add @code/@endcode commands to markup C code in av_tree_insert() doxy.Stefano Sabatini2009-05-091-1/+2
| | | | Originally committed as revision 18776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing '*' to av_tree_insert() doxy.Stefano Sabatini2009-05-091-1/+1
| | | | Originally committed as revision 18775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | 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
* spelling/grammar/consistency review part IIDiego Biurrun2009-01-281-9/+9
| | | | Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid undefined behavior for removing elements that were not in the tree.Michael Niedermayer2008-09-191-2/+1
| | | | Originally committed as revision 15368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-311-3/+3
| | | | | | | | | 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
* Document O() time.Michael Niedermayer2008-01-041-0/+2
| | | | Originally committed as revision 11403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document node removial API.Michael Niedermayer2008-01-041-6/+18
| | | | Originally committed as revision 11402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move *malloc() out of tree.c, that way the code can be used withMichael Niedermayer2008-01-041-1/+11
| | | | | | flat arrays which have lower overhead than millions of mallocd() elements. Originally committed as revision 11399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-171-3/+3
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Doxygen author and file description, rephrase a Doxygen comment.Diego Biurrun2007-02-271-3/+9
| | | | Originally committed as revision 8147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar fixes for the Doxygen commentsDiego Biurrun2007-02-271-12/+12
| | | | Originally committed as revision 8138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert previous commit that contained an unrelated hunk.Diego Biurrun2007-02-271-4/+4
| | | | Originally committed as revision 8137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar fixes for a Doxygen commentDiego Biurrun2007-02-261-4/+4
| | | | Originally committed as revision 8136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* doxyMichael Niedermayer2006-11-301-2/+25
| | | | Originally committed as revision 7188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVL treeMichael Niedermayer2006-11-141-0/+29
Originally committed as revision 7031 to svn://svn.ffmpeg.org/ffmpeg/trunk