diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-11 21:44:23 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-11 21:44:23 +0000 |
commit | 9a2cb05ff9281339c37feb8488e5d24d794672fb (patch) | |
tree | 3ce17a493a3067acd23fe0e513092a8601054b94 /libavformat/avformat.h | |
parent | bc3c85a3e6f684c6aa38760d627d05587faf1bca (diff) | |
download | ffmpeg-9a2cb05ff9281339c37feb8488e5d24d794672fb.tar.gz |
Move the internal function declarations in avformat.h to internal.h.
Originally committed as revision 22843 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 7cc059c30a..5ff08c0edb 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1337,30 +1337,4 @@ int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size); */ int av_match_ext(const char *filename, const char *extensions); -#ifdef HAVE_AV_CONFIG_H - -void ff_dynarray_add(intptr_t **tab_ptr, int *nb_ptr, intptr_t elem); - -#ifdef __GNUC__ -#define dynarray_add(tab, nb_ptr, elem)\ -do {\ - __typeof__(tab) _tab = (tab);\ - __typeof__(elem) _elem = (elem);\ - (void)sizeof(**_tab == _elem); /* check that types are compatible */\ - ff_dynarray_add((intptr_t **)_tab, nb_ptr, (intptr_t)_elem);\ -} while(0) -#else -#define dynarray_add(tab, nb_ptr, elem)\ -do {\ - ff_dynarray_add((intptr_t **)(tab), nb_ptr, (intptr_t)(elem));\ -} while(0) -#endif - -time_t mktimegm(struct tm *tm); -struct tm *brktimegm(time_t secs, struct tm *tm); -const char *small_strptime(const char *p, const char *fmt, - struct tm *dt); - -#endif /* HAVE_AV_CONFIG_H */ - #endif /* AVFORMAT_AVFORMAT_H */ |