diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-08 11:21:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-08 20:58:19 +0200 |
commit | 3ee53dabcfd8810d01f114599617cf55e481c291 (patch) | |
tree | 2dd4fd5175c5f84640e7b8c82a957c61053fdd25 /libavformat/ffm.h | |
parent | cdc6a87f193b1bf99a640a44374d4f2597118959 (diff) | |
download | ffmpeg-3ee53dabcfd8810d01f114599617cf55e481c291.tar.gz |
lavf: get rid of ffm-specific stuff in avformat.h
Diffstat (limited to 'libavformat/ffm.h')
-rw-r--r-- | libavformat/ffm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/ffm.h b/libavformat/ffm.h index 4c088d6912..89a14a5a88 100644 --- a/libavformat/ffm.h +++ b/libavformat/ffm.h @@ -28,6 +28,7 @@ /* The FFM file is made of blocks of fixed size */ #define FFM_HEADER_SIZE 14 +#define FFM_PACKET_SIZE 4096 #define PACKET_ID 0x666d /* each packet contains frames (which can span several packets */ @@ -55,4 +56,8 @@ typedef struct FFMContext { uint8_t packet[FFM_PACKET_SIZE]; } FFMContext; +int64_t ffm_read_write_index(int fd); +int ffm_write_write_index(int fd, int64_t pos); +void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size); + #endif /* AVFORMAT_FFM_H */ |