Commit b7cf73ff authored by glantau's avatar glantau

image number handling


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@126 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 676b8ff5
......@@ -62,7 +62,8 @@ typedef struct AVFormat {
origin is defined by the stream */
int (*read_seek)(struct AVFormatContext *, INT64 pts);
int flags;
#define AVFMT_NOFILE 0x0001 /* no file should be opened */
#define AVFMT_NOFILE 0x0001 /* no file should be opened */
#define AVFMT_NEEDNUMBER 0x0002 /* needs '%d' in filename */
struct AVFormat *next;
} AVFormat;
......@@ -194,3 +195,5 @@ 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);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment