diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-03 16:47:07 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-03 16:47:07 +0000 |
commit | bad406374038d9edef171a3ff4cfb54464edbc10 (patch) | |
tree | 3cc540da6d9544fd386eb108ce7c14b8d99d2560 /libavformat/internal.h | |
parent | 376924583a8334f2ba1529114333ef89ac8b53de (diff) | |
download | ffmpeg-bad406374038d9edef171a3ff4cfb54464edbc10.tar.gz |
Move declaration of av_set_program_name and av_program_add_stream_index
to a more sensible place.
Originally committed as revision 15991 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index a96f365e34..cb266caed0 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -22,7 +22,11 @@ #define AVFORMAT_INTERNAL_H #include <stdint.h> +#include "avformat.h" char *ff_data_to_hex(char *buf, const uint8_t *src, int size); +void av_set_program_name(AVProgram *program, char *provider_name, char *name); +void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx); + #endif /* AVFORMAT_INTERNAL_H */ |