#include "avformat.h"
#include "rawdec.h"
Go to the source code of this file.
Functions | |
static int | ingenient_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_ingenient_demuxer |
static int ingenient_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 26 of file ingenientdec.c.
Initial value:
{ .name = "ingenient", .long_name = NULL_IF_CONFIG_SMALL("raw Ingenient MJPEG"), .priv_data_size = sizeof(FFRawVideoDemuxerContext), .read_header = ff_raw_video_read_header, .read_packet = ingenient_read_packet, .flags= AVFMT_GENERIC_INDEX, .extensions = "cgi", .value = CODEC_ID_MJPEG, .priv_class = &ingenient_demuxer_class, }
Definition at line 63 of file ingenientdec.c.