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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * RV10 codec
  3.  * Copyright (c) 2000,2001 Fabrice Bellard.
  4.  * Copyright (c) 2002-2004 Michael Niedermayer
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. /**
  21.  * @file rv10.c
  22.  * RV10 codec.
  23.  */
  24.  
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "mpegvideo.h"
  28. //#define DEBUG
  29. #define DC_VLC_BITS 14 //FIXME find a better solution
  30. static const uint16_t rv_lum_code[256] =
  31. {
  32.  0x3e7f, 0x0f00, 0x0f01, 0x0f02, 0x0f03, 0x0f04, 0x0f05, 0x0f06,
  33.  0x0f07, 0x0f08, 0x0f09, 0x0f0a, 0x0f0b, 0x0f0c, 0x0f0d, 0x0f0e,
  34.  0x0f0f, 0x0f10, 0x0f11, 0x0f12, 0x0f13, 0x0f14, 0x0f15, 0x0f16,
  35.  0x0f17, 0x0f18, 0x0f19, 0x0f1a, 0x0f1b, 0x0f1c, 0x0f1d, 0x0f1e,
  36.  0x0f1f, 0x0f20, 0x0f21, 0x0f22, 0x0f23, 0x0f24, 0x0f25, 0x0f26,
  37.  0x0f27, 0x0f28, 0x0f29, 0x0f2a, 0x0f2b, 0x0f2c, 0x0f2d, 0x0f2e,
  38.  0x0f2f, 0x0f30, 0x0f31, 0x0f32, 0x0f33, 0x0f34, 0x0f35, 0x0f36,
  39.  0x0f37, 0x0f38, 0x0f39, 0x0f3a, 0x0f3b, 0x0f3c, 0x0f3d, 0x0f3e,
  40.  0x0f3f, 0x0380, 0x0381, 0x0382, 0x0383, 0x0384, 0x0385, 0x0386,
  41.  0x0387, 0x0388, 0x0389, 0x038a, 0x038b, 0x038c, 0x038d, 0x038e,
  42.  0x038f, 0x0390, 0x0391, 0x0392, 0x0393, 0x0394, 0x0395, 0x0396,
  43.  0x0397, 0x0398, 0x0399, 0x039a, 0x039b, 0x039c, 0x039d, 0x039e,
  44.  0x039f, 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c6,
  45.  0x00c7, 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce,
  46.  0x00cf, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056,
  47.  0x0057, 0x0020, 0x0021, 0x0022, 0x0023, 0x000c, 0x000d, 0x0004,
  48.  0x0000, 0x0005, 0x000e, 0x000f, 0x0024, 0x0025, 0x0026, 0x0027,
  49.  0x0058, 0x0059, 0x005a, 0x005b, 0x005c, 0x005d, 0x005e, 0x005f,
  50.  0x00d0, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d7,
  51.  0x00d8, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x00df,
  52.  0x03a0, 0x03a1, 0x03a2, 0x03a3, 0x03a4, 0x03a5, 0x03a6, 0x03a7,
  53.  0x03a8, 0x03a9, 0x03aa, 0x03ab, 0x03ac, 0x03ad, 0x03ae, 0x03af,
  54.  0x03b0, 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7,
  55.  0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf,
  56.  0x0f40, 0x0f41, 0x0f42, 0x0f43, 0x0f44, 0x0f45, 0x0f46, 0x0f47,
  57.  0x0f48, 0x0f49, 0x0f4a, 0x0f4b, 0x0f4c, 0x0f4d, 0x0f4e, 0x0f4f,
  58.  0x0f50, 0x0f51, 0x0f52, 0x0f53, 0x0f54, 0x0f55, 0x0f56, 0x0f57,
  59.  0x0f58, 0x0f59, 0x0f5a, 0x0f5b, 0x0f5c, 0x0f5d, 0x0f5e, 0x0f5f,
  60.  0x0f60, 0x0f61, 0x0f62, 0x0f63, 0x0f64, 0x0f65, 0x0f66, 0x0f67,
  61.  0x0f68, 0x0f69, 0x0f6a, 0x0f6b, 0x0f6c, 0x0f6d, 0x0f6e, 0x0f6f,
  62.  0x0f70, 0x0f71, 0x0f72, 0x0f73, 0x0f74, 0x0f75, 0x0f76, 0x0f77,
  63.  0x0f78, 0x0f79, 0x0f7a, 0x0f7b, 0x0f7c, 0x0f7d, 0x0f7e, 0x0f7f,
  64. };
  65. static const uint8_t rv_lum_bits[256] = 
  66. {
  67.  14, 12, 12, 12, 12, 12, 12, 12,
  68.  12, 12, 12, 12, 12, 12, 12, 12,
  69.  12, 12, 12, 12, 12, 12, 12, 12,
  70.  12, 12, 12, 12, 12, 12, 12, 12,
  71.  12, 12, 12, 12, 12, 12, 12, 12,
  72.  12, 12, 12, 12, 12, 12, 12, 12,
  73.  12, 12, 12, 12, 12, 12, 12, 12,
  74.  12, 12, 12, 12, 12, 12, 12, 12,
  75.  12, 10, 10, 10, 10, 10, 10, 10,
  76.  10, 10, 10, 10, 10, 10, 10, 10,
  77.  10, 10, 10, 10, 10, 10, 10, 10,
  78.  10, 10, 10, 10, 10, 10, 10, 10,
  79.  10,  8,  8,  8,  8,  8,  8,  8,
  80.   8,  8,  8,  8,  8,  8,  8,  8,
  81.   8,  7,  7,  7,  7,  7,  7,  7,
  82.   7,  6,  6,  6,  6,  5,  5,  4,
  83.   2,  4,  5,  5,  6,  6,  6,  6,
  84.   7,  7,  7,  7,  7,  7,  7,  7,
  85.   8,  8,  8,  8,  8,  8,  8,  8,
  86.   8,  8,  8,  8,  8,  8,  8,  8,
  87.  10, 10, 10, 10, 10, 10, 10, 10,
  88.  10, 10, 10, 10, 10, 10, 10, 10,
  89.  10, 10, 10, 10, 10, 10, 10, 10,
  90.  10, 10, 10, 10, 10, 10, 10, 10,
  91.  12, 12, 12, 12, 12, 12, 12, 12,
  92.  12, 12, 12, 12, 12, 12, 12, 12,
  93.  12, 12, 12, 12, 12, 12, 12, 12,
  94.  12, 12, 12, 12, 12, 12, 12, 12,
  95.  12, 12, 12, 12, 12, 12, 12, 12,
  96.  12, 12, 12, 12, 12, 12, 12, 12,
  97.  12, 12, 12, 12, 12, 12, 12, 12,
  98.  12, 12, 12, 12, 12, 12, 12, 12,
  99. };
  100. static const uint16_t rv_chrom_code[256] =
  101. {
  102.  0xfe7f, 0x3f00, 0x3f01, 0x3f02, 0x3f03, 0x3f04, 0x3f05, 0x3f06,
  103.  0x3f07, 0x3f08, 0x3f09, 0x3f0a, 0x3f0b, 0x3f0c, 0x3f0d, 0x3f0e,
  104.  0x3f0f, 0x3f10, 0x3f11, 0x3f12, 0x3f13, 0x3f14, 0x3f15, 0x3f16,
  105.  0x3f17, 0x3f18, 0x3f19, 0x3f1a, 0x3f1b, 0x3f1c, 0x3f1d, 0x3f1e,
  106.  0x3f1f, 0x3f20, 0x3f21, 0x3f22, 0x3f23, 0x3f24, 0x3f25, 0x3f26,
  107.  0x3f27, 0x3f28, 0x3f29, 0x3f2a, 0x3f2b, 0x3f2c, 0x3f2d, 0x3f2e,
  108.  0x3f2f, 0x3f30, 0x3f31, 0x3f32, 0x3f33, 0x3f34, 0x3f35, 0x3f36,
  109.  0x3f37, 0x3f38, 0x3f39, 0x3f3a, 0x3f3b, 0x3f3c, 0x3f3d, 0x3f3e,
  110.  0x3f3f, 0x0f80, 0x0f81, 0x0f82, 0x0f83, 0x0f84, 0x0f85, 0x0f86,
  111.  0x0f87, 0x0f88, 0x0f89, 0x0f8a, 0x0f8b, 0x0f8c, 0x0f8d, 0x0f8e,
  112.  0x0f8f, 0x0f90, 0x0f91, 0x0f92, 0x0f93, 0x0f94, 0x0f95, 0x0f96,
  113.  0x0f97, 0x0f98, 0x0f99, 0x0f9a, 0x0f9b, 0x0f9c, 0x0f9d, 0x0f9e,
  114.  0x0f9f, 0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5, 0x03c6,
  115.  0x03c7, 0x03c8, 0x03c9, 0x03ca, 0x03cb, 0x03cc, 0x03cd, 0x03ce,
  116.  0x03cf, 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e6,
  117.  0x00e7, 0x0030, 0x0031, 0x0032, 0x0033, 0x0008, 0x0009, 0x0002,
  118.  0x0000, 0x0003, 0x000a, 0x000b, 0x0034, 0x0035, 0x0036, 0x0037,
  119.  0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00ed, 0x00ee, 0x00ef,
  120.  0x03d0, 0x03d1, 0x03d2, 0x03d3, 0x03d4, 0x03d5, 0x03d6, 0x03d7,
  121.  0x03d8, 0x03d9, 0x03da, 0x03db, 0x03dc, 0x03dd, 0x03de, 0x03df,
  122.  0x0fa0, 0x0fa1, 0x0fa2, 0x0fa3, 0x0fa4, 0x0fa5, 0x0fa6, 0x0fa7,
  123.  0x0fa8, 0x0fa9, 0x0faa, 0x0fab, 0x0fac, 0x0fad, 0x0fae, 0x0faf,
  124.  0x0fb0, 0x0fb1, 0x0fb2, 0x0fb3, 0x0fb4, 0x0fb5, 0x0fb6, 0x0fb7,
  125.  0x0fb8, 0x0fb9, 0x0fba, 0x0fbb, 0x0fbc, 0x0fbd, 0x0fbe, 0x0fbf,
  126.  0x3f40, 0x3f41, 0x3f42, 0x3f43, 0x3f44, 0x3f45, 0x3f46, 0x3f47,
  127.  0x3f48, 0x3f49, 0x3f4a, 0x3f4b, 0x3f4c, 0x3f4d, 0x3f4e, 0x3f4f,
  128.  0x3f50, 0x3f51, 0x3f52, 0x3f53, 0x3f54, 0x3f55, 0x3f56, 0x3f57,
  129.  0x3f58, 0x3f59, 0x3f5a, 0x3f5b, 0x3f5c, 0x3f5d, 0x3f5e, 0x3f5f,
  130.  0x3f60, 0x3f61, 0x3f62, 0x3f63, 0x3f64, 0x3f65, 0x3f66, 0x3f67,
  131.  0x3f68, 0x3f69, 0x3f6a, 0x3f6b, 0x3f6c, 0x3f6d, 0x3f6e, 0x3f6f,
  132.  0x3f70, 0x3f71, 0x3f72, 0x3f73, 0x3f74, 0x3f75, 0x3f76, 0x3f77,
  133.  0x3f78, 0x3f79, 0x3f7a, 0x3f7b, 0x3f7c, 0x3f7d, 0x3f7e, 0x3f7f,
  134. };
  135. static const uint8_t rv_chrom_bits[256] =
  136. {
  137.  16, 14, 14, 14, 14, 14, 14, 14,
  138.  14, 14, 14, 14, 14, 14, 14, 14,
  139.  14, 14, 14, 14, 14, 14, 14, 14,
  140.  14, 14, 14, 14, 14, 14, 14, 14,
  141.  14, 14, 14, 14, 14, 14, 14, 14,
  142.  14, 14, 14, 14, 14, 14, 14, 14,
  143.  14, 14, 14, 14, 14, 14, 14, 14,
  144.  14, 14, 14, 14, 14, 14, 14, 14,
  145.  14, 12, 12, 12, 12, 12, 12, 12,
  146.  12, 12, 12, 12, 12, 12, 12, 12,
  147.  12, 12, 12, 12, 12, 12, 12, 12,
  148.  12, 12, 12, 12, 12, 12, 12, 12,
  149.  12, 10, 10, 10, 10, 10, 10, 10,
  150.  10, 10, 10, 10, 10, 10, 10, 10,
  151.  10,  8,  8,  8,  8,  8,  8,  8,
  152.   8,  6,  6,  6,  6,  4,  4,  3,
  153.   2,  3,  4,  4,  6,  6,  6,  6,
  154.   8,  8,  8,  8,  8,  8,  8,  8,
  155.  10, 10, 10, 10, 10, 10, 10, 10,
  156.  10, 10, 10, 10, 10, 10, 10, 10,
  157.  12, 12, 12, 12, 12, 12, 12, 12,
  158.  12, 12, 12, 12, 12, 12, 12, 12,
  159.  12, 12, 12, 12, 12, 12, 12, 12,
  160.  12, 12, 12, 12, 12, 12, 12, 12,
  161.  14, 14, 14, 14, 14, 14, 14, 14,
  162.  14, 14, 14, 14, 14, 14, 14, 14,
  163.  14, 14, 14, 14, 14, 14, 14, 14,
  164.  14, 14, 14, 14, 14, 14, 14, 14,
  165.  14, 14, 14, 14, 14, 14, 14, 14,
  166.  14, 14, 14, 14, 14, 14, 14, 14,
  167.  14, 14, 14, 14, 14, 14, 14, 14,
  168.  14, 14, 14, 14, 14, 14, 14, 14,
  169. };
  170. static VLC rv_dc_lum, rv_dc_chrom;
  171. int rv_decode_dc(MpegEncContext *s, int n)
  172. {
  173.     int code;
  174.     if (n < 4) {
  175.         code = get_vlc2(&s->gb, rv_dc_lum.table, DC_VLC_BITS, 2);
  176.         if (code < 0) {
  177.             /* XXX: I don't understand why they use LONGER codes than
  178.                necessary. The following code would be completely useless
  179.                if they had thought about it !!! */
  180.             code = get_bits(&s->gb, 7);
  181.             if (code == 0x7c) {
  182.                 code = (int8_t)(get_bits(&s->gb, 7) + 1);
  183.             } else if (code == 0x7d) {
  184.                 code = -128 + get_bits(&s->gb, 7);
  185.             } else if (code == 0x7e) {
  186.                 if (get_bits(&s->gb, 1) == 0)
  187.                     code = (int8_t)(get_bits(&s->gb, 8) + 1);
  188.                 else
  189.                     code = (int8_t)(get_bits(&s->gb, 8));
  190.             } else if (code == 0x7f) {
  191.                 get_bits(&s->gb, 11);
  192.                 code = 1;
  193.             }
  194.         } else {
  195.             code -= 128;
  196.         }
  197.     } else {
  198.         code = get_vlc2(&s->gb, rv_dc_chrom.table, DC_VLC_BITS, 2);
  199.         /* same remark */
  200.         if (code < 0) {
  201.             code = get_bits(&s->gb, 9);
  202.             if (code == 0x1fc) {
  203.                 code = (int8_t)(get_bits(&s->gb, 7) + 1);
  204.             } else if (code == 0x1fd) {
  205.                 code = -128 + get_bits(&s->gb, 7);
  206.             } else if (code == 0x1fe) {
  207.                 get_bits(&s->gb, 9);
  208.                 code = 1;
  209.             } else {
  210.                 av_log(s->avctx, AV_LOG_ERROR, "chroma dc errorn");
  211.                 return 0xffff;
  212.             }
  213.         } else {
  214.             code -= 128;
  215.         }
  216.     }
  217.     return -code;
  218. }
  219. #ifdef CONFIG_ENCODERS
  220. /* write RV 1.0 compatible frame header */
  221. void rv10_encode_picture_header(MpegEncContext *s, int picture_number)
  222. {
  223.     int full_frame= 0;
  224.     align_put_bits(&s->pb);
  225.     
  226.     put_bits(&s->pb, 1, 1); /* marker */
  227.     put_bits(&s->pb, 1, (s->pict_type == P_TYPE));
  228.     put_bits(&s->pb, 1, 0); /* not PB frame */
  229.     put_bits(&s->pb, 5, s->qscale);
  230.     if (s->pict_type == I_TYPE) {
  231. /* specific MPEG like DC coding not used */
  232.     }
  233.     /* if multiple packets per frame are sent, the position at which
  234.        to display the macro blocks is coded here */
  235.     if(!full_frame){
  236.         put_bits(&s->pb, 6, 0); /* mb_x */
  237.         put_bits(&s->pb, 6, 0); /* mb_y */
  238.         put_bits(&s->pb, 12, s->mb_width * s->mb_height);
  239.     }
  240.     put_bits(&s->pb, 3, 0); /* ignored */
  241. }
  242. void rv20_encode_picture_header(MpegEncContext *s, int picture_number){
  243.     put_bits(&s->pb, 2, s->pict_type); //I 0 vs. 1 ?
  244.     put_bits(&s->pb, 1, 0); /* unknown bit */
  245.     put_bits(&s->pb, 5, s->qscale);
  246.         
  247.     put_bits(&s->pb, 8, picture_number&0xFF); //FIXME wrong, but correct is not known
  248.     s->mb_x= s->mb_y= 0;
  249.     ff_h263_encode_mba(s);
  250.     
  251.     put_bits(&s->pb, 1, s->no_rounding);
  252.     
  253.     assert(s->f_code == 1);
  254.     assert(s->unrestricted_mv == 1);
  255. //    assert(s->h263_aic== (s->pict_type == I_TYPE));
  256.     assert(s->alt_inter_vlc == 0);
  257.     assert(s->umvplus == 0);
  258.     assert(s->modified_quant==1);
  259.     assert(s->loop_filter==1);
  260.     s->h263_aic= s->pict_type == I_TYPE;
  261.     if(s->h263_aic){
  262.         s->y_dc_scale_table= 
  263.         s->c_dc_scale_table= ff_aic_dc_scale_table;
  264.     }else{
  265.         s->y_dc_scale_table=
  266.         s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
  267.     }
  268. }
  269. #if 0 /* unused, remove? */
  270. static int get_num(GetBitContext *gb)
  271. {
  272.     int n, n1;
  273.     n = get_bits(gb, 16);
  274.     if (n >= 0x4000) {
  275.         return n - 0x4000;
  276.     } else {
  277.         n1 = get_bits(gb, 16);
  278.         return (n << 16) | n1;
  279.     }
  280. }
  281. #endif
  282. #endif //CONFIG_ENCODERS
  283. /* read RV 1.0 compatible frame header */
  284. static int rv10_decode_picture_header(MpegEncContext *s)
  285. {
  286.     int mb_count, pb_frame, marker, unk, mb_xy;
  287.     
  288. //printf("ff:%dn", full_frame);
  289.     marker = get_bits(&s->gb, 1);
  290.     if (get_bits(&s->gb, 1))
  291.         s->pict_type = P_TYPE;
  292.     else
  293.         s->pict_type = I_TYPE;
  294. //printf("h:%X ver:%dn",h,s->rv10_version);
  295.     if(!marker) av_log(s->avctx, AV_LOG_ERROR, "marker missingn");
  296.     pb_frame = get_bits(&s->gb, 1);
  297. #ifdef DEBUG
  298.     printf("pict_type=%d pb_frame=%dn", s->pict_type, pb_frame);
  299. #endif
  300.     
  301.     if (pb_frame){
  302.         av_log(s->avctx, AV_LOG_ERROR, "pb frame not supportedn");
  303.         return -1;
  304.     }
  305.     s->qscale = get_bits(&s->gb, 5);
  306.     if(s->qscale==0){
  307.         av_log(s->avctx, AV_LOG_ERROR, "error, qscale:0n");
  308.         return -1;
  309.     }
  310.     if (s->pict_type == I_TYPE) {
  311.         if (s->rv10_version == 3) {
  312.             /* specific MPEG like DC coding not used */
  313.             s->last_dc[0] = get_bits(&s->gb, 8);
  314.             s->last_dc[1] = get_bits(&s->gb, 8);
  315.             s->last_dc[2] = get_bits(&s->gb, 8);
  316. #ifdef DEBUG
  317.             printf("DC:%d %d %dn",
  318.                    s->last_dc[0],
  319.                    s->last_dc[1],
  320.                    s->last_dc[2]);
  321. #endif
  322.         }
  323.     }
  324.     /* if multiple packets per frame are sent, the position at which
  325.        to display the macro blocks is coded here */
  326.     mb_xy= s->mb_x + s->mb_y*s->mb_width;
  327.     if(show_bits(&s->gb, 12)==0 || (mb_xy && mb_xy < s->mb_num)){
  328.         s->mb_x = get_bits(&s->gb, 6); /* mb_x */
  329.         s->mb_y = get_bits(&s->gb, 6); /* mb_y */
  330.         mb_count = get_bits(&s->gb, 12);
  331.     } else {
  332.         s->mb_x = 0;
  333.         s->mb_y = 0;
  334.         mb_count = s->mb_width * s->mb_height;
  335.     }
  336.     unk= get_bits(&s->gb, 3); /* ignored */
  337. //printf("%dn", unk);
  338.     s->f_code = 1;
  339.     s->unrestricted_mv = 1;
  340.     return mb_count;
  341. }
  342. static int rv20_decode_picture_header(MpegEncContext *s)
  343. {
  344.     int seq, mb_pos, i;
  345.     
  346. #if 0
  347.     GetBitContext gb= s->gb;
  348.     for(i=0; i<64; i++){
  349.         av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&gb));
  350.         if(i%4==3) av_log(s->avctx, AV_LOG_DEBUG, " ");
  351.     }
  352.     av_log(s->avctx, AV_LOG_DEBUG, "n");
  353. #endif
  354. #if 0
  355.     for(i=0; i<s->avctx->extradata_size; i++){
  356.         av_log(s->avctx, AV_LOG_DEBUG, "%2X ", ((uint8_t*)s->avctx->extradata)[i]);
  357.         if(i%4==3) av_log(s->avctx, AV_LOG_DEBUG, " ");
  358.     }
  359.     av_log(s->avctx, AV_LOG_DEBUG, "n");
  360. #endif
  361.     
  362.     if(s->avctx->sub_id == 0x30202002 || s->avctx->sub_id == 0x30203002){
  363.         if (get_bits(&s->gb, 3)){
  364.             av_log(s->avctx, AV_LOG_ERROR, "unknown triplet setn");
  365.             return -1;
  366.         } 
  367.     }   
  368.     i= get_bits(&s->gb, 2);
  369.     switch(i){
  370.     case 0: s->pict_type= I_TYPE; break;
  371.     case 1: s->pict_type= I_TYPE; break; //hmm ...
  372.     case 2: s->pict_type= P_TYPE; break;
  373.     case 3: s->pict_type= B_TYPE; break;
  374.     default: 
  375.         av_log(s->avctx, AV_LOG_ERROR, "unknown frame typen");
  376.         return -1;
  377.     }
  378.     
  379.     if(s->last_picture_ptr==NULL && s->pict_type==B_TYPE){
  380.         av_log(s->avctx, AV_LOG_ERROR, "early B pixn");
  381.         return -1;
  382.     }
  383.     
  384.     if (get_bits(&s->gb, 1)){
  385.         av_log(s->avctx, AV_LOG_ERROR, "unknown bit setn");
  386.         return -1;
  387.     }
  388.     s->qscale = get_bits(&s->gb, 5);
  389.     if(s->qscale==0){
  390.         av_log(s->avctx, AV_LOG_ERROR, "error, qscale:0n");
  391.         return -1;
  392.     }
  393.     if(s->avctx->sub_id == 0x30203002){
  394.         if (get_bits(&s->gb, 1)){
  395.             av_log(s->avctx, AV_LOG_ERROR, "unknown bit2 setn");
  396.             return -1;
  397.         }
  398.     }
  399.         
  400.     if(s->avctx->has_b_frames){
  401.         int f=9;
  402.         int v= s->avctx->extradata_size >= 4 ? ((uint8_t*)s->avctx->extradata)[1] : 0;
  403.         if (get_bits(&s->gb, 1)){
  404.             av_log(s->avctx, AV_LOG_ERROR, "unknown bit3 setn");
  405. //            return -1;
  406.         }
  407.         seq= get_bits(&s->gb, 14)<<1;
  408.         if(v) 
  409.             f= get_bits(&s->gb, av_log2(v));
  410.         if(s->avctx->debug & FF_DEBUG_PICT_INFO){
  411.             av_log(s->avctx, AV_LOG_DEBUG, "F %d/%dn", f, v);
  412.         }
  413.     }else{
  414.         seq= get_bits(&s->gb, 8)*128;
  415.     }
  416. //     if(s->avctx->sub_id <= 0x20201002){ //0x20201002 definitely needs this 
  417.     mb_pos= ff_h263_decode_mba(s);
  418. /*    }else{
  419.         mb_pos= get_bits(&s->gb, av_log2(s->mb_num-1)+1);
  420.         s->mb_x= mb_pos % s->mb_width;
  421.         s->mb_y= mb_pos / s->mb_width;
  422.     }*/
  423. //av_log(s->avctx, AV_LOG_DEBUG, "%dn", seq);
  424.     seq |= s->time &~0x7FFF;
  425.     if(seq - s->time >  0x4000) seq -= 0x8000;
  426.     if(seq - s->time < -0x4000) seq += 0x8000;
  427.     if(seq != s->time){  
  428.         if(s->pict_type!=B_TYPE){
  429.             s->time= seq;
  430.             s->pp_time= s->time - s->last_non_b_time;
  431.             s->last_non_b_time= s->time;
  432.         }else{
  433.             s->time= seq;
  434.             s->pb_time= s->pp_time - (s->last_non_b_time - s->time);
  435.             if(s->pp_time <=s->pb_time || s->pp_time <= s->pp_time - s->pb_time || s->pp_time<=0){
  436.                 av_log(s->avctx, AV_LOG_DEBUG, "messed up order, possible from seeking? skipping current b framen");
  437.                 return FRAME_SKIPPED;
  438.             }
  439.         }
  440.     }
  441. //    printf("%d %d %d %d %dn", seq, (int)s->time, (int)s->last_non_b_time, s->pp_time, s->pb_time);
  442. /*for(i=0; i<32; i++){
  443.     av_log(s->avctx, AV_LOG_DEBUG, "%d", get_bits1(&s->gb));
  444. }
  445. av_log(s->avctx, AV_LOG_DEBUG, "n");*/
  446.     s->no_rounding= get_bits1(&s->gb);
  447.     
  448.     s->f_code = 1;
  449.     s->unrestricted_mv = 1;
  450.     s->h263_aic= s->pict_type == I_TYPE;
  451. //    s->alt_inter_vlc=1;
  452. //    s->obmc=1;
  453. //    s->umvplus=1;
  454.     s->modified_quant=1;
  455.     s->loop_filter=1;
  456.     
  457.     if(s->avctx->debug & FF_DEBUG_PICT_INFO){
  458.             av_log(s->avctx, AV_LOG_INFO, "num:%5d x:%2d y:%2d type:%d qscale:%2d rnd:%dn", 
  459.                    seq, s->mb_x, s->mb_y, s->pict_type, s->qscale, s->no_rounding);
  460.     }
  461.     assert(s->pict_type != B_TYPE || !s->low_delay);
  462.     return s->mb_width*s->mb_height - mb_pos;
  463. }
  464. static int rv10_decode_init(AVCodecContext *avctx)
  465. {
  466.     MpegEncContext *s = avctx->priv_data;
  467.     static int done=0;
  468.     MPV_decode_defaults(s);
  469.     
  470.     s->avctx= avctx;
  471.     s->out_format = FMT_H263;
  472.     s->codec_id= avctx->codec_id;
  473.     s->width = avctx->width;
  474.     s->height = avctx->height;
  475.     switch(avctx->sub_id){
  476.     case 0x10000000:
  477.         s->rv10_version= 0;
  478.         s->h263_long_vectors=0;
  479.         s->low_delay=1;
  480.         break;
  481.     case 0x10002000:
  482.         s->rv10_version= 3;
  483.         s->h263_long_vectors=1;
  484.         s->low_delay=1;
  485.         s->obmc=1;
  486.         break;
  487.     case 0x10003000:
  488.         s->rv10_version= 3;
  489.         s->h263_long_vectors=1;
  490.         s->low_delay=1;
  491.         break;
  492.     case 0x10003001:
  493.         s->rv10_version= 3;
  494.         s->h263_long_vectors=0;
  495.         s->low_delay=1;
  496.         break;
  497.     case 0x20001000: /* real rv20 decoder fail on this id */
  498.     /*case 0x20100001:
  499.     case 0x20101001:
  500.     case 0x20103001:*/
  501.     case 0x20100000 ... 0x2019ffff:
  502.         s->low_delay=1;
  503.         break;
  504.     /*case 0x20200002:
  505.     case 0x20201002:
  506.     case 0x20203002:*/
  507.     case 0x20200002 ... 0x202fffff:
  508.     case 0x30202002:
  509.     case 0x30203002:
  510.         s->low_delay=0;
  511.         s->avctx->has_b_frames=1;
  512.         break;
  513.     default:
  514.         av_log(s->avctx, AV_LOG_ERROR, "unknown header %Xn", avctx->sub_id);
  515.     }
  516.     
  517.     if(avctx->debug & FF_DEBUG_PICT_INFO){
  518.         av_log(avctx, AV_LOG_DEBUG, "ver:%X ver0:%Xn", avctx->sub_id, avctx->extradata_size >= 4 ? ((uint32_t*)avctx->extradata)[0] : -1);
  519.     }
  520.     avctx->pix_fmt = PIX_FMT_YUV420P;
  521.     if (MPV_common_init(s) < 0)
  522.         return -1;
  523.     h263_decode_init_vlc(s);
  524.     /* init rv vlc */
  525.     if (!done) {
  526.         init_vlc(&rv_dc_lum, DC_VLC_BITS, 256, 
  527.                  rv_lum_bits, 1, 1,
  528.                  rv_lum_code, 2, 2, 1);
  529.         init_vlc(&rv_dc_chrom, DC_VLC_BITS, 256, 
  530.                  rv_chrom_bits, 1, 1,
  531.                  rv_chrom_code, 2, 2, 1);
  532.         done = 1;
  533.     }
  534.     return 0;
  535. }
  536. static int rv10_decode_end(AVCodecContext *avctx)
  537. {
  538.     MpegEncContext *s = avctx->priv_data;
  539.     MPV_common_end(s);
  540.     return 0;
  541. }
  542. static int rv10_decode_packet(AVCodecContext *avctx, 
  543.                              uint8_t *buf, int buf_size)
  544. {
  545.     MpegEncContext *s = avctx->priv_data;
  546.     int mb_count, mb_pos, left;
  547.     init_get_bits(&s->gb, buf, buf_size*8);
  548.     if(s->codec_id ==CODEC_ID_RV10)
  549.         mb_count = rv10_decode_picture_header(s);
  550.     else
  551.         mb_count = rv20_decode_picture_header(s);
  552.     if (mb_count < 0) {
  553.         av_log(s->avctx, AV_LOG_ERROR, "HEADER ERRORn");
  554.         return -1;
  555.     }
  556.     
  557.     if (s->mb_x >= s->mb_width ||
  558.         s->mb_y >= s->mb_height) {
  559.         av_log(s->avctx, AV_LOG_ERROR, "POS ERROR %d %dn", s->mb_x, s->mb_y);
  560.         return -1;
  561.     }
  562.     mb_pos = s->mb_y * s->mb_width + s->mb_x;
  563.     left = s->mb_width * s->mb_height - mb_pos;
  564.     if (mb_count > left) {
  565.         av_log(s->avctx, AV_LOG_ERROR, "COUNT ERRORn");
  566.         return -1;
  567.     }
  568. //if(s->pict_type == P_TYPE) return 0;
  569.     if ((s->mb_x == 0 && s->mb_y == 0) || s->current_picture_ptr==NULL) {
  570.         if(s->current_picture_ptr){ //FIXME write parser so we always have complete frames?
  571.             ff_er_frame_end(s);
  572.             MPV_frame_end(s);
  573.             s->mb_x= s->mb_y = s->resync_mb_x = s->resync_mb_y= 0;
  574.         }
  575.         if(MPV_frame_start(s, avctx) < 0)
  576.             return -1;
  577.         ff_er_frame_start(s);
  578.     }
  579. #ifdef DEBUG
  580.     printf("qscale=%dn", s->qscale);
  581. #endif
  582.     /* default quantization values */
  583.     if(s->codec_id== CODEC_ID_RV10){
  584.         if(s->mb_y==0) s->first_slice_line=1;
  585.     }else{
  586.         s->first_slice_line=1;    
  587.         s->resync_mb_x= s->mb_x;
  588.         s->resync_mb_y= s->mb_y;
  589.     }
  590.     if(s->h263_aic){
  591.         s->y_dc_scale_table= 
  592.         s->c_dc_scale_table= ff_aic_dc_scale_table;
  593.     }else{
  594.         s->y_dc_scale_table=
  595.         s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
  596.     }
  597.     if(s->modified_quant)
  598.         s->chroma_qscale_table= ff_h263_chroma_qscale_table;
  599.         
  600.     ff_set_qscale(s, s->qscale);
  601.     s->rv10_first_dc_coded[0] = 0;
  602.     s->rv10_first_dc_coded[1] = 0;
  603.     s->rv10_first_dc_coded[2] = 0;
  604. //printf("%d %X %Xn", s->pict_type, s->current_picture.motion_val[0], s->current_picture.motion_val[1]);
  605.     s->block_wrap[0]=
  606.     s->block_wrap[1]=
  607.     s->block_wrap[2]=
  608.     s->block_wrap[3]= s->b8_stride;
  609.     s->block_wrap[4]=
  610.     s->block_wrap[5]= s->mb_stride;
  611.     ff_init_block_index(s);
  612.     /* decode each macroblock */
  613.     for(s->mb_num_left= mb_count; s->mb_num_left>0; s->mb_num_left--) {
  614.         int ret;
  615.         ff_update_block_index(s);
  616. #ifdef DEBUG
  617.         printf("**mb x=%d y=%dn", s->mb_x, s->mb_y);
  618. #endif
  619.         s->mv_dir = MV_DIR_FORWARD;
  620.         s->mv_type = MV_TYPE_16X16; 
  621.         ret=ff_h263_decode_mb(s, s->block);
  622.         if (ret == SLICE_ERROR || s->gb.size_in_bits < get_bits_count(&s->gb)) {
  623.             av_log(s->avctx, AV_LOG_ERROR, "ERROR at MB %d %dn", s->mb_x, s->mb_y);
  624.             return -1;
  625.         }
  626.         if(s->pict_type != B_TYPE)
  627.             ff_h263_update_motion_val(s);
  628.         MPV_decode_mb(s, s->block);
  629.         if(s->loop_filter)
  630.             ff_h263_loop_filter(s);
  631.         if (++s->mb_x == s->mb_width) {
  632.             s->mb_x = 0;
  633.             s->mb_y++;
  634.             ff_init_block_index(s);
  635.         }
  636.         if(s->mb_x == s->resync_mb_x)
  637.             s->first_slice_line=0;
  638.         if(ret == SLICE_END) break;
  639.     }
  640.     ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END);
  641.     return buf_size;
  642. }
  643. static int rv10_decode_frame(AVCodecContext *avctx, 
  644.                              void *data, int *data_size,
  645.                              uint8_t *buf, int buf_size)
  646. {
  647.     MpegEncContext *s = avctx->priv_data;
  648.     int i;
  649.     AVFrame *pict = data; 
  650. #ifdef DEBUG
  651.     printf("*****frame %d size=%dn", avctx->frame_number, buf_size);
  652. #endif
  653.     /* no supplementary picture */
  654.     if (buf_size == 0) {
  655.         return 0;
  656.     }
  657.     if(avctx->slice_count){
  658.         for(i=0; i<avctx->slice_count; i++){
  659.             int offset= avctx->slice_offset[i];
  660.             int size;
  661.             
  662.             if(i+1 == avctx->slice_count)
  663.                 size= buf_size - offset;
  664.             else
  665.                 size= avctx->slice_offset[i+1] - offset;
  666.             rv10_decode_packet(avctx, buf+offset, size);
  667.         }
  668.     }else{
  669.         rv10_decode_packet(avctx, buf, buf_size);
  670.     }
  671.     
  672.     if(s->mb_y>=s->mb_height){
  673.         ff_er_frame_end(s);
  674.         MPV_frame_end(s);
  675.     
  676.         if(s->pict_type==B_TYPE || s->low_delay){
  677.             *pict= *(AVFrame*)&s->current_picture;
  678.             ff_print_debug_info(s, pict);
  679.         } else {
  680.             *pict= *(AVFrame*)&s->last_picture;
  681.             ff_print_debug_info(s, pict);
  682.         }
  683.         if(s->last_picture_ptr || s->low_delay)
  684.             *data_size = sizeof(AVFrame);
  685.         s->current_picture_ptr= NULL; //so we can detect if frame_end wasnt called (find some nicer solution...)
  686.     }
  687.     return buf_size;
  688. }
  689. AVCodec rv10_decoder = {
  690.     "rv10",
  691.     CODEC_TYPE_VIDEO,
  692.     CODEC_ID_RV10,
  693.     sizeof(MpegEncContext),
  694.     rv10_decode_init,
  695.     NULL,
  696.     rv10_decode_end,
  697.     rv10_decode_frame,
  698.     CODEC_CAP_DR1
  699. };
  700. AVCodec rv20_decoder = {
  701.     "rv20",
  702.     CODEC_TYPE_VIDEO,
  703.     CODEC_ID_RV20,
  704.     sizeof(MpegEncContext),
  705.     rv10_decode_init,
  706.     NULL,
  707.     rv10_decode_end,
  708.     rv10_decode_frame,
  709.     CODEC_CAP_DR1 | CODEC_CAP_DELAY,
  710.     .flush= ff_mpeg_flush,
  711. };