2007-07-09 16:26:11 +00:00
|
|
|
/*
|
|
|
|
* Raw Video Decoder
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2007-07-09 16:26:11 +00:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2007-07-09 16:26:11 +00:00
|
|
|
* Raw Video Decoder
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
2010-09-25 08:44:35 +00:00
|
|
|
#include "imgconvert.h"
|
2007-07-09 16:26:11 +00:00
|
|
|
#include "raw.h"
|
2012-06-25 16:56:46 +00:00
|
|
|
#include "libavutil/avassert.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2009-04-02 12:15:04 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-02-07 13:37:08 +00:00
|
|
|
#include "libavutil/imgutils.h"
|
2011-05-16 19:52:35 +00:00
|
|
|
#include "libavutil/opt.h"
|
2007-07-09 16:26:11 +00:00
|
|
|
|
|
|
|
typedef struct RawVideoContext {
|
2011-05-16 19:52:35 +00:00
|
|
|
AVClass *av_class;
|
2010-09-23 20:23:15 +00:00
|
|
|
uint32_t palette[AVPALETTE_COUNT];
|
2007-07-09 16:26:11 +00:00
|
|
|
unsigned char * buffer; /* block of memory for holding one frame */
|
|
|
|
int length; /* number of bytes in buffer */
|
2009-02-21 15:32:56 +00:00
|
|
|
int flip;
|
2012-08-18 02:03:03 +00:00
|
|
|
int interlace;
|
2007-07-09 16:26:11 +00:00
|
|
|
AVFrame pic; ///< AVCodecContext.coded_frame
|
2011-05-16 19:52:35 +00:00
|
|
|
int tff;
|
2007-07-09 16:26:11 +00:00
|
|
|
} RawVideoContext;
|
|
|
|
|
2011-05-16 19:52:35 +00:00
|
|
|
static const AVOption options[]={
|
2011-10-17 05:33:10 +00:00
|
|
|
{"top", "top field first", offsetof(RawVideoContext, tff), AV_OPT_TYPE_INT, {.dbl = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM|AV_OPT_FLAG_VIDEO_PARAM},
|
2011-05-16 19:52:35 +00:00
|
|
|
{NULL}
|
|
|
|
};
|
2012-06-22 23:32:42 +00:00
|
|
|
|
|
|
|
static const AVClass class = {
|
|
|
|
.class_name = "rawdec",
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
2011-05-16 19:52:35 +00:00
|
|
|
|
2010-05-21 23:19:50 +00:00
|
|
|
static const PixelFormatTag pix_fmt_bps_avi[] = {
|
2011-05-16 09:26:45 +00:00
|
|
|
{ PIX_FMT_MONOWHITE, 1 },
|
2011-05-16 09:25:57 +00:00
|
|
|
{ PIX_FMT_PAL8, 2 },
|
2007-07-29 13:32:53 +00:00
|
|
|
{ PIX_FMT_PAL8, 4 },
|
2007-07-09 16:26:11 +00:00
|
|
|
{ PIX_FMT_PAL8, 8 },
|
2010-06-06 11:00:30 +00:00
|
|
|
{ PIX_FMT_RGB444, 12 },
|
2007-07-09 16:26:11 +00:00
|
|
|
{ PIX_FMT_RGB555, 15 },
|
|
|
|
{ PIX_FMT_RGB555, 16 },
|
|
|
|
{ PIX_FMT_BGR24, 24 },
|
2011-05-26 21:49:17 +00:00
|
|
|
{ PIX_FMT_BGRA, 32 },
|
2008-10-13 07:42:11 +00:00
|
|
|
{ PIX_FMT_NONE, 0 },
|
2007-07-09 16:26:11 +00:00
|
|
|
};
|
|
|
|
|
2010-05-21 23:19:50 +00:00
|
|
|
static const PixelFormatTag pix_fmt_bps_mov[] = {
|
2009-12-30 22:58:49 +00:00
|
|
|
{ PIX_FMT_MONOWHITE, 1 },
|
2010-01-05 01:11:45 +00:00
|
|
|
{ PIX_FMT_PAL8, 2 },
|
2008-02-28 16:08:52 +00:00
|
|
|
{ PIX_FMT_PAL8, 4 },
|
2007-07-09 16:26:11 +00:00
|
|
|
{ PIX_FMT_PAL8, 8 },
|
2009-05-10 00:53:02 +00:00
|
|
|
// FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
|
|
|
|
// http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
|
2009-12-31 01:08:10 +00:00
|
|
|
{ PIX_FMT_RGB555BE, 16 },
|
2007-07-09 16:26:11 +00:00
|
|
|
{ PIX_FMT_RGB24, 24 },
|
2009-12-29 11:53:51 +00:00
|
|
|
{ PIX_FMT_ARGB, 32 },
|
2011-05-13 16:10:33 +00:00
|
|
|
{ PIX_FMT_MONOWHITE,33 },
|
2008-10-13 07:42:11 +00:00
|
|
|
{ PIX_FMT_NONE, 0 },
|
2007-07-09 16:26:11 +00:00
|
|
|
};
|
|
|
|
|
2011-03-09 14:11:50 +00:00
|
|
|
enum PixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
|
2007-07-09 16:26:11 +00:00
|
|
|
{
|
|
|
|
while (tags->pix_fmt >= 0) {
|
|
|
|
if (tags->fourcc == fourcc)
|
|
|
|
return tags->pix_fmt;
|
|
|
|
tags++;
|
|
|
|
}
|
|
|
|
return PIX_FMT_YUV420P;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int raw_init_decoder(AVCodecContext *avctx)
|
2007-07-09 16:26:11 +00:00
|
|
|
{
|
|
|
|
RawVideoContext *context = avctx->priv_data;
|
|
|
|
|
2012-07-15 11:25:47 +00:00
|
|
|
if (avctx->codec_tag == MKTAG('r','a','w',' ') || avctx->codec_tag == MKTAG('N','O','1','6'))
|
2011-03-09 14:11:50 +00:00
|
|
|
avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample);
|
2011-05-24 21:38:01 +00:00
|
|
|
else if (avctx->codec_tag == MKTAG('W','R','A','W'))
|
|
|
|
avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
|
2007-07-09 16:26:11 +00:00
|
|
|
else if (avctx->codec_tag)
|
2011-03-09 14:11:50 +00:00
|
|
|
avctx->pix_fmt = ff_find_pix_fmt(ff_raw_pix_fmt_tags, avctx->codec_tag);
|
2010-06-10 08:39:05 +00:00
|
|
|
else if (avctx->pix_fmt == PIX_FMT_NONE && avctx->bits_per_coded_sample)
|
2011-03-09 14:11:50 +00:00
|
|
|
avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_avi, avctx->bits_per_coded_sample);
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2011-05-29 23:42:45 +00:00
|
|
|
if (avctx->pix_fmt == PIX_FMT_NONE) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Pixel format was not specified and cannot be detected\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2010-11-09 22:22:36 +00:00
|
|
|
ff_set_systematic_pal2(context->palette, avctx->pix_fmt);
|
2010-09-23 20:23:15 +00:00
|
|
|
if((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
|
|
|
|
avctx->pix_fmt==PIX_FMT_PAL8 &&
|
|
|
|
(!avctx->codec_tag || avctx->codec_tag == MKTAG('r','a','w',' '))){
|
2012-01-12 16:02:13 +00:00
|
|
|
context->length = avpicture_get_size(avctx->pix_fmt, FFALIGN(avctx->width, 16), avctx->height);
|
2010-09-23 20:23:15 +00:00
|
|
|
context->buffer = av_malloc(context->length);
|
|
|
|
if (!context->buffer)
|
2012-06-14 11:10:14 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2011-07-01 00:34:33 +00:00
|
|
|
} else {
|
|
|
|
context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
|
2010-09-23 20:23:15 +00:00
|
|
|
}
|
2011-04-27 23:40:44 +00:00
|
|
|
context->pic.pict_type = AV_PICTURE_TYPE_I;
|
2007-07-09 16:26:11 +00:00
|
|
|
context->pic.key_frame = 1;
|
|
|
|
|
|
|
|
avctx->coded_frame= &context->pic;
|
|
|
|
|
2009-06-12 17:39:56 +00:00
|
|
|
if((avctx->extradata_size >= 9 && !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||
|
2012-01-05 23:59:08 +00:00
|
|
|
avctx->codec_tag == MKTAG('c','y','u','v') ||
|
2011-05-24 21:38:01 +00:00
|
|
|
avctx->codec_tag == MKTAG(3, 0, 0, 0) || avctx->codec_tag == MKTAG('W','R','A','W'))
|
2009-02-21 15:32:56 +00:00
|
|
|
context->flip=1;
|
|
|
|
|
2012-08-18 02:03:03 +00:00
|
|
|
if(avctx->extradata_size >= 9 && avctx->extradata[4]+28 < avctx->extradata_size && !context->buffer && avctx->pix_fmt == PIX_FMT_UYVY422) {
|
|
|
|
int ndx = avctx->extradata[4] + 4;
|
|
|
|
context->interlace = !memcmp(avctx->extradata + ndx, "1:1(", 4);
|
|
|
|
if(context->interlace) {
|
|
|
|
context->buffer = av_malloc(context->length);
|
|
|
|
if (!context->buffer)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
context->tff = avctx->extradata[ndx + 24] == 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-09 16:26:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void flip(AVCodecContext *avctx, AVPicture * picture){
|
2009-02-21 17:17:09 +00:00
|
|
|
picture->data[0] += picture->linesize[0] * (avctx->height-1);
|
|
|
|
picture->linesize[0] *= -1;
|
2007-07-09 16:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int raw_decode(AVCodecContext *avctx,
|
|
|
|
void *data, int *data_size,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt)
|
2007-07-09 16:26:11 +00:00
|
|
|
{
|
2009-04-07 15:59:50 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2012-01-12 16:02:13 +00:00
|
|
|
int linesize_align = 4;
|
2007-07-09 16:26:11 +00:00
|
|
|
RawVideoContext *context = avctx->priv_data;
|
2012-06-14 11:10:14 +00:00
|
|
|
int res, len;
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2012-02-27 07:51:20 +00:00
|
|
|
AVFrame *frame = data;
|
|
|
|
AVPicture *picture = data;
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2011-05-14 17:47:55 +00:00
|
|
|
frame->pict_type = avctx->coded_frame->pict_type;
|
2007-07-09 16:26:11 +00:00
|
|
|
frame->interlaced_frame = avctx->coded_frame->interlaced_frame;
|
|
|
|
frame->top_field_first = avctx->coded_frame->top_field_first;
|
2010-09-29 15:43:37 +00:00
|
|
|
frame->reordered_opaque = avctx->reordered_opaque;
|
2011-01-27 20:26:38 +00:00
|
|
|
frame->pkt_pts = avctx->pkt->pts;
|
2011-04-29 10:28:44 +00:00
|
|
|
frame->pkt_pos = avctx->pkt->pos;
|
2012-06-16 09:01:33 +00:00
|
|
|
frame->pkt_duration = avctx->pkt->duration;
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2011-05-16 19:52:35 +00:00
|
|
|
if(context->tff>=0){
|
|
|
|
frame->interlaced_frame = 1;
|
|
|
|
frame->top_field_first = context->tff;
|
|
|
|
}
|
|
|
|
|
2012-03-23 09:48:18 +00:00
|
|
|
if (avctx->width <= 0 || avctx->height <= 0) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "w/h is invalid\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2010-01-05 01:14:38 +00:00
|
|
|
//2bpp and 4bpp raw in avi and mov (yes this is ugly ...)
|
2010-09-23 20:23:15 +00:00
|
|
|
if (context->buffer) {
|
2007-07-29 13:32:53 +00:00
|
|
|
int i;
|
2010-09-23 20:23:15 +00:00
|
|
|
uint8_t *dst = context->buffer;
|
2012-08-18 02:03:03 +00:00
|
|
|
if(avctx->pix_fmt == PIX_FMT_PAL8){
|
|
|
|
buf_size = context->length - AVPALETTE_SIZE;
|
|
|
|
if (avctx->bits_per_coded_sample == 4){
|
|
|
|
for(i=0; 2*i+1 < buf_size && i<avpkt->size; i++){
|
|
|
|
dst[2*i+0]= buf[i]>>4;
|
|
|
|
dst[2*i+1]= buf[i]&15;
|
|
|
|
}
|
|
|
|
linesize_align = 8;
|
|
|
|
} else {
|
|
|
|
av_assert0(avctx->bits_per_coded_sample == 2);
|
|
|
|
for(i=0; 4*i+3 < buf_size && i<avpkt->size; i++){
|
|
|
|
dst[4*i+0]= buf[i]>>6;
|
|
|
|
dst[4*i+1]= buf[i]>>4&3;
|
|
|
|
dst[4*i+2]= buf[i]>>2&3;
|
|
|
|
dst[4*i+3]= buf[i] &3;
|
|
|
|
}
|
|
|
|
linesize_align = 16;
|
2010-01-05 01:14:38 +00:00
|
|
|
}
|
2012-08-18 02:03:03 +00:00
|
|
|
} else if(context->interlace && avctx->pix_fmt == PIX_FMT_UYVY422) {
|
|
|
|
int x, y;
|
|
|
|
int true_height = buf_size / (2*avctx->width);
|
|
|
|
int tff = !!context->tff;
|
|
|
|
av_assert0(avctx->height * avctx->width * 2 == context->length);
|
|
|
|
if (buf_size < context->length) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid buffer size, packet size %d < context length %d\n", buf_size, context->length);
|
|
|
|
return AVERROR(EINVAL);
|
2010-01-05 01:11:45 +00:00
|
|
|
}
|
2012-08-18 02:03:03 +00:00
|
|
|
buf += (true_height - avctx->height)*avctx->width;
|
|
|
|
for(y = 0; y < avctx->height-1; y+=2) {
|
|
|
|
memcpy(dst + (y+ tff)*2*avctx->width, buf , 2*avctx->width);
|
|
|
|
memcpy(dst + (y+!tff)*2*avctx->width, buf + avctx->width*true_height+4, 2*avctx->width);
|
|
|
|
buf += 2*avctx->width;
|
|
|
|
}
|
|
|
|
}else
|
|
|
|
av_assert0(0);
|
2010-01-05 00:41:29 +00:00
|
|
|
buf= dst;
|
2007-07-29 13:32:53 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 22:57:56 +00:00
|
|
|
if(avctx->codec_tag == MKTAG('A', 'V', '1', 'x') ||
|
|
|
|
avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
|
2010-01-16 10:46:45 +00:00
|
|
|
buf += buf_size - context->length;
|
|
|
|
|
2012-06-25 15:59:01 +00:00
|
|
|
len = context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? AVPALETTE_SIZE : 0);
|
2012-06-14 11:10:14 +00:00
|
|
|
if (buf_size < len) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid buffer size, packet size %d < expected length %d\n", buf_size, len);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2012-03-27 00:11:03 +00:00
|
|
|
|
2012-03-27 01:02:08 +00:00
|
|
|
if ((res = avpicture_fill(picture, buf, avctx->pix_fmt,
|
|
|
|
avctx->width, avctx->height)) < 0)
|
|
|
|
return res;
|
2010-09-25 08:44:35 +00:00
|
|
|
if((avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length) ||
|
2012-02-01 14:32:21 +00:00
|
|
|
(av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PSEUDOPAL)) {
|
2010-09-23 20:23:15 +00:00
|
|
|
frame->data[1]= context->palette;
|
2007-07-09 16:26:11 +00:00
|
|
|
}
|
2011-04-09 13:49:51 +00:00
|
|
|
if (avctx->pix_fmt == PIX_FMT_PAL8) {
|
|
|
|
const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
|
|
|
|
|
|
|
|
if (pal) {
|
|
|
|
memcpy(frame->data[1], pal, AVPALETTE_SIZE);
|
|
|
|
frame->palette_has_changed = 1;
|
|
|
|
}
|
2007-07-09 16:26:11 +00:00
|
|
|
}
|
2011-06-30 07:02:14 +00:00
|
|
|
if((avctx->pix_fmt==PIX_FMT_BGR24 ||
|
|
|
|
avctx->pix_fmt==PIX_FMT_GRAY8 ||
|
|
|
|
avctx->pix_fmt==PIX_FMT_RGB555LE ||
|
|
|
|
avctx->pix_fmt==PIX_FMT_RGB555BE ||
|
|
|
|
avctx->pix_fmt==PIX_FMT_RGB565LE ||
|
2012-01-12 16:02:13 +00:00
|
|
|
avctx->pix_fmt==PIX_FMT_MONOWHITE ||
|
2011-06-30 07:02:14 +00:00
|
|
|
avctx->pix_fmt==PIX_FMT_PAL8) &&
|
2012-01-12 16:02:13 +00:00
|
|
|
FFALIGN(frame->linesize[0], linesize_align)*avctx->height <= buf_size)
|
|
|
|
frame->linesize[0] = FFALIGN(frame->linesize[0], linesize_align);
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2009-02-21 15:32:56 +00:00
|
|
|
if(context->flip)
|
2009-02-21 17:17:09 +00:00
|
|
|
flip(avctx, picture);
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2009-05-26 03:51:00 +00:00
|
|
|
if ( avctx->codec_tag == MKTAG('Y', 'V', '1', '2')
|
2011-06-27 07:40:53 +00:00
|
|
|
|| avctx->codec_tag == MKTAG('Y', 'V', '1', '6')
|
2011-07-06 08:05:08 +00:00
|
|
|
|| avctx->codec_tag == MKTAG('Y', 'V', '2', '4')
|
2009-05-26 03:51:00 +00:00
|
|
|
|| avctx->codec_tag == MKTAG('Y', 'V', 'U', '9'))
|
2009-10-13 08:23:00 +00:00
|
|
|
FFSWAP(uint8_t *, picture->data[1], picture->data[2]);
|
2007-07-09 16:26:11 +00:00
|
|
|
|
2009-04-02 12:15:04 +00:00
|
|
|
if(avctx->codec_tag == AV_RL32("yuv2") &&
|
|
|
|
avctx->pix_fmt == PIX_FMT_YUYV422) {
|
|
|
|
int x, y;
|
|
|
|
uint8_t *line = picture->data[0];
|
|
|
|
for(y = 0; y < avctx->height; y++) {
|
|
|
|
for(x = 0; x < avctx->width; x++)
|
|
|
|
line[2*x + 1] ^= 0x80;
|
|
|
|
line += picture->linesize[0];
|
|
|
|
}
|
|
|
|
}
|
2012-05-26 23:13:37 +00:00
|
|
|
if(avctx->codec_tag == AV_RL32("YVYU") &&
|
|
|
|
avctx->pix_fmt == PIX_FMT_YUYV422) {
|
|
|
|
int x, y;
|
|
|
|
uint8_t *line = picture->data[0];
|
|
|
|
for(y = 0; y < avctx->height; y++) {
|
|
|
|
for(x = 0; x < avctx->width - 1; x += 2)
|
|
|
|
FFSWAP(uint8_t, line[2*x + 1], line[2*x + 3]);
|
|
|
|
line += picture->linesize[0];
|
|
|
|
}
|
|
|
|
}
|
2009-04-02 12:15:04 +00:00
|
|
|
|
2007-07-09 16:26:11 +00:00
|
|
|
*data_size = sizeof(AVPicture);
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int raw_close_decoder(AVCodecContext *avctx)
|
2007-07-09 16:26:11 +00:00
|
|
|
{
|
|
|
|
RawVideoContext *context = avctx->priv_data;
|
|
|
|
|
|
|
|
av_freep(&context->buffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_rawvideo_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "rawvideo",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_RAWVIDEO,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(RawVideoContext),
|
|
|
|
.init = raw_init_decoder,
|
|
|
|
.close = raw_close_decoder,
|
|
|
|
.decode = raw_decode,
|
2012-04-06 16:19:39 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw video"),
|
2012-04-07 20:41:37 +00:00
|
|
|
.priv_class = &class,
|
2007-07-09 16:26:11 +00:00
|
|
|
};
|