diff options
author | Michel Bardiaux <mbardiaux@peaktime.be> | 2006-09-04 09:57:47 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-04 09:57:47 +0000 |
commit | 5c07cf535ffe0743bf332f9b98b82f48ee016517 (patch) | |
tree | 4ae77f2bb314c8a7a9e113205ceac1899407c2a5 /libavformat/avformat.h | |
parent | 22e469590583ebff6305698f0a49676007a6509a (diff) | |
download | ffmpeg-streaming-5c07cf535ffe0743bf332f9b98b82f48ee016517.zip ffmpeg-streaming-5c07cf535ffe0743bf332f9b98b82f48ee016517.tar.gz |
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
Original thread:
Date: Aug 30, 2006 4:54 PM
Subject: [Ffmpeg-devel] [PATCH] Clarified API for numbered sequences
Originally committed as revision 6166 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 8f0c9bf..ad16898 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -515,9 +515,9 @@ void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size); int find_info_tag(char *arg, int arg_size, const char *tag1, const char *info); -int get_frame_filename(char *buf, int buf_size, - const char *path, int number); -int filename_number_test(const char *filename); +int av_get_frame_filename(char *buf, int buf_size, + const char *path, int number); +int av_filename_number_test(const char *filename); /* grab specific */ int video_grab_init(void); |