summaryrefslogtreecommitdiff
path: root/libavformat/cutils.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit 'ed6dad3737bf7bb2d5e9fa9511dfdb44806010e8'Michael Niedermayer2014-10-261-23/+5
|\ | | | | | | | | | | | | * commit 'ed6dad3737bf7bb2d5e9fa9511dfdb44806010e8': lavf: Implement ff_brktimegm using gmtime_r Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavf: Implement ff_brktimegm using gmtime_rMartin Storsjö2014-10-261-23/+5
| | | | | | | | | | | | | | While a standalone implementation is nice, we already depend on gmtime and gmtime_r in a number of places. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-02-161-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (27 commits) ppc: Add ff_ prefix to nonstatic symbols sh4: Add ff_ prefix to nonstatic symbols mpegvideo: Add ff_ prefix to nonstatic functions rtjpeg: Add ff_ prefix to nonstatic symbols rv: Add ff_ prefix to nonstatic symbols vp56: Add ff_ prefix to nonstatic symbols vorbis: Add ff_ prefix to nonstatic symbols msmpeg4: Add ff_ prefix to nonstatic symbols vc1: Add ff_ prefix to nonstatic symbols msmpeg4: Add ff_ prefixes to nonstatic symbols snow: Add ff_ prefix to nonstatic symbols mpeg12: Add ff_ prefix to nonstatic symbols mpeg4: Add ff_ prefixes to nonstatic symbols lagarith: Add ff_ prefix to lag_rac_init libavcodec: Add ff_ prefix to j_rev_dct* dsputil: Add ff_ prefix to inv_zigzag_direct16 libavcodec: Prefix fdct_ifast, fdct_ifast248 dsputil: Add ff_ prefix to the dsputil*_init* functions libavcodec: Add ff_ prefix to some nonstatic symbols vlc/rl: Add ff_ prefix to the nonstatic symbols ... Conflicts: libavcodec/Makefile libavcodec/allcodecs.c libavcodec/dnxhddec.c libavcodec/ffv1.c libavcodec/h263.h libavcodec/h263dec.c libavcodec/h264.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/nuv.c libavcodec/ppc/dsputil_ppc.c libavcodec/proresdsp.c libavcodec/svq3.c libavcodec/version.h libavformat/dv.h libavformat/dvenc.c libavformat/matroskadec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * libavformat: Add an ff_ prefix to some lavf internal symbolsMartin Storsjö2012-02-151-1/+1
| | | | | | | | | | | | | | | | | | | | Prefix the functions/tables brktimegm, pcm_read_seek, dv_offset_reset, voc_get_packet, codec_movaudio_tags, codec_movvideo_tags. After this, lavf has no global symbols without the proper prefix. Signed-off-by: Martin Storsjö <martin@martin.st>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-11-031-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (44 commits) replacement Indeo 3 decoder gsm demuxer: do not allocate packet twice. flvenc: use first packet delay as global delay. ac3enc: doxygen update. imc: return error codes instead of 0 for error conditions. imc: return meaningful error codes instead of -1 imc: do not set channel layout for stereo imc: validate channel count imc: check for ff_fft_init() failure imc: check output buffer size before decoding imc: use DSPContext.bswap16_buf() to byte-swap packet data rtsp: add allowed_media_types option libgsm: add flush function to reset the decoder state when seeking libgsm: simplify decoding by using a loop gsm: log error message when packet is too small libgsmdec: do not needlessly set *data_size to 0 gsmdec: do not needlessly set *data_size to 0 gsmdec: add flush function to reset the decoder state when seeking libgsmdec: check output buffer size before decoding gsmdec: log error message when output buffer is too small. ... Conflicts: Changelog ffplay.c libavcodec/indeo3.c libavcodec/mjpeg_parser.c libavcodec/vp3.c libavformat/cutils.c libavformat/id3v2.c libavutil/parseutils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Replace ffmpeg references with more accurate libav* references.Diego Biurrun2011-11-021-1/+1
| |
| * Replace outdated references to ffmpeg tool with avconv.Diego Biurrun2011-11-021-1/+1
| |
* | Merge commit '85770f2a2651497861ed938efcd0df3696ff5e45'Michael Niedermayer2011-05-011-21/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '85770f2a2651497861ed938efcd0df3696ff5e45': AVOptions: make default_val a union, as proposed in AVOption2. Move ff_dynarray_add to lavu and make it public. lavf: remove duplicate assignment in avformat_alloc_context. lavf: use designated initializers for AVClasses. options: simplify av_find_opt by using av_next_option. Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | Move ff_dynarray_add to lavu and make it public.Anton Khirnov2011-04-291-21/+0
| |/
| * Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | | | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
| * Deprecate parse_date() in favor of av_parse_time().Stefano Sabatini2011-02-161-110/+0
| | | | | | | | | | | | | | | | The new av_parse_time() is created in libavutil/parseutils.h, all the internal functions used by parse_date are moved to libavutil/parseutils.c and made static. Signed-off-by: Mans Rullgard <mans@mansr.com>
* | Deprecate parse_date() in favor of av_parse_time().Stefano Sabatini2011-02-181-110/+0
|/ | | | | | | | | The new av_parse_time() is created in libavutil/parseutils.h, all the internal functions used by parse_date are moved to libavutil/parseutils.c and made static. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit f6c7375a175ac649558aefab14f3895b2cb469aa)
* ffmpeg: add a grow_array() helper functionAurelien Jacobs2010-10-011-0/+1
| | | | Originally committed as revision 25297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the internal function declarations in avformat.h to internal.h.Stefano Sabatini2010-04-111-0/+1
| | | | Originally committed as revision 22843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not misuse unsigned long to store pointers.Ramiro Polla2009-02-041-3/+3
| | | | Originally committed as revision 16986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not loop endlessly if converting into dv with timestamps Jan 1st notCarl Eugen Hoyos2008-05-211-1/+2
| | | | | | | | | immediately following a lapyear. Patch by babupillai. Fixes issue 443. Originally committed as revision 13207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid using reserved __names.Michael Niedermayer2008-04-241-1/+1
| | | | Originally committed as revision 12946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2007-07-021-1/+1
| | | | Originally committed as revision 9459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove old unused string functionsMåns Rullgård2007-06-231-63/+0
| | | | Originally committed as revision 9402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless #ifndef CONFIG_NOCUTILSMåns Rullgård2007-06-231-3/+0
| | | | Originally committed as revision 9394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify stristart()Måns Rullgård2007-06-231-14/+6
| | | | Originally committed as revision 9393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: combine declaration and initialisationMåns Rullgård2007-06-231-2/+1
| | | | Originally committed as revision 9392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify pstrcpy()Måns Rullgård2007-06-231-10/+3
| | | | Originally committed as revision 9391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify strstart()Måns Rullgård2007-06-221-14/+6
| | | | Originally committed as revision 9390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-221-5/+5
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-6/+6
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * replacing calls to not-always-available gmtime_r with our own code.Roman Shaposhnik2004-08-181-0/+34
| | | | | | | | The new helper function actually differs in semantics from gmtime_r, so if that seems to be a problem I can actually move it to dv.c completely, since only DV muxer uses the code anyway. Originally committed as revision 3399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simpler strptime - added os_support.[ch] - moved localtime_r to os_support.cFabrice Bellard2003-09-081-0/+109
| | | | Originally committed as revision 2228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed ctype.h headerFabrice Bellard2003-09-081-1/+0
| | | | Originally committed as revision 2225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dynamic array functionsFabrice Bellard2003-06-131-0/+21
| | | | Originally committed as revision 1955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * static,const,compiler warning cleanupZdenek Kabelac2003-02-101-1/+1
| | | | Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-251-0/+110
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk