#include "libavutil/intreadwrite.h"#include "avformat.h"#include "internal.h"#include "avio.h"Go to the source code of this file.
Data Structures | |
| struct | SMUSHContext |
Functions | |
| static int | smush_read_probe (AVProbeData *p) |
| static int | smush_read_header (AVFormatContext *ctx) |
| static int | smush_read_packet (AVFormatContext *ctx, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_smush_demuxer |
| static int smush_read_header | ( | AVFormatContext * | ctx | ) | [static] |
| static int smush_read_packet | ( | AVFormatContext * | ctx, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int smush_read_probe | ( | AVProbeData * | p | ) | [static] |
Initial value:
{
.name = "smush",
.long_name = NULL_IF_CONFIG_SMALL("LucasArts Smush"),
.priv_data_size = sizeof(SMUSHContext),
.read_probe = smush_read_probe,
.read_header = smush_read_header,
.read_packet = smush_read_packet,
}
1.5.8