FFmpeg
Data Structures | Functions | Variables
subviewerdec.c File Reference
#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "avio_internal.h"
#include "libavcodec/internal.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/intreadwrite.h"

Go to the source code of this file.

Data Structures

struct  SubViewerContext
 

Functions

static int subviewer_probe (const AVProbeData *p)
 
static int read_ts (const char *s, int64_t *start, int *duration)
 
static int subviewer_read_header (AVFormatContext *s)
 
static int subviewer_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int subviewer_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int subviewer_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_subviewer_demuxer
 

Detailed Description

SubViewer subtitle demuxer

See also
https://en.wikipedia.org/wiki/SubViewer

Definition in file subviewerdec.c.

Function Documentation

◆ subviewer_probe()

static int subviewer_probe ( const AVProbeData p)
static

Definition at line 40 of file subviewerdec.c.

◆ read_ts()

static int read_ts ( const char *  s,
int64_t *  start,
int duration 
)
static

Definition at line 54 of file subviewerdec.c.

Referenced by subviewer_read_header().

◆ subviewer_read_header()

static int subviewer_read_header ( AVFormatContext s)
static

Definition at line 70 of file subviewerdec.c.

◆ subviewer_read_packet()

static int subviewer_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 175 of file subviewerdec.c.

◆ subviewer_read_seek()

static int subviewer_read_seek ( AVFormatContext s,
int  stream_index,
int64_t  min_ts,
int64_t  ts,
int64_t  max_ts,
int  flags 
)
static

Definition at line 181 of file subviewerdec.c.

◆ subviewer_read_close()

static int subviewer_read_close ( AVFormatContext s)
static

Definition at line 189 of file subviewerdec.c.

Variable Documentation

◆ ff_subviewer_demuxer

AVInputFormat ff_subviewer_demuxer
Initial value:
= {
.name = "subviewer",
.long_name = NULL_IF_CONFIG_SMALL("SubViewer subtitle format"),
.priv_data_size = sizeof(SubViewerContext),
.read_seek2 = subviewer_read_seek,
.extensions = "sub",
}

Definition at line 196 of file subviewerdec.c.

subviewer_read_seek
static int subviewer_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: subviewerdec.c:181
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
subviewer_probe
static int subviewer_probe(const AVProbeData *p)
Definition: subviewerdec.c:40
SubViewerContext
Definition: subviewerdec.c:36
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
subviewer_read_packet
static int subviewer_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: subviewerdec.c:175
subviewer_read_header
static int subviewer_read_header(AVFormatContext *s)
Definition: subviewerdec.c:70
subviewer_read_close
static int subviewer_read_close(AVFormatContext *s)
Definition: subviewerdec.c:189