raw.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Raw Video Codec
  3.  * Copyright (c) 2001 Fabrice Bellard.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19.  
  20. /**
  21.  * @file raw.c
  22.  * Raw Video Codec
  23.  */
  24.  
  25. #include "avcodec.h"
  26. typedef struct RawVideoContext {
  27.     unsigned char * buffer;  /* block of memory for holding one frame */
  28.     unsigned char * p;       /* current position in buffer */
  29.     int             length;  /* number of bytes in buffer */
  30.     AVFrame pic;             ///< AVCodecContext.coded_frame
  31. } RawVideoContext;
  32. typedef struct PixleFormatTag {
  33.     int pix_fmt;
  34.     unsigned int fourcc;
  35. } PixelFormatTag;
  36. const PixelFormatTag pixelFormatTags[] = {
  37.     { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
  38.     { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
  39.     { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
  40.     { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },
  41.     { PIX_FMT_YUV422P, MKTAG('Y', '4', '2', 'B') },
  42.     { PIX_FMT_GRAY8,   MKTAG('Y', '8', '0', '0') },
  43.     { PIX_FMT_GRAY8,   MKTAG(' ', ' ', 'Y', '8') },
  44.     { PIX_FMT_YUV422,  MKTAG('Y', 'U', 'Y', '2') }, /* Packed formats */
  45.     { PIX_FMT_YUV422,  MKTAG('Y', '4', '2', '2') },
  46.     { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') },
  47.     { PIX_FMT_GRAY8,   MKTAG('G', 'R', 'E', 'Y') },
  48.     { -1, 0 },
  49. };
  50. static int findPixelFormat(unsigned int fourcc)
  51. {
  52.     const PixelFormatTag * tags = pixelFormatTags;
  53.     while (tags->pix_fmt >= 0) {
  54.         if (tags->fourcc == fourcc)
  55.             return tags->pix_fmt;
  56.         tags++;
  57.     }
  58.     return PIX_FMT_YUV420P;
  59. }
  60. unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt)
  61. {
  62.     const PixelFormatTag * tags = pixelFormatTags;
  63.     while (tags->pix_fmt >= 0) {
  64.         if (tags->pix_fmt == fmt)
  65.     return tags->fourcc;
  66. tags++; 
  67.     }
  68.     return 0;
  69. }
  70. /* RAW Decoder Implementation */
  71. static int raw_init_decoder(AVCodecContext *avctx)
  72. {
  73.     RawVideoContext *context = avctx->priv_data;
  74.     if (avctx->codec_tag)
  75.         avctx->pix_fmt = findPixelFormat(avctx->codec_tag);
  76.     else if (avctx->bits_per_sample){
  77.         switch(avctx->bits_per_sample){
  78.         case 15: avctx->pix_fmt= PIX_FMT_RGB555; break;
  79.         case 16: avctx->pix_fmt= PIX_FMT_RGB565; break;
  80.         case 24: avctx->pix_fmt= PIX_FMT_BGR24 ; break;
  81.         case 32: avctx->pix_fmt= PIX_FMT_RGBA32; break;
  82.         }
  83.     }
  84.     
  85.     context->length = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
  86.     context->buffer = av_malloc(context->length);
  87.     context->p      = context->buffer;
  88.     context->pic.pict_type = FF_I_TYPE;
  89.     context->pic.key_frame = 1;
  90.     
  91.     avctx->coded_frame= &context->pic;
  92.     
  93.     if (!context->buffer)
  94.         return -1;
  95.    
  96.     return 0;
  97. }
  98. static void flip(AVCodecContext *avctx, AVPicture * picture){
  99.     if(!avctx->codec_tag && avctx->bits_per_sample && picture->linesize[1]==0){
  100.         picture->data[0] += picture->linesize[0] * (avctx->height-1);
  101.         picture->linesize[0] *= -1;
  102.     }
  103. }
  104. static int raw_decode(AVCodecContext *avctx,
  105.     void *data, int *data_size,
  106.     uint8_t *buf, int buf_size)
  107. {
  108.     RawVideoContext *context = avctx->priv_data;
  109.     int bytesNeeded;
  110.     AVPicture * picture = (AVPicture *) data;
  111.     /* Early out without copy if packet size == frame size */
  112.     if (buf_size == context->length  &&  context->p == context->buffer) {
  113.         avpicture_fill(picture, buf, avctx->pix_fmt, avctx->width, avctx->height);
  114.         flip(avctx, picture);        
  115.         *data_size = sizeof(AVPicture);
  116.         return buf_size;
  117.     }
  118.     bytesNeeded = context->length - (context->p - context->buffer);
  119.     if (buf_size < bytesNeeded) {
  120.         memcpy(context->p, buf, buf_size);
  121.         context->p += buf_size;
  122.         return buf_size;
  123.     }
  124.     memcpy(context->p, buf, bytesNeeded);
  125.     context->p = context->buffer;
  126.     avpicture_fill(picture, context->buffer, avctx->pix_fmt, avctx->width, avctx->height);
  127.     flip(avctx, picture);        
  128.     *data_size = sizeof(AVPicture);
  129.     return bytesNeeded;
  130. }
  131. static int raw_close_decoder(AVCodecContext *avctx)
  132. {
  133.     RawVideoContext *context = avctx->priv_data;
  134.     
  135.     av_freep(&context->buffer);
  136.     return 0;
  137. }
  138. /* RAW Encoder Implementation */
  139. static int raw_init_encoder(AVCodecContext *avctx)
  140. {
  141.     avctx->coded_frame = (AVFrame *)avctx->priv_data;
  142.     avctx->coded_frame->pict_type = FF_I_TYPE;
  143.     avctx->coded_frame->key_frame = 1;
  144.     if(!avctx->codec_tag)
  145.         avctx->codec_tag = avcodec_pix_fmt_to_codec_tag(avctx->pix_fmt);
  146.     return 0;
  147. }
  148. static int raw_encode(AVCodecContext *avctx,
  149.     unsigned char *frame, int buf_size, void *data)
  150. {
  151.     return avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
  152.                                                avctx->height, frame, buf_size);
  153. }
  154. #ifdef CONFIG_RAWVIDEO_ENCODER
  155. AVCodec rawvideo_encoder = {
  156.     "rawvideo",
  157.     CODEC_TYPE_VIDEO,
  158.     CODEC_ID_RAWVIDEO,
  159.     sizeof(AVFrame),
  160.     raw_init_encoder,
  161.     raw_encode,
  162. };
  163. #endif // CONFIG_RAWVIDEO_ENCODER
  164. AVCodec rawvideo_decoder = {
  165.     "rawvideo",
  166.     CODEC_TYPE_VIDEO,
  167.     CODEC_ID_RAWVIDEO,
  168.     sizeof(RawVideoContext),
  169.     raw_init_decoder,
  170.     NULL,
  171.     raw_close_decoder,
  172.     raw_decode,
  173. };