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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * LOCO codec
  3.  * Copyright (c) 2005 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 loco.c
  23.  * LOCO codec.
  24.  */
  25.  
  26. #include "avcodec.h"
  27. #include "common.h"
  28. #include "bitstream.h"
  29. #include "golomb.h"
  30. enum LOCO_MODE {LOCO_UNKN=0, LOCO_CYUY2=-1, LOCO_CRGB=-2, LOCO_CRGBA=-3, LOCO_CYV12=-4,
  31.  LOCO_YUY2=1, LOCO_UYVY=2, LOCO_RGB=3, LOCO_RGBA=4, LOCO_YV12=5};
  32. typedef struct LOCOContext{
  33.     AVCodecContext *avctx;
  34.     AVFrame pic;
  35.     int lossy;
  36.     int mode;
  37. } LOCOContext;
  38. typedef struct RICEContext{
  39.     GetBitContext gb;
  40.     int save, run, run2; /* internal rice decoder state */
  41.     int sum, count; /* sum and count for getting rice parameter */
  42.     int lossy;
  43. }RICEContext;
  44. static int loco_get_rice_param(RICEContext *r)
  45. {
  46.     int cnt = 0;
  47.     int val = r->count;
  48.     
  49.     while(r->sum > val && cnt < 9) {
  50.         val <<= 1;
  51.         cnt++;
  52.     }
  53.     
  54.     return cnt;
  55. }
  56. static inline void loco_update_rice_param(RICEContext *r, int val)
  57. {
  58.     r->sum += val;
  59.     r->count++;
  60.     
  61.     if(r->count == 16) {
  62.         r->sum >>= 1;
  63.         r->count >>= 1;
  64.     }
  65. }
  66. static inline int loco_get_rice(RICEContext *r)
  67. {
  68.     int v;
  69.     if (r->run > 0) { /* we have zero run */
  70.         r->run--;
  71.         loco_update_rice_param(r, 0);
  72.         return 0;
  73.     }
  74.     v = get_ur_golomb_jpegls(&r->gb, loco_get_rice_param(r), INT_MAX, 0);
  75.     loco_update_rice_param(r, (v+1)>>1);
  76.     if (!v) {
  77.         if (r->save >= 0) {
  78.             r->run = get_ur_golomb_jpegls(&r->gb, 2, INT_MAX, 0);
  79.             if(r->run > 1)
  80.                 r->save += r->run + 1;
  81.             else
  82.                 r->save -= 3;
  83.         }
  84.         else
  85.             r->run2++;
  86.     } else {
  87.         v = ((v>>1) + r->lossy) ^ -(v&1);
  88.         if (r->run2 > 0) {
  89.             if (r->run2 > 2)
  90.                 r->save += r->run2;
  91.             else
  92.                 r->save -= 3;
  93.             r->run2 = 0;
  94.         }
  95.     }
  96.     
  97.     return v;
  98. }
  99. /* LOCO main predictor - LOCO-I/JPEG-LS predictor */
  100. static inline int loco_predict(uint8_t* data, int stride, int step)
  101. {
  102.     int a, b, c;
  103.     
  104.     a = data[-stride];
  105.     b = data[-step];
  106.     c = data[-stride - step];
  107.     
  108.     return mid_pred(a, a + b - c, b);
  109. }
  110. static int loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int height,
  111.                              int stride, uint8_t *buf, int buf_size, int step)
  112. {
  113.     RICEContext rc;
  114.     int val;
  115.     int i, j;
  116.     
  117.     init_get_bits(&rc.gb, buf, buf_size*8);
  118.     rc.save = 0;
  119.     rc.run = 0;
  120.     rc.run2 = 0;
  121.     rc.lossy = l->lossy; 
  122.     
  123.     rc.sum = 8;
  124.     rc.count = 1;
  125.     
  126.     /* restore top left pixel */
  127.     val = loco_get_rice(&rc);
  128.     data[0] = 128 + val;
  129.     /* restore top line */
  130.     for (i = 1; i < width; i++) {
  131.         val = loco_get_rice(&rc);
  132.         data[i * step] = data[i * step - step] + val;
  133.     }
  134.     data += stride;
  135.     for (j = 1; j < height; j++) {
  136.         /* restore left column */
  137.         val = loco_get_rice(&rc);
  138.         data[0] = data[-stride] + val;
  139.         /* restore all other pixels */
  140.         for (i = 1; i < width; i++) {
  141.             val = loco_get_rice(&rc);
  142.             data[i * step] = loco_predict(&data[i * step], stride, step) + val;
  143.         }
  144.         data += stride;
  145.     }
  146.     
  147.     return ((get_bits_count(&rc.gb) + 7) >> 3);
  148. }
  149. static int decode_frame(AVCodecContext *avctx, 
  150.                         void *data, int *data_size,
  151.                         uint8_t *buf, int buf_size)
  152. {
  153.     LOCOContext * const l = avctx->priv_data;
  154.     AVFrame * const p= (AVFrame*)&l->pic;
  155.     int decoded;
  156.     if(p->data[0])
  157.         avctx->release_buffer(avctx, p);
  158.     p->reference = 0;
  159.     if(avctx->get_buffer(avctx, p) < 0){
  160.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  161.         return -1;
  162.     }
  163.     p->key_frame = 1;
  164.     switch(l->mode) {
  165.     case LOCO_CYUY2: case LOCO_YUY2: case LOCO_UYVY:
  166.         decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
  167.                                     p->linesize[0], buf, buf_size, 1);
  168.         buf += decoded; buf_size -= decoded;
  169.         decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height,
  170.                                     p->linesize[1], buf, buf_size, 1);
  171.         buf += decoded; buf_size -= decoded;
  172.         decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height,
  173.                                     p->linesize[2], buf, buf_size, 1);
  174.         break;
  175.     case LOCO_CYV12: case LOCO_YV12:
  176.         decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
  177.                                     p->linesize[0], buf, buf_size, 1);
  178.         buf += decoded; buf_size -= decoded;
  179.         decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height / 2,
  180.                                     p->linesize[2], buf, buf_size, 1);
  181.         buf += decoded; buf_size -= decoded;
  182.         decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height / 2,
  183.                                     p->linesize[1], buf, buf_size, 1);
  184.         break;
  185.     case LOCO_CRGB: case LOCO_RGB:
  186.         decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1), avctx->width, avctx->height,
  187.                                     -p->linesize[0], buf, buf_size, 3);
  188.         buf += decoded; buf_size -= decoded;
  189.         decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1) + 1, avctx->width, avctx->height,
  190.                                     -p->linesize[0], buf, buf_size, 3);
  191.         buf += decoded; buf_size -= decoded;
  192.         decoded = loco_decode_plane(l, p->data[0] + p->linesize[0]*(avctx->height-1) + 2, avctx->width, avctx->height,
  193.                                     -p->linesize[0], buf, buf_size, 3);
  194.         break;
  195.     case LOCO_RGBA:
  196.         decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height,
  197.                                     p->linesize[0], buf, buf_size, 4);
  198.         buf += decoded; buf_size -= decoded;
  199.         decoded = loco_decode_plane(l, p->data[0] + 1, avctx->width, avctx->height,
  200.                                     p->linesize[0], buf, buf_size, 4);
  201.         buf += decoded; buf_size -= decoded;
  202.         decoded = loco_decode_plane(l, p->data[0] + 2, avctx->width, avctx->height,
  203.                                     p->linesize[0], buf, buf_size, 4);
  204.         buf += decoded; buf_size -= decoded;
  205.         decoded = loco_decode_plane(l, p->data[0] + 3, avctx->width, avctx->height,
  206.                                     p->linesize[0], buf, buf_size, 4);
  207.         break;
  208.     }
  209.     *data_size = sizeof(AVFrame);
  210.     *(AVFrame*)data = l->pic;
  211.     
  212.     return buf_size;
  213. }
  214. static int decode_init(AVCodecContext *avctx){
  215.     LOCOContext * const l = avctx->priv_data;
  216.     int version;
  217.     l->avctx = avctx;
  218.     if (avctx->extradata_size < 12) {
  219.         av_log(avctx, AV_LOG_ERROR, "Extradata size must be >= 12 instead of %in",
  220.                avctx->extradata_size);
  221.         return -1;
  222.     }
  223.     version = LE_32(avctx->extradata);
  224.     switch(version) {
  225.     case 1:
  226.         l->lossy = 0;
  227.         break;
  228.     case 2:
  229.         l->lossy = LE_32(avctx->extradata + 8);
  230.         break;
  231.     default:
  232.         l->lossy = LE_32(avctx->extradata + 8);
  233.         av_log(avctx, AV_LOG_INFO, "This is LOCO codec version %i, please upload file for studyn", version);
  234.     }
  235.     
  236.     l->mode = LE_32(avctx->extradata + 4);
  237.     switch(l->mode) {
  238.     case LOCO_CYUY2: case LOCO_YUY2: case LOCO_UYVY:
  239.         avctx->pix_fmt = PIX_FMT_YUV422P;
  240.         break;
  241.     case LOCO_CRGB: case LOCO_RGB:
  242.         avctx->pix_fmt = PIX_FMT_BGR24;
  243.         break;
  244.     case LOCO_CYV12: case LOCO_YV12:
  245.         avctx->pix_fmt = PIX_FMT_YUV420P;
  246.         break;
  247.     case LOCO_CRGBA: case LOCO_RGBA:
  248.         avctx->pix_fmt = PIX_FMT_RGBA32;
  249.         break;
  250.     default:
  251.         av_log(avctx, AV_LOG_INFO, "Unknown colorspace, index = %in", l->mode);
  252.         return -1;
  253.     }
  254.     if(avctx->debug & FF_DEBUG_PICT_INFO)
  255.         av_log(avctx, AV_LOG_INFO, "lossy:%i, version:%i, mode: %in", l->lossy, version, l->mode);
  256.     return 0;
  257. }
  258. AVCodec loco_decoder = {
  259.     "loco",
  260.     CODEC_TYPE_VIDEO,
  261.     CODEC_ID_LOCO,
  262.     sizeof(LOCOContext),
  263.     decode_init,
  264.     NULL,
  265.     NULL,
  266.     decode_frame,
  267.     CODEC_CAP_DR1,
  268. };