FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
file.c File Reference
#include "libavutil/avstring.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include <fcntl.h>
#include <sys/stat.h>
#include <stdlib.h>
#include "os_support.h"
#include "url.h"

Go to the source code of this file.

Data Structures

struct  FileContext
 

Macros

#define S_ISFIFO(m)   0
 

Functions

static int file_read (URLContext *h, unsigned char *buf, int size)
 
static int file_write (URLContext *h, const unsigned char *buf, int size)
 
static int file_get_handle (URLContext *h)
 
static int file_check (URLContext *h, int mask)
 

Variables

static const AVOption file_options []
 
static const AVOption pipe_options []
 
static const AVClass file_class
 
static const AVClass pipe_class
 

Macro Definition Documentation

#define S_ISFIFO (   m)    0

Definition at line 43 of file file.c.

Function Documentation

static int file_read ( URLContext h,
unsigned char *  buf,
int  size 
)
static

Definition at line 81 of file file.c.

static int file_write ( URLContext h,
const unsigned char *  buf,
int  size 
)
static

Definition at line 90 of file file.c.

static int file_get_handle ( URLContext h)
static

Definition at line 99 of file file.c.

static int file_check ( URLContext h,
int  mask 
)
static

Definition at line 105 of file file.c.

Variable Documentation

const AVOption file_options[]
static
Initial value:
= {
{ "truncate", "truncate existing files on write", 0x42, AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
{ "blocksize", "set I/O operation maximum block size", 0x42, AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
{ NULL }
}

Definition at line 56 of file file.c.

const AVOption pipe_options[]
static
Initial value:
= {
{ "blocksize", "set I/O operation maximum block size", 0x42, AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
{ NULL }
}

Definition at line 62 of file file.c.

const AVClass file_class
static
Initial value:
= {
.class_name = "file",
.item_name = av_default_item_name,
.option = file_options,
}

Definition at line 67 of file file.c.

const AVClass pipe_class
static
Initial value:
= {
.class_name = "pipe",
.item_name = av_default_item_name,
.option = pipe_options,
}

Definition at line 74 of file file.c.