libavutil/file.c File Reference

#include "file.h"
#include "log.h"
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>

Go to the source code of this file.

Data Structures

struct  FileLogContext

Defines

#define O_BINARY   0
#define O_EXCL   0

Functions

int av_file_map (const char *filename, uint8_t **bufptr, size_t *size, int log_offset, void *log_ctx)
 Read the file with name filename, and put its content in a newly allocated buffer or map it with mmap() when available.
void av_file_unmap (uint8_t *bufptr, size_t size)
 Unmap or free the buffer bufptr created by av_file_map().
int av_tempfile (const char *prefix, char **filename, int log_offset, void *log_ctx)
 Wrapper to work around the lack of mkstemp() on mingw.

Variables

static const AVClass file_log_ctx_class


Define Documentation

#define O_BINARY   0

Referenced by av_tempfile().

#define O_EXCL   0

Referenced by av_tempfile().


Function Documentation

int av_file_map ( const char *  filename,
uint8_t **  bufptr,
size_t *  size,
int  log_offset,
void *  log_ctx 
)

Read the file with name filename, and put its content in a newly allocated buffer or map it with mmap() when available.

In case of success set *bufptr to the read or mmapped buffer, and *size to the size in bytes of the buffer in *bufptr. The returned buffer must be released with av_file_unmap().

Parameters:
log_offset loglevel offset used for logging
log_ctx context used for logging
Returns:
a non negative number in case of success, a negative value corresponding to an AVERROR error code in case of failure

Definition at line 42 of file file.c.

Referenced by init(), init_pattern_from_file(), and read_shape_from_file().

void av_file_unmap ( uint8_t bufptr,
size_t  size 
)

Unmap or free the buffer bufptr created by av_file_map().

Parameters:
size size in bytes of bufptr, must be the same as returned by av_file_map()

Definition at line 122 of file file.c.

Referenced by init(), read_shape_from_file(), and uninit().

int av_tempfile ( const char *  prefix,
char **  filename,
int  log_offset,
void *  log_ctx 
)

Wrapper to work around the lack of mkstemp() on mingw.

Also, tries to create file in /tmp first, if possible. *prefix can be a character constant; *filename will be allocated internally.

Returns:
file descriptor of opened file (or -1 on error) and opened file name in **filename.

Definition at line 133 of file file.c.

Referenced by cache_open(), ff_xvid_rate_control_init(), and xvid_encode_init().


Variable Documentation

const AVClass file_log_ctx_class [static]

Initial value:

 {
    "FILE", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT,
    0x42, 0x42
}

Definition at line 37 of file file.c.


Generated on Fri Oct 26 02:48:01 2012 for FFmpeg by  doxygen 1.5.8