#include "avformat.h"
#include "internal.h"
#include "subtitles.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 (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_close (AVFormatContext *s) |
Variables | |
| AVInputFormat | ff_subviewer_demuxer |
Definition in file subviewerdec.c.
Definition at line 52 of file subviewerdec.c.
| static int subviewer_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 38 of file subviewerdec.c.
| static int subviewer_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 160 of file subviewerdec.c.
| static int subviewer_read_header | ( | AVFormatContext * | s | ) | [static] |
Definition at line 68 of file subviewerdec.c.
| static int subviewer_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Definition at line 154 of file subviewerdec.c.
Initial value:
{
.name = "subviewer",
.long_name = NULL_IF_CONFIG_SMALL("SubViewer subtitle format"),
.priv_data_size = sizeof(SubViewerContext),
.read_probe = subviewer_probe,
.read_header = subviewer_read_header,
.read_packet = subviewer_read_packet,
.read_close = subviewer_read_close,
.flags = AVFMT_GENERIC_INDEX,
.extensions = "sub",
}
Definition at line 167 of file subviewerdec.c.
1.5.8