Commit 52959b20 authored by bcoudurier's avatar bcoudurier

move ffserver specific functions up and only include unistd.h in this case

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13418 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b75dc7a1
...@@ -21,8 +21,37 @@ ...@@ -21,8 +21,37 @@
#include "avformat.h" #include "avformat.h"
#include "ffm.h" #include "ffm.h"
#ifdef CONFIG_FFSERVER
#include <unistd.h> #include <unistd.h>
offset_t ffm_read_write_index(int fd)
{
uint8_t buf[8];
lseek(fd, 8, SEEK_SET);
read(fd, buf, 8);
return AV_RB64(buf);
}
void ffm_write_write_index(int fd, offset_t pos)
{
uint8_t buf[8];
int i;
for(i=0;i<8;i++)
buf[i] = (pos >> (56 - i * 8)) & 0xff;
lseek(fd, 8, SEEK_SET);
write(fd, buf, 8);
}
void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size)
{
FFMContext *ffm = s->priv_data;
ffm->write_index = pos;
ffm->file_size = file_size;
}
#endif // CONFIG_FFSERVER
static int ffm_is_avail_data(AVFormatContext *s, int size) static int ffm_is_avail_data(AVFormatContext *s, int size)
{ {
FFMContext *ffm = s->priv_data; FFMContext *ffm = s->priv_data;
...@@ -433,35 +462,6 @@ static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, in ...@@ -433,35 +462,6 @@ static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, in
return 0; return 0;
} }
#ifdef CONFIG_FFSERVER
offset_t ffm_read_write_index(int fd)
{
uint8_t buf[8];
lseek(fd, 8, SEEK_SET);
read(fd, buf, 8);
return AV_RB64(buf);
}
void ffm_write_write_index(int fd, offset_t pos)
{
uint8_t buf[8];
int i;
for(i=0;i<8;i++)
buf[i] = (pos >> (56 - i * 8)) & 0xff;
lseek(fd, 8, SEEK_SET);
write(fd, buf, 8);
}
void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size)
{
FFMContext *ffm = s->priv_data;
ffm->write_index = pos;
ffm->file_size = file_size;
}
#endif // CONFIG_FFSERVER
static int ffm_read_close(AVFormatContext *s) static int ffm_read_close(AVFormatContext *s)
{ {
AVStream *st; AVStream *st;
......
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