#include "avformat.h"
#include "internal.h"
#include "riff.h"
Go to the source code of this file.
Data Structures | |
| struct | SMJPEGContext |
Functions | |
| static int | smjpeg_probe (AVProbeData *p) |
| static int | smjpeg_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | smjpeg_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| static const AVCodecTag | codec_smjpeg_tags [] |
| AVInputFormat | ff_smjpeg_demuxer |
Definition in file smjpeg.c.
| static int smjpeg_probe | ( | AVProbeData * | p | ) | [static] |
| static int smjpeg_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int smjpeg_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
const AVCodecTag codec_smjpeg_tags[] [static] |
Initial value:
{
{ CODEC_ID_ADPCM_IMA_SMJPEG, MKTAG('A', 'P', 'C', 'M') },
{ CODEC_ID_PCM_S16LE, MKTAG('N', 'O', 'N', 'E') },
{ CODEC_ID_MJPEG, MKTAG('J', 'F', 'I', 'F') },
{ CODEC_ID_NONE, 0 },
}
Initial value:
{
.name = "smjpeg",
.long_name = NULL_IF_CONFIG_SMALL("Loki SDL MJPEG"),
.priv_data_size = sizeof(SMJPEGContext),
.read_probe = smjpeg_probe,
.read_header = smjpeg_read_header,
.read_packet = smjpeg_read_packet,
.extensions = "mjpg",
}
1.5.8