summaryrefslogtreecommitdiff
path: root/libavutil/base64.h
Commit message (Collapse)AuthorAgeFilesLines
* lavu/base64: add AV_BASE64_DECODE_SIZE() macroStefano Sabatini2016-04-021-2/+7
| | | | | This is consistent with the AV_BASE64_SIZE macro and avoids the literal use of constants in the code.
* lavu/base64: extend/clarify doxy for the base64 APIStefano Sabatini2013-01-021-5/+7
| | | | Also improve overall consistency.
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-11-231-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-0/+11
| | | | | | | | | | | | 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>
* base64: improve documentationMåns Rullgård2010-06-301-13/+13
| | | | Originally committed as revision 23905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-301-2/+2
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AV_BASE64_SIZE() macroHoward Chu2010-06-041-0/+5
| | | | Originally committed as revision 23461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini2009-06-061-9/+9
| | | | | | | | improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the av_base64_encode/decode functions.Stefano Sabatini2009-02-081-5/+15
| | | | | | | See the thread: "[PATCH] Improve documentation for libavutil/base64.h". Originally committed as revision 17074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: "* out" -> "*out" for consistency with the otherStefano Sabatini2009-02-081-1/+1
| | | | | | parameters. Originally committed as revision 17072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size".Stefano Sabatini2009-02-081-1/+1
| | | | Originally committed as revision 17071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: prefer out/in over buf/src for the parameter names ofStefano Sabatini2009-02-081-1/+1
| | | | | | av_base64_encode(), for consistency/readability reasons. Originally committed as revision 17069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: consistently prefer "size" over "len"/"length" for theStefano Sabatini2009-02-081-2/+2
| | | | | | variable names. Originally committed as revision 17067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IIDiego Biurrun2009-01-281-4/+3
| | | | Originally committed as revision 16848 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
* Mark the source buffer as "const"Luca Abeni2007-10-301-1/+1
| | | | Originally committed as revision 10877 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 a comment to indicate which #endif belong to which #defineGuillaume Poirier2007-06-171-1/+1
| | | | Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add multiple inclusion guards to headersMåns Rullgård2007-06-171-0/+4
| | | | Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include all prerequisites in header filesMåns Rullgård2007-06-161-0/+2
| | | | Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* expose av_base64_decode and av_base64_encodeLuca Barbato2007-03-191-1/+2
| | | | Originally committed as revision 8448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reverting stray commit part II, r8156 had the base64 export patch mixed with ↵Luca Barbato2007-02-281-0/+33
| | | | | | the nutdec patch Originally committed as revision 8158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reverting stray commit part ILuca Barbato2007-02-281-37/+0
| | | | Originally committed as revision 8157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_packetheader() forgot to read the header_checksum in big packetsLuca Barbato2007-02-281-1/+5
| | | | | | | patch from Clemens Ladisch cladisch AT fastmail dot net (stray base64 patch reverted in the next commits) Originally committed as revision 8156 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move base64.[ch] to libavutil.Carl Eugen Hoyos2007-02-131-0/+33
patch by Carl Eugen Hoyos, cehoyos ag.or at Originally committed as revision 7963 to svn://svn.ffmpeg.org/ffmpeg/trunk