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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Miro VideoXL codec
  3.  * Copyright (c) 2004 Konstantin Shishkov
  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. /**
  22.  * @file xl.c
  23.  * Miro VideoXL codec.
  24.  */
  25.  
  26. #include "avcodec.h"
  27. #include "mpegvideo.h"
  28. typedef struct VideoXLContext{
  29.     AVCodecContext *avctx;
  30.     AVFrame pic;
  31. } VideoXLContext;
  32. const int xl_table[32] = {
  33.    0,   1,   2,   3,   4,   5,   6,   7,
  34.    8,   9,  12,  15,  20,  25,  34,  46,
  35.   64,  82,  94, 103, 108, 113, 116, 119,
  36.  120, 121, 122, 123, 124, 125, 126, 127};
  37. static int decode_frame(AVCodecContext *avctx, 
  38.                         void *data, int *data_size,
  39.                         uint8_t *buf, int buf_size)
  40. {
  41.     VideoXLContext * const a = avctx->priv_data;
  42.     AVFrame * const p= (AVFrame*)&a->pic;
  43.     uint8_t *Y, *U, *V;
  44.     int i, j;
  45.     int stride;
  46.     uint32_t val;
  47.     int y0, y1, y2, y3, c0, c1;
  48.     if(p->data[0])
  49.         avctx->release_buffer(avctx, p);
  50.     p->reference = 0;
  51.     if(avctx->get_buffer(avctx, p) < 0){
  52.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  53.         return -1;
  54.     }
  55.     p->pict_type= I_TYPE;
  56.     p->key_frame= 1;
  57.     Y = a->pic.data[0];
  58.     U = a->pic.data[1];
  59.     V = a->pic.data[2];
  60.     
  61.     stride = avctx->width - 4;
  62.     for (i = 0; i < avctx->height; i++) {
  63.         /* lines are stored in reversed order */
  64.         buf += stride;
  65.         
  66.         for (j = 0; j < avctx->width; j += 4) {
  67.             /* value is stored in LE dword with word swapped */
  68.             val = LE_32(buf);
  69.             buf -= 4;
  70.             val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
  71.     
  72.             if(!j)
  73.                 y0 = (val & 0x1F) << 2;
  74.             else
  75.                 y0 = y3 + xl_table[val & 0x1F];
  76.             val >>= 5;
  77.             y1 = y0 + xl_table[val & 0x1F];
  78.             val >>= 5;
  79.             y2 = y1 + xl_table[val & 0x1F];
  80.             val >>= 6; /* align to word */
  81.             y3 = y2 + xl_table[val & 0x1F];
  82.             val >>= 5;
  83.             if(!j)
  84.                 c0 = (val & 0x1F) << 2;
  85.             else
  86.                 c0 += xl_table[val & 0x1F];
  87.             val >>= 5;
  88.             if(!j)
  89.                 c1 = (val & 0x1F) << 2;
  90.             else
  91.                 c1 += xl_table[val & 0x1F];
  92.             
  93.             Y[j + 0] = y0 << 1;
  94.             Y[j + 1] = y1 << 1;
  95.             Y[j + 2] = y2 << 1;
  96.             Y[j + 3] = y3 << 1;
  97.             
  98.             U[j >> 2] = c0 << 1;
  99.             V[j >> 2] = c1 << 1;
  100.         }
  101.         
  102.         buf += avctx->width + 4;
  103.         Y += a->pic.linesize[0];
  104.         U += a->pic.linesize[1];
  105.         V += a->pic.linesize[2];
  106.     }
  107.     *data_size = sizeof(AVFrame);
  108.     *(AVFrame*)data = a->pic;
  109.     
  110.     return buf_size;
  111. }
  112. static int decode_init(AVCodecContext *avctx){
  113. //    VideoXLContext * const a = avctx->priv_data;
  114.     avctx->pix_fmt= PIX_FMT_YUV411P;
  115.     return 0;
  116. }
  117. AVCodec xl_decoder = {
  118.     "xl",
  119.     CODEC_TYPE_VIDEO,
  120.     CODEC_ID_VIXL,
  121.     sizeof(VideoXLContext),
  122.     decode_init,
  123.     NULL,
  124.     NULL,
  125.     decode_frame,
  126.     CODEC_CAP_DR1,
  127. };