| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2009-04-02 12:15:04 +00:00
										 |  |  | #include "libavutil/intreadwrite.h"
 | 
					
						
							| 
									
										
										
										
											2011-02-07 14:37:08 +01:00
										 |  |  | #include "libavutil/imgutils.h"
 | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02:00
										 |  |  | #include "libavutil/opt.h"
 | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct RawVideoContext { | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02: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; | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  |     AVFrame pic;             ///< AVCodecContext.coded_frame
 | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02:00
										 |  |  |     int tff; | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  | } RawVideoContext; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02:00
										 |  |  | static const AVOption options[]={ | 
					
						
							| 
									
										
										
										
											2011-10-17 07:33:10 +02: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 21:52:35 +02:00
										 |  |  | {NULL} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static const AVClass class = { "rawdec", NULL, options, LIBAVUTIL_VERSION_INT }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-21 23:19:50 +00:00
										 |  |  | static const PixelFormatTag pix_fmt_bps_avi[] = { | 
					
						
							| 
									
										
										
										
											2011-05-16 11:26:45 +02:00
										 |  |  |     { PIX_FMT_MONOWHITE, 1 }, | 
					
						
							| 
									
										
										
										
											2011-05-16 11:25:57 +02: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 23:49:17 +02: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 18:10:33 +02: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 15:11:50 +01: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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (avctx->codec_tag == MKTAG('r','a','w',' ')) | 
					
						
							| 
									
										
										
										
											2011-03-09 15:11:50 +01:00
										 |  |  |         avctx->pix_fmt = ff_find_pix_fmt(pix_fmt_bps_mov, avctx->bits_per_coded_sample); | 
					
						
							| 
									
										
										
										
											2011-05-24 23:38:01 +02: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 15:11:50 +01: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 15:11:50 +01: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-30 01:42:45 +02: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',' '))){ | 
					
						
							| 
									
										
										
										
											2011-07-01 02:34:33 +02:00
										 |  |  |         context->length = avpicture_get_size(avctx->pix_fmt, (avctx->width+3)&~3, avctx->height); | 
					
						
							| 
									
										
										
										
											2010-09-23 20:23:15 +00:00
										 |  |  |         context->buffer = av_malloc(context->length); | 
					
						
							|  |  |  |         if (!context->buffer) | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2011-07-01 02:34:33 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height); | 
					
						
							| 
									
										
										
										
											2010-09-23 20:23:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-28 01:40:44 +02: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-06 00:59:08 +01:00
										 |  |  |         avctx->codec_tag == MKTAG('c','y','u','v') || | 
					
						
							| 
									
										
										
										
											2011-05-24 23:38:01 +02: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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  |     RawVideoContext *context = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     AVFrame * frame = (AVFrame *) data; | 
					
						
							|  |  |  |     AVPicture * picture = (AVPicture *) data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-14 19:47:55 +02: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 21:26:38 +01:00
										 |  |  |     frame->pkt_pts          = avctx->pkt->pts; | 
					
						
							| 
									
										
										
										
											2011-04-29 12:28:44 +02:00
										 |  |  |     frame->pkt_pos          = avctx->pkt->pos; | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02:00
										 |  |  |     if(context->tff>=0){ | 
					
						
							|  |  |  |         frame->interlaced_frame = 1; | 
					
						
							|  |  |  |         frame->top_field_first  = context->tff; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2010-01-05 00:41:29 +00:00
										 |  |  |         buf_size = context->length - 256*4; | 
					
						
							| 
									
										
										
										
											2010-01-05 01:11:45 +00:00
										 |  |  |         if (avctx->bits_per_coded_sample == 4){ | 
					
						
							| 
									
										
										
										
											2010-01-05 01:14:38 +00:00
										 |  |  |             for(i=0; 2*i+1 < buf_size; i++){ | 
					
						
							|  |  |  |                 dst[2*i+0]= buf[i]>>4; | 
					
						
							|  |  |  |                 dst[2*i+1]= buf[i]&15; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-01-05 01:11:45 +00:00
										 |  |  |         } else | 
					
						
							|  |  |  |             for(i=0; 4*i+3 < buf_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; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  |     if(buf_size < context->length - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0)) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height); | 
					
						
							| 
									
										
										
										
											2010-09-25 08:44:35 +00:00
										 |  |  |     if((avctx->pix_fmt==PIX_FMT_PAL8 && buf_size < context->length) || | 
					
						
							|  |  |  |        (avctx->pix_fmt!=PIX_FMT_PAL8 && | 
					
						
							|  |  |  |         (av_pix_fmt_descriptors[avctx->pix_fmt].flags & PIX_FMT_PAL))){ | 
					
						
							| 
									
										
										
										
											2010-09-23 20:23:15 +00:00
										 |  |  |         frame->data[1]= context->palette; | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02: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 09:02:14 +02: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 || | 
					
						
							|  |  |  |         avctx->pix_fmt==PIX_FMT_PAL8) && | 
					
						
							|  |  |  |         ((frame->linesize[0]+3)&~3)*avctx->height <= buf_size) | 
					
						
							| 
									
										
										
										
											2010-04-30 22:09:42 +00:00
										 |  |  |         frame->linesize[0] = (frame->linesize[0]+3)&~3; | 
					
						
							| 
									
										
										
										
											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 09:40:53 +02:00
										 |  |  |         || avctx->codec_tag == MKTAG('Y', 'V', '1', '6') | 
					
						
							| 
									
										
										
										
											2011-07-06 10:05:08 +02: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]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 12:54:31 +02:00
										 |  |  |     .name           = "rawvideo", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_RAWVIDEO, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(RawVideoContext), | 
					
						
							|  |  |  |     .init           = raw_init_decoder, | 
					
						
							|  |  |  |     .close          = raw_close_decoder, | 
					
						
							|  |  |  |     .decode         = raw_decode, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("raw video"), | 
					
						
							| 
									
										
										
										
											2011-05-16 21:52:35 +02:00
										 |  |  |     .priv_class= &class, | 
					
						
							| 
									
										
										
										
											2007-07-09 16:26:11 +00:00
										 |  |  | }; |