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

Windows CE

开发平台:

C/C++

  1. /*
  2.  *
  3.  * Copyright (C) 2003 the ffmpeg project
  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.  * Creative YUV (CYUV) Video Decoder
  20.  *   by Mike Melanson (melanson@pcisys.net)
  21.  * based on "Creative YUV (CYUV) stream format for AVI":
  22.  *   http://www.csse.monash.edu.au/~timf/videocodec/cyuv.txt
  23.  *
  24.  */
  25. /**
  26.  * @file cyuv.c 
  27.  * Creative YUV (CYUV) Video Decoder.
  28.  */
  29.  
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <string.h>
  33. #include <unistd.h>
  34. #include "common.h"
  35. #include "avcodec.h"
  36. #include "dsputil.h"
  37. #include "mpegvideo.h"
  38. typedef struct CyuvDecodeContext {
  39.     AVCodecContext *avctx;
  40.     int width, height;
  41.     AVFrame frame;
  42. } CyuvDecodeContext;
  43. static int cyuv_decode_init(AVCodecContext *avctx)
  44. {
  45.     CyuvDecodeContext *s = avctx->priv_data;
  46.     s->avctx = avctx;
  47.     s->width = avctx->width;
  48.     /* width needs to be divisible by 4 for this codec to work */
  49.     if (s->width & 0x3)
  50.         return -1;
  51.     s->height = avctx->height;
  52.     avctx->pix_fmt = PIX_FMT_YUV411P;
  53.     avctx->has_b_frames = 0;
  54.     return 0;
  55. }
  56. static int cyuv_decode_frame(AVCodecContext *avctx, 
  57.                              void *data, int *data_size,
  58.                              uint8_t *buf, int buf_size)
  59. {
  60.     CyuvDecodeContext *s=avctx->priv_data;
  61.     unsigned char *y_plane;
  62.     unsigned char *u_plane;
  63.     unsigned char *v_plane;
  64.     int y_ptr;
  65.     int u_ptr;
  66.     int v_ptr;
  67.     /* prediction error tables (make it clear that they are signed values) */
  68.     signed char *y_table = buf +  0;
  69.     signed char *u_table = buf + 16;
  70.     signed char *v_table = buf + 32;
  71.     unsigned char y_pred, u_pred, v_pred;
  72.     int stream_ptr;
  73.     unsigned char cur_byte;
  74.     int pixel_groups;
  75.     /* sanity check the buffer size: A buffer has 3x16-bytes tables
  76.      * followed by (height) lines each with 3 bytes to represent groups
  77.      * of 4 pixels. Thus, the total size of the buffer ought to be:
  78.      *    (3 * 16) + height * (width * 3 / 4) */
  79.     if (buf_size != 48 + s->height * (s->width * 3 / 4)) {
  80.       av_log(avctx, AV_LOG_ERROR, "ffmpeg: cyuv: got a buffer with %d bytes when %d were expectedn",
  81.         buf_size,
  82.         48 + s->height * (s->width * 3 / 4));
  83.       return -1;
  84.     }
  85.     /* pixel data starts 48 bytes in, after 3x16-byte tables */
  86.     stream_ptr = 48;
  87.     if(s->frame.data[0])
  88.         avctx->release_buffer(avctx, &s->frame);
  89.     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
  90.     s->frame.reference = 0;
  91.     if(avctx->get_buffer(avctx, &s->frame) < 0) {
  92.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  93.         return -1;
  94.     }
  95.     y_plane = s->frame.data[0];
  96.     u_plane = s->frame.data[1];
  97.     v_plane = s->frame.data[2];
  98.     /* iterate through each line in the height */
  99.     for (y_ptr = 0, u_ptr = 0, v_ptr = 0;
  100.          y_ptr < (s->height * s->frame.linesize[0]); 
  101.          y_ptr += s->frame.linesize[0] - s->width,
  102.          u_ptr += s->frame.linesize[1] - s->width / 4,
  103.          v_ptr += s->frame.linesize[2] - s->width / 4) {
  104.         /* reset predictors */
  105.         cur_byte = buf[stream_ptr++];
  106.         u_plane[u_ptr++] = u_pred = cur_byte & 0xF0;
  107.         y_plane[y_ptr++] = y_pred = (cur_byte & 0x0F) << 4;
  108.         cur_byte = buf[stream_ptr++];
  109.         v_plane[v_ptr++] = v_pred = cur_byte & 0xF0;
  110.         y_pred += y_table[cur_byte & 0x0F];
  111.         y_plane[y_ptr++] = y_pred;
  112.         cur_byte = buf[stream_ptr++];
  113.         y_pred += y_table[cur_byte & 0x0F];
  114.         y_plane[y_ptr++] = y_pred;
  115.         y_pred += y_table[(cur_byte & 0xF0) >> 4];
  116.         y_plane[y_ptr++] = y_pred;
  117.         /* iterate through the remaining pixel groups (4 pixels/group) */
  118.         pixel_groups = s->width / 4 - 1;
  119.         while (pixel_groups--) {
  120.             cur_byte = buf[stream_ptr++];
  121.             u_pred += u_table[(cur_byte & 0xF0) >> 4];
  122.             u_plane[u_ptr++] = u_pred;
  123.             y_pred += y_table[cur_byte & 0x0F];
  124.             y_plane[y_ptr++] = y_pred;
  125.             cur_byte = buf[stream_ptr++];
  126.             v_pred += v_table[(cur_byte & 0xF0) >> 4];
  127.             v_plane[v_ptr++] = v_pred;
  128.             y_pred += y_table[cur_byte & 0x0F];
  129.             y_plane[y_ptr++] = y_pred;
  130.             cur_byte = buf[stream_ptr++];
  131.             y_pred += y_table[cur_byte & 0x0F];
  132.             y_plane[y_ptr++] = y_pred;
  133.             y_pred += y_table[(cur_byte & 0xF0) >> 4];
  134.             y_plane[y_ptr++] = y_pred;
  135.         }
  136.     }
  137.     *data_size=sizeof(AVFrame);
  138.     *(AVFrame*)data= s->frame;
  139.     return buf_size;
  140. }
  141. static int cyuv_decode_end(AVCodecContext *avctx)
  142. {
  143. /*    CyuvDecodeContext *s = avctx->priv_data;*/
  144.     return 0;
  145. }
  146. AVCodec cyuv_decoder = {
  147.     "cyuv",
  148.     CODEC_TYPE_VIDEO,
  149.     CODEC_ID_CYUV,
  150.     sizeof(CyuvDecodeContext),
  151.     cyuv_decode_init,
  152.     NULL,
  153.     cyuv_decode_end,
  154.     cyuv_decode_frame,
  155.     CODEC_CAP_DR1,
  156.     NULL
  157. };