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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * MJPEG encoder and decoder
  3.  * Copyright (c) 2000, 2001 Fabrice Bellard.
  4.  * Copyright (c) 2003 Alex Beregszaszi
  5.  * Copyright (c) 2003-2004 Michael Niedermayer
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2 of the License, or (at your option) any later version.
  11.  *
  12.  * This library is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * Lesser General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with this library; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  *
  21.  * Support for external huffman table, various fixes (AVID workaround),
  22.  * aspecting, new decode_frame mechanism and apple mjpeg-b support
  23.  *                                  by Alex Beregszaszi <alex@naxine.org>
  24.  */
  25. /**
  26.  * @file mjpeg.c
  27.  * MJPEG encoder and decoder.
  28.  */
  29.  
  30. //#define DEBUG
  31. #include <assert.h>
  32. #include "avcodec.h"
  33. #include "dsputil.h"
  34. #include "mpegvideo.h"
  35. /* use two quantizer tables (one for luminance and one for chrominance) */
  36. /* not yet working */
  37. #undef TWOMATRIXES
  38. typedef struct MJpegContext {
  39.     uint8_t huff_size_dc_luminance[12]; //FIXME use array [3] instead of lumi / chrom, for easier addressing 
  40.     uint16_t huff_code_dc_luminance[12];
  41.     uint8_t huff_size_dc_chrominance[12];
  42.     uint16_t huff_code_dc_chrominance[12];
  43.     uint8_t huff_size_ac_luminance[256];
  44.     uint16_t huff_code_ac_luminance[256];
  45.     uint8_t huff_size_ac_chrominance[256];
  46.     uint16_t huff_code_ac_chrominance[256];
  47. } MJpegContext;
  48. /* JPEG marker codes */
  49. typedef enum {
  50.     /* start of frame */
  51.     SOF0  = 0xc0, /* baseline */
  52.     SOF1  = 0xc1, /* extended sequential, huffman */
  53.     SOF2  = 0xc2, /* progressive, huffman */
  54.     SOF3  = 0xc3, /* lossless, huffman */
  55.     SOF5  = 0xc5, /* differential sequential, huffman */
  56.     SOF6  = 0xc6, /* differential progressive, huffman */
  57.     SOF7  = 0xc7, /* differential lossless, huffman */
  58.     JPG   = 0xc8, /* reserved for JPEG extension */
  59.     SOF9  = 0xc9, /* extended sequential, arithmetic */
  60.     SOF10 = 0xca, /* progressive, arithmetic */
  61.     SOF11 = 0xcb, /* lossless, arithmetic */
  62.     SOF13 = 0xcd, /* differential sequential, arithmetic */
  63.     SOF14 = 0xce, /* differential progressive, arithmetic */
  64.     SOF15 = 0xcf, /* differential lossless, arithmetic */
  65.     DHT   = 0xc4, /* define huffman tables */
  66.     DAC   = 0xcc, /* define arithmetic-coding conditioning */
  67.     /* restart with modulo 8 count "m" */
  68.     RST0  = 0xd0,
  69.     RST1  = 0xd1,
  70.     RST2  = 0xd2,
  71.     RST3  = 0xd3,
  72.     RST4  = 0xd4,
  73.     RST5  = 0xd5,
  74.     RST6  = 0xd6,
  75.     RST7  = 0xd7,
  76.     SOI   = 0xd8, /* start of image */
  77.     EOI   = 0xd9, /* end of image */
  78.     SOS   = 0xda, /* start of scan */
  79.     DQT   = 0xdb, /* define quantization tables */
  80.     DNL   = 0xdc, /* define number of lines */
  81.     DRI   = 0xdd, /* define restart interval */
  82.     DHP   = 0xde, /* define hierarchical progression */
  83.     EXP   = 0xdf, /* expand reference components */
  84.     APP0  = 0xe0,
  85.     APP1  = 0xe1,
  86.     APP2  = 0xe2,
  87.     APP3  = 0xe3,
  88.     APP4  = 0xe4,
  89.     APP5  = 0xe5,
  90.     APP6  = 0xe6,
  91.     APP7  = 0xe7,
  92.     APP8  = 0xe8,
  93.     APP9  = 0xe9,
  94.     APP10 = 0xea,
  95.     APP11 = 0xeb,
  96.     APP12 = 0xec,
  97.     APP13 = 0xed,
  98.     APP14 = 0xee,
  99.     APP15 = 0xef,
  100.     JPG0  = 0xf0,
  101.     JPG1  = 0xf1,
  102.     JPG2  = 0xf2,
  103.     JPG3  = 0xf3,
  104.     JPG4  = 0xf4,
  105.     JPG5  = 0xf5,
  106.     JPG6  = 0xf6,
  107.     JPG7  = 0xf7,
  108.     JPG8  = 0xf8,
  109.     JPG9  = 0xf9,
  110.     JPG10 = 0xfa,
  111.     JPG11 = 0xfb,
  112.     JPG12 = 0xfc,
  113.     JPG13 = 0xfd,
  114.     COM   = 0xfe, /* comment */
  115.     TEM   = 0x01, /* temporary private use for arithmetic coding */
  116.     /* 0x02 -> 0xbf reserved */
  117. } JPEG_MARKER;
  118. #if 0
  119. /* These are the sample quantization tables given in JPEG spec section K.1.
  120.  * The spec says that the values given produce "good" quality, and
  121.  * when divided by 2, "very good" quality.
  122.  */
  123. static const unsigned char std_luminance_quant_tbl[64] = {
  124.     16,  11,  10,  16,  24,  40,  51,  61,
  125.     12,  12,  14,  19,  26,  58,  60,  55,
  126.     14,  13,  16,  24,  40,  57,  69,  56,
  127.     14,  17,  22,  29,  51,  87,  80,  62,
  128.     18,  22,  37,  56,  68, 109, 103,  77,
  129.     24,  35,  55,  64,  81, 104, 113,  92,
  130.     49,  64,  78,  87, 103, 121, 120, 101,
  131.     72,  92,  95,  98, 112, 100, 103,  99
  132. };
  133. static const unsigned char std_chrominance_quant_tbl[64] = {
  134.     17,  18,  24,  47,  99,  99,  99,  99,
  135.     18,  21,  26,  66,  99,  99,  99,  99,
  136.     24,  26,  56,  99,  99,  99,  99,  99,
  137.     47,  66,  99,  99,  99,  99,  99,  99,
  138.     99,  99,  99,  99,  99,  99,  99,  99,
  139.     99,  99,  99,  99,  99,  99,  99,  99,
  140.     99,  99,  99,  99,  99,  99,  99,  99,
  141.     99,  99,  99,  99,  99,  99,  99,  99
  142. };
  143. #endif
  144. /* Set up the standard Huffman tables (cf. JPEG standard section K.3) */
  145. /* IMPORTANT: these are only valid for 8-bit data precision! */
  146. static const uint8_t bits_dc_luminance[17] =
  147. { /* 0-base */ 0, 0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0 };
  148. static const uint8_t val_dc_luminance[] =
  149. { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
  150. static const uint8_t bits_dc_chrominance[17] =
  151. { /* 0-base */ 0, 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0 };
  152. static const uint8_t val_dc_chrominance[] =
  153. { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
  154. static const uint8_t bits_ac_luminance[17] =
  155. { /* 0-base */ 0, 0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 0x7d };
  156. static const uint8_t val_ac_luminance[] =
  157. { 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12,
  158.   0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07,
  159.   0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08,
  160.   0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0,
  161.   0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16,
  162.   0x17, 0x18, 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28,
  163.   0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,
  164.   0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,
  165.   0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,
  166.   0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69,
  167.   0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79,
  168.   0x7a, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89,
  169.   0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98,
  170.   0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
  171.   0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6,
  172.   0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5,
  173.   0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4,
  174.   0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2,
  175.   0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea,
  176.   0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,
  177.   0xf9, 0xfa 
  178. };
  179. static const uint8_t bits_ac_chrominance[17] =
  180. { /* 0-base */ 0, 0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 0x77 };
  181. static const uint8_t val_ac_chrominance[] =
  182. { 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21,
  183.   0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,
  184.   0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91,
  185.   0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0,
  186.   0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34,
  187.   0xe1, 0x25, 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26,
  188.   0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, 0x37, 0x38,
  189.   0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
  190.   0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58,
  191.   0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,
  192.   0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,
  193.   0x79, 0x7a, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
  194.   0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96,
  195.   0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5,
  196.   0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4,
  197.   0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3,
  198.   0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2,
  199.   0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda,
  200.   0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9,
  201.   0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,
  202.   0xf9, 0xfa 
  203. };
  204. /* isn't this function nicer than the one in the libjpeg ? */
  205. static void build_huffman_codes(uint8_t *huff_size, uint16_t *huff_code,
  206.                                 const uint8_t *bits_table, const uint8_t *val_table)
  207. {
  208.     int i, j, k,nb, code, sym;
  209.     code = 0;
  210.     k = 0;
  211.     for(i=1;i<=16;i++) {
  212.         nb = bits_table[i];
  213.         for(j=0;j<nb;j++) {
  214.             sym = val_table[k++];
  215.             huff_size[sym] = i;
  216.             huff_code[sym] = code;
  217.             code++;
  218.         }
  219.         code <<= 1;
  220.     }
  221. }
  222. #ifdef CONFIG_ENCODERS
  223. int mjpeg_init(MpegEncContext *s)
  224. {
  225.     MJpegContext *m;
  226.     
  227.     m = av_malloc(sizeof(MJpegContext));
  228.     if (!m)
  229.         return -1;
  230.     
  231.     s->min_qcoeff=-1023;
  232.     s->max_qcoeff= 1023;
  233.     /* build all the huffman tables */
  234.     build_huffman_codes(m->huff_size_dc_luminance,
  235.                         m->huff_code_dc_luminance,
  236.                         bits_dc_luminance,
  237.                         val_dc_luminance);
  238.     build_huffman_codes(m->huff_size_dc_chrominance,
  239.                         m->huff_code_dc_chrominance,
  240.                         bits_dc_chrominance,
  241.                         val_dc_chrominance);
  242.     build_huffman_codes(m->huff_size_ac_luminance,
  243.                         m->huff_code_ac_luminance,
  244.                         bits_ac_luminance,
  245.                         val_ac_luminance);
  246.     build_huffman_codes(m->huff_size_ac_chrominance,
  247.                         m->huff_code_ac_chrominance,
  248.                         bits_ac_chrominance,
  249.                         val_ac_chrominance);
  250.     
  251.     s->mjpeg_ctx = m;
  252.     return 0;
  253. }
  254. void mjpeg_close(MpegEncContext *s)
  255. {
  256.     av_free(s->mjpeg_ctx);
  257. }
  258. #endif //CONFIG_ENCODERS
  259. #define PREDICT(ret, topleft, top, left, predictor)
  260.     switch(predictor){
  261.         case 1: ret= left; break;
  262.         case 2: ret= top; break;
  263.         case 3: ret= topleft; break;
  264.         case 4: ret= left   +   top - topleft; break;
  265.         case 5: ret= left   + ((top - topleft)>>1); break;
  266.         case 6: ret= top + ((left   - topleft)>>1); break;
  267.         default:
  268.         case 7: ret= (left + top)>>1; break;
  269.     }
  270. #ifdef CONFIG_ENCODERS
  271. static inline void put_marker(PutBitContext *p, int code)
  272. {
  273.     put_bits(p, 8, 0xff);
  274.     put_bits(p, 8, code);
  275. }
  276. /* table_class: 0 = DC coef, 1 = AC coefs */
  277. static int put_huffman_table(MpegEncContext *s, int table_class, int table_id,
  278.                              const uint8_t *bits_table, const uint8_t *value_table)
  279. {
  280.     PutBitContext *p = &s->pb;
  281.     int n, i;
  282.     put_bits(p, 4, table_class);
  283.     put_bits(p, 4, table_id);
  284.     n = 0;
  285.     for(i=1;i<=16;i++) {
  286.         n += bits_table[i];
  287.         put_bits(p, 8, bits_table[i]);
  288.     }
  289.     for(i=0;i<n;i++)
  290.         put_bits(p, 8, value_table[i]);
  291.     return n + 17;
  292. }
  293. static void jpeg_table_header(MpegEncContext *s)
  294. {
  295.     PutBitContext *p = &s->pb;
  296.     int i, j, size;
  297.     uint8_t *ptr;
  298.     /* quant matrixes */
  299.     put_marker(p, DQT);
  300. #ifdef TWOMATRIXES
  301.     put_bits(p, 16, 2 + 2 * (1 + 64));
  302. #else
  303.     put_bits(p, 16, 2 + 1 * (1 + 64));
  304. #endif
  305.     put_bits(p, 4, 0); /* 8 bit precision */
  306.     put_bits(p, 4, 0); /* table 0 */
  307.     for(i=0;i<64;i++) {
  308.         j = s->intra_scantable.permutated[i];
  309.         put_bits(p, 8, s->intra_matrix[j]);
  310.     }
  311. #ifdef TWOMATRIXES
  312.     put_bits(p, 4, 0); /* 8 bit precision */
  313.     put_bits(p, 4, 1); /* table 1 */
  314.     for(i=0;i<64;i++) {
  315.         j = s->intra_scantable.permutated[i];
  316.         put_bits(p, 8, s->chroma_intra_matrix[j]);
  317.     }
  318. #endif
  319.     /* huffman table */
  320.     put_marker(p, DHT);
  321.     flush_put_bits(p);
  322.     ptr = pbBufPtr(p);
  323.     put_bits(p, 16, 0); /* patched later */
  324.     size = 2;
  325.     size += put_huffman_table(s, 0, 0, bits_dc_luminance, val_dc_luminance);
  326.     size += put_huffman_table(s, 0, 1, bits_dc_chrominance, val_dc_chrominance);
  327.     
  328.     size += put_huffman_table(s, 1, 0, bits_ac_luminance, val_ac_luminance);
  329.     size += put_huffman_table(s, 1, 1, bits_ac_chrominance, val_ac_chrominance);
  330.     ptr[0] = size >> 8;
  331.     ptr[1] = size;
  332. }
  333. static void jpeg_put_comments(MpegEncContext *s)
  334. {
  335.     PutBitContext *p = &s->pb;
  336.     int size;
  337.     uint8_t *ptr;
  338.     if (s->aspect_ratio_info /* && !lossless */)
  339.     {
  340.     /* JFIF header */
  341.     put_marker(p, APP0);
  342.     put_bits(p, 16, 16);
  343.     ff_put_string(p, "JFIF", 1); /* this puts the trailing zero-byte too */
  344.     put_bits(p, 16, 0x0201); /* v 1.02 */
  345.     put_bits(p, 8, 0); /* units type: 0 - aspect ratio */
  346.     put_bits(p, 16, s->avctx->sample_aspect_ratio.num);
  347.     put_bits(p, 16, s->avctx->sample_aspect_ratio.den);
  348.     put_bits(p, 8, 0); /* thumbnail width */
  349.     put_bits(p, 8, 0); /* thumbnail height */
  350.     }
  351.     /* comment */
  352.     if(!(s->flags & CODEC_FLAG_BITEXACT)){
  353.         put_marker(p, COM);
  354.         flush_put_bits(p);
  355.         ptr = pbBufPtr(p);
  356.         put_bits(p, 16, 0); /* patched later */
  357.         ff_put_string(p, LIBAVCODEC_IDENT, 1);
  358.         size = strlen(LIBAVCODEC_IDENT)+3;
  359.         ptr[0] = size >> 8;
  360.         ptr[1] = size;
  361.     }
  362.     if(  s->avctx->pix_fmt == PIX_FMT_YUV420P 
  363.        ||s->avctx->pix_fmt == PIX_FMT_YUV422P
  364.        ||s->avctx->pix_fmt == PIX_FMT_YUV444P){
  365.         put_marker(p, COM);
  366.         flush_put_bits(p);
  367.         ptr = pbBufPtr(p);
  368.         put_bits(p, 16, 0); /* patched later */
  369.         ff_put_string(p, "CS=ITU601", 1);
  370.         size = strlen("CS=ITU601")+3;
  371.         ptr[0] = size >> 8;
  372.         ptr[1] = size;
  373.     }
  374. }
  375. void mjpeg_picture_header(MpegEncContext *s)
  376. {
  377.     const int lossless= s->avctx->codec_id == CODEC_ID_LJPEG;
  378.     put_marker(&s->pb, SOI);
  379.     if (!s->mjpeg_data_only_frames)
  380.     {
  381.     jpeg_put_comments(s);    
  382.     if (s->mjpeg_write_tables) jpeg_table_header(s);
  383.     put_marker(&s->pb, lossless ? SOF3 : SOF0);
  384.     put_bits(&s->pb, 16, 17);
  385.     if(lossless && s->avctx->pix_fmt == PIX_FMT_RGBA32)
  386.         put_bits(&s->pb, 8, 9); /* 9 bits/component RCT */
  387.     else
  388.         put_bits(&s->pb, 8, 8); /* 8 bits/component */
  389.     put_bits(&s->pb, 16, s->height);
  390.     put_bits(&s->pb, 16, s->width);
  391.     put_bits(&s->pb, 8, 3); /* 3 components */
  392.     
  393.     /* Y component */
  394.     put_bits(&s->pb, 8, 1); /* component number */
  395.     put_bits(&s->pb, 4, s->mjpeg_hsample[0]); /* H factor */
  396.     put_bits(&s->pb, 4, s->mjpeg_vsample[0]); /* V factor */
  397.     put_bits(&s->pb, 8, 0); /* select matrix */
  398.     
  399.     /* Cb component */
  400.     put_bits(&s->pb, 8, 2); /* component number */
  401.     put_bits(&s->pb, 4, s->mjpeg_hsample[1]); /* H factor */
  402.     put_bits(&s->pb, 4, s->mjpeg_vsample[1]); /* V factor */
  403. #ifdef TWOMATRIXES
  404.     put_bits(&s->pb, 8, lossless ? 0 : 1); /* select matrix */
  405. #else
  406.     put_bits(&s->pb, 8, 0); /* select matrix */
  407. #endif
  408.     /* Cr component */
  409.     put_bits(&s->pb, 8, 3); /* component number */
  410.     put_bits(&s->pb, 4, s->mjpeg_hsample[2]); /* H factor */
  411.     put_bits(&s->pb, 4, s->mjpeg_vsample[2]); /* V factor */
  412. #ifdef TWOMATRIXES
  413.     put_bits(&s->pb, 8, lossless ? 0 : 1); /* select matrix */
  414. #else
  415.     put_bits(&s->pb, 8, 0); /* select matrix */
  416. #endif
  417.     }
  418.     /* scan header */
  419.     put_marker(&s->pb, SOS);
  420.     put_bits(&s->pb, 16, 12); /* length */
  421.     put_bits(&s->pb, 8, 3); /* 3 components */
  422.     
  423.     /* Y component */
  424.     put_bits(&s->pb, 8, 1); /* index */
  425.     put_bits(&s->pb, 4, 0); /* DC huffman table index */
  426.     put_bits(&s->pb, 4, 0); /* AC huffman table index */
  427.     
  428.     /* Cb component */
  429.     put_bits(&s->pb, 8, 2); /* index */
  430.     put_bits(&s->pb, 4, 1); /* DC huffman table index */
  431.     put_bits(&s->pb, 4, lossless ? 0 : 1); /* AC huffman table index */
  432.     
  433.     /* Cr component */
  434.     put_bits(&s->pb, 8, 3); /* index */
  435.     put_bits(&s->pb, 4, 1); /* DC huffman table index */
  436.     put_bits(&s->pb, 4, lossless ? 0 : 1); /* AC huffman table index */
  437.     put_bits(&s->pb, 8, lossless ? s->avctx->prediction_method+1 : 0); /* Ss (not used) */
  438.     put_bits(&s->pb, 8, lossless ? 0 : 63); /* Se (not used) */
  439.     put_bits(&s->pb, 8, 0); /* Ah/Al (not used) */
  440. }
  441. static void escape_FF(MpegEncContext *s, int start)
  442. {
  443.     int size= put_bits_count(&s->pb) - start*8;
  444.     int i, ff_count;
  445.     uint8_t *buf= s->pb.buf + start;
  446.     int align= (-(size_t)(buf))&3;
  447.     
  448.     assert((size&7) == 0);
  449.     size >>= 3;
  450.     
  451.     ff_count=0;
  452.     for(i=0; i<size && i<align; i++){
  453.         if(buf[i]==0xFF) ff_count++;
  454.     }
  455.     for(; i<size-15; i+=16){
  456.         int acc, v;
  457.         v= *(uint32_t*)(&buf[i]);
  458.         acc= (((v & (v>>4))&0x0F0F0F0F)+0x01010101)&0x10101010;
  459.         v= *(uint32_t*)(&buf[i+4]);
  460.         acc+=(((v & (v>>4))&0x0F0F0F0F)+0x01010101)&0x10101010;
  461.         v= *(uint32_t*)(&buf[i+8]);
  462.         acc+=(((v & (v>>4))&0x0F0F0F0F)+0x01010101)&0x10101010;
  463.         v= *(uint32_t*)(&buf[i+12]);
  464.         acc+=(((v & (v>>4))&0x0F0F0F0F)+0x01010101)&0x10101010;
  465.         acc>>=4;
  466.         acc+= (acc>>16);
  467.         acc+= (acc>>8);
  468.         ff_count+= acc&0xFF;
  469.     }
  470.     for(; i<size; i++){
  471.         if(buf[i]==0xFF) ff_count++;
  472.     }
  473.     if(ff_count==0) return;
  474.     
  475.     /* skip put bits */
  476.     for(i=0; i<ff_count-3; i+=4)
  477.         put_bits(&s->pb, 32, 0);
  478.     put_bits(&s->pb, (ff_count-i)*8, 0);
  479.     flush_put_bits(&s->pb); 
  480.     for(i=size-1; ff_count; i--){
  481.         int v= buf[i];
  482.         if(v==0xFF){
  483. //printf("%d %dn", i, ff_count);
  484.             buf[i+ff_count]= 0;
  485.             ff_count--;
  486.         }
  487.         buf[i+ff_count]= v;
  488.     }
  489. }
  490. void ff_mjpeg_stuffing(PutBitContext * pbc)
  491. {
  492.     int length;
  493.     length= (-put_bits_count(pbc))&7;
  494.     if(length) put_bits(pbc, length, (1<<length)-1);
  495. }
  496. void mjpeg_picture_trailer(MpegEncContext *s)
  497. {
  498.     ff_mjpeg_stuffing(&s->pb);
  499.     flush_put_bits(&s->pb);
  500.     assert((s->header_bits&7)==0);
  501.     
  502.     escape_FF(s, s->header_bits>>3);
  503.     put_marker(&s->pb, EOI);
  504. }
  505. static inline void mjpeg_encode_dc(MpegEncContext *s, int val,
  506.    uint8_t *huff_size, uint16_t *huff_code)
  507. {
  508.     int mant, nbits;
  509.     if (val == 0) {
  510.         put_bits(&s->pb, huff_size[0], huff_code[0]);
  511.     } else {
  512.         mant = val;
  513.         if (val < 0) {
  514.             val = -val;
  515.             mant--;
  516.         }
  517.         
  518.         nbits= av_log2_16bit(val) + 1;
  519.             
  520.         put_bits(&s->pb, huff_size[nbits], huff_code[nbits]);
  521.         
  522.         put_bits(&s->pb, nbits, mant & ((1 << nbits) - 1));
  523.     }
  524. }
  525. static void encode_block(MpegEncContext *s, DCTELEM *block, int n)
  526. {
  527.     int mant, nbits, code, i, j;
  528.     int component, dc, run, last_index, val;
  529.     MJpegContext *m = s->mjpeg_ctx;
  530.     uint8_t *huff_size_ac;
  531.     uint16_t *huff_code_ac;
  532.     
  533.     /* DC coef */
  534.     component = (n <= 3 ? 0 : n - 4 + 1);
  535.     dc = block[0]; /* overflow is impossible */
  536.     val = dc - s->last_dc[component];
  537.     if (n < 4) {
  538.         mjpeg_encode_dc(s, val, m->huff_size_dc_luminance, m->huff_code_dc_luminance);
  539.         huff_size_ac = m->huff_size_ac_luminance;
  540.         huff_code_ac = m->huff_code_ac_luminance;
  541.     } else {
  542.         mjpeg_encode_dc(s, val, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
  543.         huff_size_ac = m->huff_size_ac_chrominance;
  544.         huff_code_ac = m->huff_code_ac_chrominance;
  545.     }
  546.     s->last_dc[component] = dc;
  547.     
  548.     /* AC coefs */
  549.     
  550.     run = 0;
  551.     last_index = s->block_last_index[n];
  552.     for(i=1;i<=last_index;i++) {
  553.         j = s->intra_scantable.permutated[i];
  554.         val = block[j];
  555.         if (val == 0) {
  556.             run++;
  557.         } else {
  558.             while (run >= 16) {
  559.                 put_bits(&s->pb, huff_size_ac[0xf0], huff_code_ac[0xf0]);
  560.                 run -= 16;
  561.             }
  562.             mant = val;
  563.             if (val < 0) {
  564.                 val = -val;
  565.                 mant--;
  566.             }
  567.             
  568.             nbits= av_log2(val) + 1;
  569.             code = (run << 4) | nbits;
  570.             put_bits(&s->pb, huff_size_ac[code], huff_code_ac[code]);
  571.         
  572.             put_bits(&s->pb, nbits, mant & ((1 << nbits) - 1));
  573.             run = 0;
  574.         }
  575.     }
  576.     /* output EOB only if not already 64 values */
  577.     if (last_index < 63 || run != 0)
  578.         put_bits(&s->pb, huff_size_ac[0], huff_code_ac[0]);
  579. }
  580. void mjpeg_encode_mb(MpegEncContext *s, 
  581.                      DCTELEM block[6][64])
  582. {
  583.     int i;
  584.     for(i=0;i<6;i++) {
  585.         encode_block(s, block[i], i);
  586.     }
  587. }
  588. static int encode_picture_lossless(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  589.     MpegEncContext * const s = avctx->priv_data;
  590.     MJpegContext * const m = s->mjpeg_ctx;
  591.     AVFrame *pict = data;
  592.     const int width= s->width;
  593.     const int height= s->height;
  594.     AVFrame * const p= (AVFrame*)&s->current_picture;
  595.     const int predictor= avctx->prediction_method+1;
  596.     init_put_bits(&s->pb, buf, buf_size);
  597.     *p = *pict;
  598.     p->pict_type= FF_I_TYPE;
  599.     p->key_frame= 1;
  600.     
  601.     mjpeg_picture_header(s);
  602.     s->header_bits= put_bits_count(&s->pb);
  603.     
  604.     if(avctx->pix_fmt == PIX_FMT_RGBA32){
  605.         int x, y, i;
  606.         const int linesize= p->linesize[0];
  607.         uint16_t (*buffer)[4]= (void *) s->rd_scratchpad;
  608.         int left[3], top[3], topleft[3];
  609.         for(i=0; i<3; i++){
  610.             buffer[0][i]= 1 << (9 - 1);
  611.         }
  612.         for(y = 0; y < height; y++) {
  613.             const int modified_predictor= y ? predictor : 1;
  614.             uint8_t *ptr = p->data[0] + (linesize * y);
  615.             if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < width*3*4){
  616.                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too largen");
  617.                 return -1;
  618.             }
  619.             
  620.             for(i=0; i<3; i++){
  621.                 top[i]= left[i]= topleft[i]= buffer[0][i];
  622.             }
  623.             for(x = 0; x < width; x++) {
  624.                 buffer[x][1] = ptr[4*x+0] - ptr[4*x+1] + 0x100;
  625.                 buffer[x][2] = ptr[4*x+2] - ptr[4*x+1] + 0x100;
  626.                 buffer[x][0] = (ptr[4*x+0] + 2*ptr[4*x+1] + ptr[4*x+2])>>2;
  627.                 for(i=0;i<3;i++) {
  628.                     int pred, diff;
  629.                     PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
  630.                         
  631.                     topleft[i]= top[i];
  632.                     top[i]= buffer[x+1][i];
  633.                     
  634.                     left[i]= buffer[x][i];
  635.                     diff= ((left[i] - pred + 0x100)&0x1FF) - 0x100;
  636.                     
  637.                     if(i==0)
  638.                         mjpeg_encode_dc(s, diff, m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
  639.                     else
  640.                         mjpeg_encode_dc(s, diff, m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
  641.                 }
  642.             }
  643.         }
  644.     }else{
  645.         int mb_x, mb_y, i;
  646.         const int mb_width  = (width  + s->mjpeg_hsample[0] - 1) / s->mjpeg_hsample[0];
  647.         const int mb_height = (height + s->mjpeg_vsample[0] - 1) / s->mjpeg_vsample[0];
  648.         
  649.         for(mb_y = 0; mb_y < mb_height; mb_y++) {
  650.             if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < mb_width * 4 * 3 * s->mjpeg_hsample[0] * s->mjpeg_vsample[0]){
  651.                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too largen");
  652.                 return -1;
  653.             }
  654.             for(mb_x = 0; mb_x < mb_width; mb_x++) {
  655.                 if(mb_x==0 || mb_y==0){
  656.                     for(i=0;i<3;i++) {
  657.                         uint8_t *ptr;
  658.                         int x, y, h, v, linesize;
  659.                         h = s->mjpeg_hsample[i];
  660.                         v = s->mjpeg_vsample[i];
  661.                         linesize= p->linesize[i];
  662.                         for(y=0; y<v; y++){
  663.                             for(x=0; x<h; x++){
  664.                                 int pred;
  665.                                 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  666.                                 if(y==0 && mb_y==0){
  667.                                     if(x==0 && mb_x==0){
  668.                                         pred= 128;
  669.                                     }else{
  670.                                         pred= ptr[-1];
  671.                                     }
  672.                                 }else{
  673.                                     if(x==0 && mb_x==0){
  674.                                         pred= ptr[-linesize];
  675.                                     }else{
  676.                                         PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  677.                                     }
  678.                                 }
  679.                                 
  680.                                 if(i==0)
  681.                                     mjpeg_encode_dc(s, (int8_t)(*ptr - pred), m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
  682.                                 else
  683.                                     mjpeg_encode_dc(s, (int8_t)(*ptr - pred), m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
  684.                             }
  685.                         }
  686.                     }
  687.                 }else{
  688.                     for(i=0;i<3;i++) {
  689.                         uint8_t *ptr;
  690.                         int x, y, h, v, linesize;
  691.                         h = s->mjpeg_hsample[i];
  692.                         v = s->mjpeg_vsample[i];
  693.                         linesize= p->linesize[i];
  694.                              
  695.                         for(y=0; y<v; y++){
  696.                             for(x=0; x<h; x++){
  697.                                 int pred;
  698.                                 ptr = p->data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  699. //printf("%d %d %d %d %8Xn", mb_x, mb_y, x, y, ptr); 
  700.                                 PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  701.                                 if(i==0)
  702.                                     mjpeg_encode_dc(s, (int8_t)(*ptr - pred), m->huff_size_dc_luminance, m->huff_code_dc_luminance); //FIXME ugly
  703.                                 else
  704.                                     mjpeg_encode_dc(s, (int8_t)(*ptr - pred), m->huff_size_dc_chrominance, m->huff_code_dc_chrominance);
  705.                             }
  706.                         }
  707.                     }
  708.                 }
  709.             }
  710.         }
  711.     }
  712.     emms_c();
  713.     
  714.     mjpeg_picture_trailer(s);
  715.     s->picture_number++;
  716.     flush_put_bits(&s->pb);
  717.     return pbBufPtr(&s->pb) - s->pb.buf;
  718. //    return (put_bits_count(&f->pb)+7)/8;
  719. }
  720. #endif //CONFIG_ENCODERS
  721. /******************************************/
  722. /* decoding */
  723. #define MAX_COMPONENTS 4
  724. typedef struct MJpegDecodeContext {
  725.     AVCodecContext *avctx;
  726.     GetBitContext gb;
  727.     int mpeg_enc_ctx_allocated; /* true if decoding context allocated */
  728.     int start_code; /* current start code */
  729.     int buffer_size;
  730.     uint8_t *buffer;
  731.     int16_t quant_matrixes[4][64];
  732.     VLC vlcs[2][4];
  733.     int qscale[4];      ///< quantizer scale calculated from quant_matrixes
  734.     int org_height;  /* size given at codec init */
  735.     int first_picture;    /* true if decoding first picture */
  736.     int interlaced;     /* true if interlaced */
  737.     int bottom_field;   /* true if bottom field */
  738.     int lossless;
  739.     int rgb;
  740.     int rct;            /* standard rct */  
  741.     int pegasus_rct;    /* pegasus reversible colorspace transform */  
  742.     int bits;           /* bits per component */
  743.     int width, height;
  744.     int mb_width, mb_height;
  745.     int nb_components;
  746.     int component_id[MAX_COMPONENTS];
  747.     int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */
  748.     int v_count[MAX_COMPONENTS];
  749.     int comp_index[MAX_COMPONENTS];
  750.     int dc_index[MAX_COMPONENTS];
  751.     int ac_index[MAX_COMPONENTS];
  752.     int nb_blocks[MAX_COMPONENTS];
  753.     int h_scount[MAX_COMPONENTS];
  754.     int v_scount[MAX_COMPONENTS];
  755.     int h_max, v_max; /* maximum h and v counts */
  756.     int quant_index[4];   /* quant table index for each component */
  757.     int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */
  758.     AVFrame picture; /* picture structure */
  759.     int linesize[MAX_COMPONENTS];                   ///< linesize << interlaced
  760.     int8_t *qscale_table;
  761.     DCTELEM block[64] __align8;
  762.     ScanTable scantable;
  763.     void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  764.     int restart_interval;
  765.     int restart_count;
  766.     int buggy_avid;
  767.     int cs_itu601;
  768.     int interlace_polarity;
  769.     int mjpb_skiptosod;
  770. } MJpegDecodeContext;
  771. static int mjpeg_decode_dht(MJpegDecodeContext *s);
  772. static int build_vlc(VLC *vlc, const uint8_t *bits_table, const uint8_t *val_table, 
  773.                       int nb_codes, int use_static)
  774. {
  775.     uint8_t huff_size[256];
  776.     uint16_t huff_code[256];
  777.     memset(huff_size, 0, sizeof(huff_size));
  778.     build_huffman_codes(huff_size, huff_code, bits_table, val_table);
  779.     
  780.     return init_vlc(vlc, 9, nb_codes, huff_size, 1, 1, huff_code, 2, 2, use_static);
  781. }
  782. static int mjpeg_decode_init(AVCodecContext *avctx)
  783. {
  784.     MJpegDecodeContext *s = avctx->priv_data;
  785.     MpegEncContext s2;
  786.     memset(s, 0, sizeof(MJpegDecodeContext));
  787.     s->avctx = avctx;
  788.     /* ugly way to get the idct & scantable FIXME */
  789.     memset(&s2, 0, sizeof(MpegEncContext));
  790.     s2.avctx= avctx;
  791. //    s2->out_format = FMT_MJPEG;
  792.     dsputil_init(&s2.dsp, avctx);
  793.     DCT_common_init(&s2);
  794.     s->scantable= s2.intra_scantable;
  795.     s->idct_put= s2.dsp.idct_put;
  796.     s->mpeg_enc_ctx_allocated = 0;
  797.     s->buffer_size = 0;
  798.     s->buffer = NULL;
  799.     s->start_code = -1;
  800.     s->first_picture = 1;
  801.     s->org_height = avctx->coded_height;
  802.     
  803.     build_vlc(&s->vlcs[0][0], bits_dc_luminance, val_dc_luminance, 12, 0);
  804.     build_vlc(&s->vlcs[0][1], bits_dc_chrominance, val_dc_chrominance, 12, 0);
  805.     build_vlc(&s->vlcs[1][0], bits_ac_luminance, val_ac_luminance, 251, 0);
  806.     build_vlc(&s->vlcs[1][1], bits_ac_chrominance, val_ac_chrominance, 251, 0);
  807.     if (avctx->flags & CODEC_FLAG_EXTERN_HUFF)
  808.     {
  809. av_log(avctx, AV_LOG_INFO, "mjpeg: using external huffman tablen");
  810. init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
  811. mjpeg_decode_dht(s);
  812. /* should check for error - but dunno */
  813.     }
  814.     return 0;
  815. }
  816. /**
  817.  * finds the end of the current frame in the bitstream.
  818.  * @return the position of the first byte of the next frame, or -1
  819.  */
  820. static int find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
  821.     int vop_found, i;
  822.     uint16_t state;
  823.     
  824.     vop_found= pc->frame_start_found;
  825.     state= pc->state;
  826.     
  827.     i=0;
  828.     if(!vop_found){
  829.         for(i=0; i<buf_size; i++){
  830.             state= (state<<8) | buf[i];
  831.             if(state == 0xFFD8){
  832.                 i++;
  833.                 vop_found=1;
  834.                 break;
  835.             }
  836.         }
  837.     }
  838.     if(vop_found){
  839.         /* EOF considered as end of frame */
  840.         if (buf_size == 0)
  841.             return 0;
  842.         for(; i<buf_size; i++){
  843.             state= (state<<8) | buf[i];
  844.             if(state == 0xFFD8){
  845.                 pc->frame_start_found=0;
  846.                 pc->state=0; 
  847.                 return i-1;
  848.             }
  849.         }
  850.     }
  851.     pc->frame_start_found= vop_found;
  852.     pc->state= state;
  853.     return END_NOT_FOUND;
  854. }
  855. static int jpeg_parse(AVCodecParserContext *s,
  856.                            AVCodecContext *avctx,
  857.                            uint8_t **poutbuf, int *poutbuf_size, 
  858.                            const uint8_t *buf, int buf_size)
  859. {
  860.     ParseContext *pc = s->priv_data;
  861.     int next;
  862.     
  863.     next= find_frame_end(pc, buf, buf_size);
  864.     if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
  865.         *poutbuf = NULL;
  866.         *poutbuf_size = 0;
  867.         return buf_size;
  868.     }
  869.     *poutbuf = (uint8_t *)buf;
  870.     *poutbuf_size = buf_size;
  871.     return next;
  872. }
  873. /* quantize tables */
  874. static int mjpeg_decode_dqt(MJpegDecodeContext *s)
  875. {
  876.     int len, index, i, j;
  877.     
  878.     len = get_bits(&s->gb, 16) - 2;
  879.     while (len >= 65) {
  880.         /* only 8 bit precision handled */
  881.         if (get_bits(&s->gb, 4) != 0)
  882. {
  883.     dprintf("dqt: 16bit precisionn");
  884.             return -1;
  885. }
  886.         index = get_bits(&s->gb, 4);
  887.         if (index >= 4)
  888.             return -1;
  889.         dprintf("index=%dn", index);
  890.         /* read quant table */
  891.         for(i=0;i<64;i++) {
  892.             j = s->scantable.permutated[i];
  893.     s->quant_matrixes[index][j] = get_bits(&s->gb, 8);
  894.         }
  895.         //XXX FIXME finetune, and perhaps add dc too
  896.         s->qscale[index]= FFMAX(
  897.             s->quant_matrixes[index][s->scantable.permutated[1]],
  898.             s->quant_matrixes[index][s->scantable.permutated[8]]) >> 1;
  899. dprintf("qscale[%d]: %dn", index, s->qscale[index]);
  900.         len -= 65;
  901.     }
  902.     
  903.     return 0;
  904. }
  905. /* decode huffman tables and build VLC decoders */
  906. static int mjpeg_decode_dht(MJpegDecodeContext *s)
  907. {
  908.     int len, index, i, class, n, v, code_max;
  909.     uint8_t bits_table[17];
  910.     uint8_t val_table[256];
  911.     
  912.     len = get_bits(&s->gb, 16) - 2;
  913.     while (len > 0) {
  914.         if (len < 17)
  915.             return -1;
  916.         class = get_bits(&s->gb, 4);
  917.         if (class >= 2)
  918.             return -1;
  919.         index = get_bits(&s->gb, 4);
  920.         if (index >= 4)
  921.             return -1;
  922.         n = 0;
  923.         for(i=1;i<=16;i++) {
  924.             bits_table[i] = get_bits(&s->gb, 8);
  925.             n += bits_table[i];
  926.         }
  927.         len -= 17;
  928.         if (len < n || n > 256)
  929.             return -1;
  930.         code_max = 0;
  931.         for(i=0;i<n;i++) {
  932.             v = get_bits(&s->gb, 8);
  933.             if (v > code_max)
  934.                 code_max = v;
  935.             val_table[i] = v;
  936.         }
  937.         len -= n;
  938.         /* build VLC and flush previous vlc if present */
  939.         free_vlc(&s->vlcs[class][index]);
  940.         dprintf("class=%d index=%d nb_codes=%dn",
  941.                class, index, code_max + 1);
  942.         if(build_vlc(&s->vlcs[class][index], bits_table, val_table, code_max + 1, 0) < 0){
  943.             return -1;
  944.         }
  945.     }
  946.     return 0;
  947. }
  948. static int mjpeg_decode_sof(MJpegDecodeContext *s)
  949. {
  950.     int len, nb_components, i, width, height;
  951.     /* XXX: verify len field validity */
  952.     len = get_bits(&s->gb, 16);
  953.     s->bits= get_bits(&s->gb, 8);
  954.     
  955.     if(s->pegasus_rct) s->bits=9;  
  956.     if(s->bits==9 && !s->pegasus_rct) s->rct=1;    //FIXME ugly
  957.     if (s->bits != 8 && !s->lossless){
  958.         av_log(s->avctx, AV_LOG_ERROR, "only 8 bits/component acceptedn");
  959.         return -1;
  960.     }
  961.     height = get_bits(&s->gb, 16);
  962.     width = get_bits(&s->gb, 16);
  963.     
  964.     dprintf("sof0: picture: %dx%dn", width, height);
  965.     if(avcodec_check_dimensions(s->avctx, width, height))
  966.         return -1;
  967.     nb_components = get_bits(&s->gb, 8);
  968.     if (nb_components <= 0 ||
  969.         nb_components > MAX_COMPONENTS)
  970.         return -1;
  971.     s->nb_components = nb_components;
  972.     s->h_max = 1;
  973.     s->v_max = 1;
  974.     for(i=0;i<nb_components;i++) {
  975.         /* component id */
  976.         s->component_id[i] = get_bits(&s->gb, 8) - 1;
  977.         s->h_count[i] = get_bits(&s->gb, 4);
  978.         s->v_count[i] = get_bits(&s->gb, 4);
  979.         /* compute hmax and vmax (only used in interleaved case) */
  980.         if (s->h_count[i] > s->h_max)
  981.             s->h_max = s->h_count[i];
  982.         if (s->v_count[i] > s->v_max)
  983.             s->v_max = s->v_count[i];
  984.         s->quant_index[i] = get_bits(&s->gb, 8);
  985.         if (s->quant_index[i] >= 4)
  986.             return -1;
  987.         dprintf("component %d %d:%d id: %d quant:%dn", i, s->h_count[i],
  988.     s->v_count[i], s->component_id[i], s->quant_index[i]);
  989.     }
  990.     
  991.     if(s->v_max==1 && s->h_max==1 && s->lossless==1) s->rgb=1;
  992.     /* if different size, realloc/alloc picture */
  993.     /* XXX: also check h_count and v_count */
  994.     if (width != s->width || height != s->height) {
  995.         av_freep(&s->qscale_table);
  996.             
  997.         s->width = width;
  998.         s->height = height;
  999.         avcodec_set_dimensions(s->avctx, width, height);
  1000.         /* test interlaced mode */
  1001.         if (s->first_picture &&
  1002.             s->org_height != 0 &&
  1003.             s->height < ((s->org_height * 3) / 4)) {
  1004.             s->interlaced = 1;
  1005. //     s->bottom_field = (s->interlace_polarity) ? 1 : 0;
  1006.             s->bottom_field = 0;
  1007.             s->avctx->height *= 2;
  1008.         }
  1009.         s->qscale_table= av_mallocz((s->width+15)/16);
  1010.         s->first_picture = 0;
  1011.     }
  1012.     
  1013.     if(s->interlaced && s->bottom_field)
  1014.         return 0;
  1015.  
  1016.     /* XXX: not complete test ! */
  1017.     switch((s->h_count[0] << 4) | s->v_count[0]) {
  1018.     case 0x11:
  1019.         if(s->rgb){
  1020.             s->avctx->pix_fmt = PIX_FMT_RGBA32;
  1021.         }else if(s->nb_components==3)
  1022.             s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P;
  1023.         else
  1024.             s->avctx->pix_fmt = PIX_FMT_GRAY8;
  1025.         break;
  1026.     case 0x21:
  1027.         s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV422P : PIX_FMT_YUVJ422P;
  1028.         break;
  1029.     default:
  1030.     case 0x22:
  1031.         s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420P;
  1032.         break;
  1033.     }
  1034.     if(s->picture.data[0])
  1035.         s->avctx->release_buffer(s->avctx, &s->picture);
  1036.     s->picture.reference= 0;
  1037.     if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){
  1038.         av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failedn");
  1039.         return -1;
  1040.     }
  1041.     s->picture.pict_type= I_TYPE;
  1042.     s->picture.key_frame= 1;
  1043.     
  1044.     for(i=0; i<3; i++){
  1045.         s->linesize[i]= s->picture.linesize[i] << s->interlaced;
  1046.     }
  1047. //    printf("%d %d %d %d %d %dn", s->width, s->height, s->linesize[0], s->linesize[1], s->interlaced, s->avctx->height);
  1048.     
  1049.     if (len != (8+(3*nb_components)))
  1050.     {
  1051. dprintf("decode_sof0: error, len(%d) mismatchn", len);
  1052.     }
  1053.     
  1054.     return 0;
  1055. }
  1056. static inline int mjpeg_decode_dc(MJpegDecodeContext *s, int dc_index)
  1057. {
  1058.     int code;
  1059.     code = get_vlc2(&s->gb, s->vlcs[0][dc_index].table, 9, 2);
  1060.     if (code < 0)
  1061.     {
  1062. dprintf("mjpeg_decode_dc: bad vlc: %d:%d (%p)n", 0, dc_index,
  1063.                 &s->vlcs[0][dc_index]);
  1064.         return 0xffff;
  1065.     }
  1066.     if(code)
  1067.         return get_xbits(&s->gb, code);
  1068.     else
  1069.         return 0;
  1070. }
  1071. /* decode block and dequantize */
  1072. static int decode_block(MJpegDecodeContext *s, DCTELEM *block, 
  1073.                         int component, int dc_index, int ac_index, int quant_index)
  1074. {
  1075.     int code, i, j, level, val;
  1076.     VLC *ac_vlc;
  1077.     int16_t *quant_matrix;
  1078.     /* DC coef */
  1079.     val = mjpeg_decode_dc(s, dc_index);
  1080.     if (val == 0xffff) {
  1081.         dprintf("error dcn");
  1082.         return -1;
  1083.     }
  1084.     quant_matrix = s->quant_matrixes[quant_index];
  1085.     val = val * quant_matrix[0] + s->last_dc[component];
  1086.     s->last_dc[component] = val;
  1087.     block[0] = val;
  1088.     /* AC coefs */
  1089.     ac_vlc = &s->vlcs[1][ac_index];
  1090.     i = 1;
  1091.     for(;;) {
  1092. code = get_vlc2(&s->gb, s->vlcs[1][ac_index].table, 9, 2);
  1093.         if (code < 0) {
  1094.             dprintf("error acn");
  1095.             return -1;
  1096.         }
  1097.         /* EOB */
  1098.         if (code == 0)
  1099.             break;
  1100.         if (code == 0xf0) {
  1101.             i += 16;
  1102.         } else {
  1103.             level = get_xbits(&s->gb, code & 0xf);
  1104.             i += code >> 4;
  1105.             if (i >= 64) {
  1106.                 dprintf("error count: %dn", i);
  1107.                 return -1;
  1108.             }
  1109.             j = s->scantable.permutated[i];
  1110.             block[j] = level * quant_matrix[j];
  1111.             i++;
  1112.             if (i >= 64)
  1113.                 break;
  1114.         }
  1115.     }
  1116.     return 0;
  1117. }
  1118. static int ljpeg_decode_rgb_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1119.     int i, mb_x, mb_y;
  1120.     uint16_t buffer[32768][4];
  1121.     int left[3], top[3], topleft[3];
  1122.     const int linesize= s->linesize[0];
  1123.     const int mask= (1<<s->bits)-1;
  1124.     
  1125.     if((unsigned)s->mb_width > 32768) //dynamic alloc
  1126.         return -1;
  1127.     
  1128.     for(i=0; i<3; i++){
  1129.         buffer[0][i]= 1 << (s->bits + point_transform - 1);
  1130.     }
  1131.     for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1132.         const int modified_predictor= mb_y ? predictor : 1;
  1133.         uint8_t *ptr = s->picture.data[0] + (linesize * mb_y);
  1134.         if (s->interlaced && s->bottom_field)
  1135.             ptr += linesize >> 1;
  1136.         for(i=0; i<3; i++){
  1137.             top[i]= left[i]= topleft[i]= buffer[0][i];
  1138.         }
  1139.         for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1140.             if (s->restart_interval && !s->restart_count)
  1141.                 s->restart_count = s->restart_interval;
  1142.             for(i=0;i<3;i++) {
  1143.                 int pred;
  1144.                 topleft[i]= top[i];
  1145.                 top[i]= buffer[mb_x][i];
  1146.                 PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
  1147.                 
  1148.                 left[i]= 
  1149.                 buffer[mb_x][i]= mask & (pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform));
  1150.             }
  1151.             if (s->restart_interval && !--s->restart_count) {
  1152.                 align_get_bits(&s->gb);
  1153.                 skip_bits(&s->gb, 16); /* skip RSTn */
  1154.             }
  1155.         }
  1156.         if(s->rct){
  1157.             for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1158.                 ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2] - 0x200)>>2);
  1159.                 ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1160.                 ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1161.             }
  1162.         }else if(s->pegasus_rct){
  1163.             for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1164.                 ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2])>>2);
  1165.                 ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1166.                 ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1167.             }
  1168.         }else{
  1169.             for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1170.                 ptr[4*mb_x+0] = buffer[mb_x][0];
  1171.                 ptr[4*mb_x+1] = buffer[mb_x][1];
  1172.                 ptr[4*mb_x+2] = buffer[mb_x][2];
  1173.             }
  1174.         }
  1175.     }
  1176.     return 0;
  1177. }
  1178. static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1179.     int i, mb_x, mb_y;
  1180.     const int nb_components=3;
  1181.     for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1182.         for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1183.             if (s->restart_interval && !s->restart_count)
  1184.                 s->restart_count = s->restart_interval;
  1185.             if(mb_x==0 || mb_y==0 || s->interlaced){
  1186.                 for(i=0;i<nb_components;i++) {
  1187.                     uint8_t *ptr;
  1188.                     int n, h, v, x, y, c, j, linesize;
  1189.                     n = s->nb_blocks[i];
  1190.                     c = s->comp_index[i];
  1191.                     h = s->h_scount[i];
  1192.                     v = s->v_scount[i];
  1193.                     x = 0;
  1194.                     y = 0;
  1195.                     linesize= s->linesize[c];
  1196.                     
  1197.                     for(j=0; j<n; j++) {
  1198.                         int pred;
  1199.                         ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1200.                         if(y==0 && mb_y==0){
  1201.                             if(x==0 && mb_x==0){
  1202.                                 pred= 128 << point_transform;
  1203.                             }else{
  1204.                                 pred= ptr[-1];
  1205.                             }
  1206.                         }else{
  1207.                             if(x==0 && mb_x==0){
  1208.                                 pred= ptr[-linesize];
  1209.                             }else{
  1210.                                 PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1211.                             }
  1212.                         }
  1213.                         
  1214.                         if (s->interlaced && s->bottom_field)
  1215.                             ptr += linesize >> 1;
  1216.                         *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1217.                         if (++x == h) {
  1218.                             x = 0;
  1219.                             y++;
  1220.                         }
  1221.                     }
  1222.                 }
  1223.             }else{
  1224.                 for(i=0;i<nb_components;i++) {
  1225.                     uint8_t *ptr;
  1226.                     int n, h, v, x, y, c, j, linesize;
  1227.                     n = s->nb_blocks[i];
  1228.                     c = s->comp_index[i];
  1229.                     h = s->h_scount[i];
  1230.                     v = s->v_scount[i];
  1231.                     x = 0;
  1232.                     y = 0;
  1233.                     linesize= s->linesize[c];
  1234.                     
  1235.                     for(j=0; j<n; j++) {
  1236.                         int pred;
  1237.                         ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1238.                         PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1239.                         *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1240.                         if (++x == h) {
  1241.                             x = 0;
  1242.                             y++;
  1243.                         }
  1244.                     }
  1245.                 }
  1246.             }
  1247.             if (s->restart_interval && !--s->restart_count) {
  1248.                 align_get_bits(&s->gb);
  1249.                 skip_bits(&s->gb, 16); /* skip RSTn */
  1250.             }
  1251.         }
  1252.     }
  1253.     return 0;
  1254. }
  1255. static int mjpeg_decode_scan(MJpegDecodeContext *s){
  1256.     int i, mb_x, mb_y;
  1257.     const int nb_components=3;
  1258.     for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1259.         for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1260.             if (s->restart_interval && !s->restart_count)
  1261.                 s->restart_count = s->restart_interval;
  1262.             for(i=0;i<nb_components;i++) {
  1263.                 uint8_t *ptr;
  1264.                 int n, h, v, x, y, c, j;
  1265.                 n = s->nb_blocks[i];
  1266.                 c = s->comp_index[i];
  1267.                 h = s->h_scount[i];
  1268.                 v = s->v_scount[i];
  1269.                 x = 0;
  1270.                 y = 0;
  1271.                 for(j=0;j<n;j++) {
  1272.                     memset(s->block, 0, sizeof(s->block));
  1273.                     if (decode_block(s, s->block, i, 
  1274.                                      s->dc_index[i], s->ac_index[i], 
  1275.                                      s->quant_index[c]) < 0) {
  1276.                         dprintf("error y=%d x=%dn", mb_y, mb_x);
  1277.                         return -1;
  1278.                     }
  1279. //     dprintf("mb: %d %d processedn", mb_y, mb_x);
  1280.                     ptr = s->picture.data[c] + 
  1281.                         (((s->linesize[c] * (v * mb_y + y) * 8) + 
  1282.                         (h * mb_x + x) * 8) >> s->avctx->lowres);
  1283.                     if (s->interlaced && s->bottom_field)
  1284.                         ptr += s->linesize[c] >> 1;
  1285. //av_log(NULL, AV_LOG_DEBUG, "%d %d %d %d %d %d %d %d n", mb_x, mb_y, x, y, c, s->bottom_field, (v * mb_y + y) * 8, (h * mb_x + x) * 8);
  1286.                     s->idct_put(ptr, s->linesize[c], s->block);
  1287.                     if (++x == h) {
  1288.                         x = 0;
  1289.                         y++;
  1290.                     }
  1291.                 }
  1292.             }
  1293.             /* (< 1350) buggy workaround for Spectralfan.mov, should be fixed */
  1294.             if (s->restart_interval && (s->restart_interval < 1350) &&
  1295.                 !--s->restart_count) {
  1296.                 align_get_bits(&s->gb);
  1297.                 skip_bits(&s->gb, 16); /* skip RSTn */
  1298.                 for (i=0; i<nb_components; i++) /* reset dc */
  1299.                     s->last_dc[i] = 1024;
  1300.             }
  1301.         }
  1302.     }
  1303.     return 0;
  1304. }
  1305. static int mjpeg_decode_sos(MJpegDecodeContext *s)
  1306. {
  1307.     int len, nb_components, i, h, v, predictor, point_transform;
  1308.     int vmax, hmax, index, id;
  1309.     const int block_size= s->lossless ? 1 : 8;
  1310.     /* XXX: verify len field validity */
  1311.     len = get_bits(&s->gb, 16);
  1312.     nb_components = get_bits(&s->gb, 8);
  1313.     if (len != 6+2*nb_components)
  1314.     {
  1315. dprintf("decode_sos: invalid len (%d)n", len);
  1316. return -1;
  1317.     }
  1318.     /* XXX: only interleaved scan accepted */
  1319.     if (nb_components != s->nb_components)
  1320.     {
  1321. dprintf("decode_sos: components(%d) mismatchn", nb_components);
  1322.         return -1;
  1323.     }
  1324.     vmax = 0;
  1325.     hmax = 0;
  1326.     for(i=0;i<nb_components;i++) {
  1327.         id = get_bits(&s->gb, 8) - 1;
  1328. dprintf("component: %dn", id);
  1329.         /* find component index */
  1330.         for(index=0;index<s->nb_components;index++)
  1331.             if (id == s->component_id[index])
  1332.                 break;
  1333.         if (index == s->nb_components)
  1334. {
  1335.     dprintf("decode_sos: index(%d) out of componentsn", index);
  1336.             return -1;
  1337. }
  1338.         s->comp_index[i] = index;
  1339.         s->nb_blocks[i] = s->h_count[index] * s->v_count[index];
  1340.         s->h_scount[i] = s->h_count[index];
  1341.         s->v_scount[i] = s->v_count[index];
  1342.         s->dc_index[i] = get_bits(&s->gb, 4);
  1343.         s->ac_index[i] = get_bits(&s->gb, 4);
  1344. if (s->dc_index[i] <  0 || s->ac_index[i] < 0 ||
  1345.     s->dc_index[i] >= 4 || s->ac_index[i] >= 4)
  1346.     goto out_of_range;
  1347. #if 0 //buggy
  1348. switch(s->start_code)
  1349. {
  1350.     case SOF0:
  1351. if (dc_index[i] > 1 || ac_index[i] > 1)
  1352.     goto out_of_range;
  1353. break;
  1354.     case SOF1:
  1355.     case SOF2:
  1356. if (dc_index[i] > 3 || ac_index[i] > 3)
  1357.     goto out_of_range;
  1358. break;
  1359.     case SOF3:
  1360. if (dc_index[i] > 3 || ac_index[i] != 0)
  1361.     goto out_of_range;
  1362. break;
  1363. }
  1364. #endif
  1365.     }
  1366.     predictor= get_bits(&s->gb, 8); /* lossless predictor or start of spectral (Ss) */
  1367.     skip_bits(&s->gb, 8); /* Se */
  1368.     skip_bits(&s->gb, 4); /* Ah */
  1369.     point_transform= get_bits(&s->gb, 4); /* Al */
  1370.     for(i=0;i<nb_components;i++) 
  1371.         s->last_dc[i] = 1024;
  1372.     if (nb_components > 1) {
  1373.         /* interleaved stream */
  1374.         s->mb_width  = (s->width  + s->h_max * block_size - 1) / (s->h_max * block_size);
  1375.         s->mb_height = (s->height + s->v_max * block_size - 1) / (s->v_max * block_size);
  1376.     } else {
  1377.         h = s->h_max / s->h_scount[s->comp_index[0]];
  1378.         v = s->v_max / s->v_scount[s->comp_index[0]];
  1379.         s->mb_width  = (s->width  + h * block_size - 1) / (h * block_size);
  1380.         s->mb_height = (s->height + v * block_size - 1) / (v * block_size);
  1381.         s->nb_blocks[0] = 1;
  1382.         s->h_scount[0] = 1;
  1383.         s->v_scount[0] = 1;
  1384.     }
  1385.     if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1386.         av_log(s->avctx, AV_LOG_DEBUG, "%s %s p:%d >>:%dn", s->lossless ? "lossless" : "sequencial DCT", s->rgb ? "RGB" : "", predictor, point_transform);
  1387.     
  1388.     /* mjpeg-b can have padding bytes between sos and image data, skip them */
  1389.     for (i = s->mjpb_skiptosod; i > 0; i--)
  1390.         skip_bits(&s->gb, 8);
  1391.     if(s->lossless){
  1392.             if(s->rgb){
  1393.                 if(ljpeg_decode_rgb_scan(s, predictor, point_transform) < 0)
  1394.                     return -1;
  1395.             }else{
  1396.                 if(ljpeg_decode_yuv_scan(s, predictor, point_transform) < 0)
  1397.                     return -1;
  1398.             }
  1399.     }else{
  1400.         if(mjpeg_decode_scan(s) < 0)
  1401.             return -1;
  1402.     }
  1403.     emms_c();
  1404.     return 0;
  1405.  out_of_range:
  1406.     dprintf("decode_sos: ac/dc index out of rangen");
  1407.     return -1;
  1408. }
  1409. static int mjpeg_decode_dri(MJpegDecodeContext *s)
  1410. {
  1411.     if (get_bits(&s->gb, 16) != 4)
  1412. return -1;
  1413.     s->restart_interval = get_bits(&s->gb, 16);
  1414.     s->restart_count = 0;
  1415.     dprintf("restart interval: %dn", s->restart_interval);
  1416.     return 0;
  1417. }
  1418. static int mjpeg_decode_app(MJpegDecodeContext *s)
  1419. {
  1420.     int len, id;
  1421.     len = get_bits(&s->gb, 16);
  1422.     if (len < 5)
  1423. return -1;
  1424.     if(8*len + get_bits_count(&s->gb) > s->gb.size_in_bits)
  1425.         return -1;
  1426.     id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1427.     id = be2me_32(id);
  1428.     len -= 6;
  1429.     if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1430.         av_log(s->avctx, AV_LOG_DEBUG, "APPx %8Xn", id); 
  1431.     }
  1432.     
  1433.     /* buggy AVID, it puts EOI only at every 10th frame */
  1434.     /* also this fourcc is used by non-avid files too, it holds some
  1435.        informations, but it's always present in AVID creates files */
  1436.     if (id == ff_get_fourcc("AVI1"))
  1437.     {
  1438. /* structure:
  1439.     4bytes AVI1
  1440.     1bytes polarity
  1441.     1bytes always zero
  1442.     4bytes field_size
  1443.     4bytes field_size_less_padding
  1444. */
  1445.      s->buggy_avid = 1;
  1446. // if (s->first_picture)
  1447. //     printf("mjpeg: workarounding buggy AVIDn");
  1448. s->interlace_polarity = get_bits(&s->gb, 8);
  1449. #if 0
  1450. skip_bits(&s->gb, 8);
  1451. skip_bits(&s->gb, 32);
  1452. skip_bits(&s->gb, 32);
  1453. len -= 10;
  1454. #endif
  1455. // if (s->interlace_polarity)
  1456. //     printf("mjpeg: interlace polarity: %dn", s->interlace_polarity);
  1457. goto out;
  1458.     }
  1459.     
  1460. //    len -= 2;
  1461.     
  1462.     if (id == ff_get_fourcc("JFIF"))
  1463.     {
  1464. int t_w, t_h, v1, v2;
  1465. skip_bits(&s->gb, 8); /* the trailing zero-byte */
  1466. v1= get_bits(&s->gb, 8);
  1467.         v2= get_bits(&s->gb, 8);
  1468.         skip_bits(&s->gb, 8);
  1469.         s->avctx->sample_aspect_ratio.num= get_bits(&s->gb, 16);
  1470.         s->avctx->sample_aspect_ratio.den= get_bits(&s->gb, 16);
  1471.         if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1472.             av_log(s->avctx, AV_LOG_INFO, "mjpeg: JFIF header found (version: %x.%x) SAR=%d/%dn",
  1473.                 v1, v2,
  1474.                 s->avctx->sample_aspect_ratio.num,
  1475.                 s->avctx->sample_aspect_ratio.den
  1476.             );
  1477. t_w = get_bits(&s->gb, 8);
  1478. t_h = get_bits(&s->gb, 8);
  1479. if (t_w && t_h)
  1480. {
  1481.     /* skip thumbnail */
  1482.     if (len-10-(t_w*t_h*3) > 0)
  1483. len -= t_w*t_h*3;
  1484. }
  1485. len -= 10;
  1486. goto out;
  1487.     }
  1488.     
  1489.     if (id == ff_get_fourcc("Adob") && (get_bits(&s->gb, 8) == 'e'))
  1490.     {
  1491.         if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1492.             av_log(s->avctx, AV_LOG_INFO, "mjpeg: Adobe header foundn");
  1493. skip_bits(&s->gb, 16); /* version */
  1494. skip_bits(&s->gb, 16); /* flags0 */
  1495. skip_bits(&s->gb, 16); /* flags1 */
  1496. skip_bits(&s->gb, 8); /* transform */
  1497. len -= 7;
  1498. goto out;
  1499.     }
  1500.     if (id == ff_get_fourcc("LJIF")){
  1501.         if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1502.             av_log(s->avctx, AV_LOG_INFO, "Pegasus lossless jpeg header foundn");
  1503. skip_bits(&s->gb, 16); /* version ? */
  1504. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1505. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1506. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1507.         switch( get_bits(&s->gb, 8)){
  1508.         case 1:
  1509.             s->rgb= 1;
  1510.             s->pegasus_rct=0;
  1511.             break;
  1512.         case 2:
  1513.             s->rgb= 1;
  1514.             s->pegasus_rct=1;
  1515.             break;
  1516.         default:
  1517.             av_log(s->avctx, AV_LOG_ERROR, "unknown colorspacen");
  1518.         }
  1519.         len -= 9;
  1520.         goto out;
  1521.     }
  1522.     
  1523.     /* Apple MJPEG-A */
  1524.     if ((s->start_code == APP1) && (len > (0x28 - 8)))
  1525.     {
  1526. id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1527. id = be2me_32(id);
  1528. len -= 4;
  1529. if (id == ff_get_fourcc("mjpg")) /* Apple MJPEG-A */
  1530. {
  1531. #if 0
  1532.     skip_bits(&s->gb, 32); /* field size */
  1533.     skip_bits(&s->gb, 32); /* pad field size */
  1534.     skip_bits(&s->gb, 32); /* next off */
  1535.     skip_bits(&s->gb, 32); /* quant off */
  1536.     skip_bits(&s->gb, 32); /* huff off */
  1537.     skip_bits(&s->gb, 32); /* image off */
  1538.     skip_bits(&s->gb, 32); /* scan off */
  1539.     skip_bits(&s->gb, 32); /* data off */
  1540. #endif
  1541.             if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1542. av_log(s->avctx, AV_LOG_INFO, "mjpeg: Apple MJPEG-A header foundn");
  1543. }
  1544.     }
  1545. out:
  1546.     /* slow but needed for extreme adobe jpegs */
  1547.     if (len < 0)
  1548. av_log(s->avctx, AV_LOG_ERROR, "mjpeg: error, decode_app parser read over the endn");
  1549.     while(--len > 0)
  1550. skip_bits(&s->gb, 8);
  1551.     return 0;
  1552. }
  1553. static int mjpeg_decode_com(MJpegDecodeContext *s)
  1554. {
  1555.     int len = get_bits(&s->gb, 16);
  1556.     if (len >= 2 && 8*len - 16 + get_bits_count(&s->gb) <= s->gb.size_in_bits) {
  1557. uint8_t *cbuf = av_malloc(len - 1);
  1558. if (cbuf) {
  1559.     int i;
  1560.     for (i = 0; i < len - 2; i++)
  1561. cbuf[i] = get_bits(&s->gb, 8);
  1562.     if (i > 0 && cbuf[i-1] == 'n')
  1563. cbuf[i-1] = 0;
  1564.     else
  1565. cbuf[i] = 0;
  1566.             if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1567.                 av_log(s->avctx, AV_LOG_INFO, "mjpeg comment: '%s'n", cbuf);
  1568.     /* buggy avid, it puts EOI only at every 10th frame */
  1569.     if (!strcmp(cbuf, "AVID"))
  1570.     {
  1571. s->buggy_avid = 1;
  1572. // if (s->first_picture)
  1573. //     printf("mjpeg: workarounding buggy AVIDn");
  1574.     }
  1575.             else if(!strcmp(cbuf, "CS=ITU601")){
  1576.                 s->cs_itu601= 1;
  1577.             }
  1578.     av_free(cbuf);
  1579. }
  1580.     }
  1581.     return 0;
  1582. }
  1583. #if 0
  1584. static int valid_marker_list[] =
  1585. {
  1586.         /* 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f */
  1587. /* 0 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1588. /* 1 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1589. /* 2 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1590. /* 3 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1591. /* 4 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1592. /* 5 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1593. /* 6 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1594. /* 7 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1595. /* 8 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1596. /* 9 */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1597. /* a */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1598. /* b */    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1599. /* c */    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1600. /* d */    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1601. /* e */    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1602. /* f */    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
  1603. }
  1604. #endif
  1605. /* return the 8 bit start code value and update the search
  1606.    state. Return -1 if no start code found */
  1607. static int find_marker(uint8_t **pbuf_ptr, uint8_t *buf_end)
  1608. {
  1609.     uint8_t *buf_ptr;
  1610.     unsigned int v, v2;
  1611.     int val;
  1612. #ifdef DEBUG
  1613.     int skipped=0;
  1614. #endif
  1615.     buf_ptr = *pbuf_ptr;
  1616.     while (buf_ptr < buf_end) {
  1617.         v = *buf_ptr++;
  1618. v2 = *buf_ptr;
  1619.         if ((v == 0xff) && (v2 >= 0xc0) && (v2 <= 0xfe) && buf_ptr < buf_end) {
  1620.     val = *buf_ptr++;
  1621.     goto found;
  1622.         }
  1623. #ifdef DEBUG
  1624. skipped++;
  1625. #endif
  1626.     }
  1627.     val = -1;
  1628. found:
  1629. #ifdef DEBUG
  1630.     dprintf("find_marker skipped %d bytesn", skipped);
  1631. #endif
  1632.     *pbuf_ptr = buf_ptr;
  1633.     return val;
  1634. }
  1635. static int mjpeg_decode_frame(AVCodecContext *avctx, 
  1636.                               void *data, int *data_size,
  1637.                               uint8_t *buf, int buf_size)
  1638. {
  1639.     MJpegDecodeContext *s = avctx->priv_data;
  1640.     uint8_t *buf_end, *buf_ptr;
  1641.     int start_code;
  1642.     AVFrame *picture = data;
  1643.     buf_ptr = buf;
  1644.     buf_end = buf + buf_size;
  1645.     while (buf_ptr < buf_end) {
  1646.         /* find start next marker */
  1647.         start_code = find_marker(&buf_ptr, buf_end);
  1648. {
  1649.     /* EOF */
  1650.             if (start_code < 0) {
  1651. goto the_end;
  1652.             } else {
  1653.                 dprintf("marker=%x avail_size_in_buf=%dn", start_code, buf_end - buf_ptr);
  1654. if ((buf_end - buf_ptr) > s->buffer_size)
  1655. {
  1656.     av_free(s->buffer);
  1657.     s->buffer_size = buf_end-buf_ptr;
  1658.                     s->buffer = av_malloc(s->buffer_size + FF_INPUT_BUFFER_PADDING_SIZE);
  1659.     dprintf("buffer too small, expanding to %d bytesn",
  1660. s->buffer_size);
  1661. }
  1662. /* unescape buffer of SOS */
  1663. if (start_code == SOS)
  1664. {
  1665.     uint8_t *src = buf_ptr;
  1666.     uint8_t *dst = s->buffer;
  1667.     while (src<buf_end)
  1668.     {
  1669. uint8_t x = *(src++);
  1670. *(dst++) = x;
  1671. if (x == 0xff)
  1672. {
  1673.                             while(src<buf_end && x == 0xff)
  1674.                                 x = *(src++);
  1675.     if (x >= 0xd0 && x <= 0xd7)
  1676. *(dst++) = x;
  1677.     else if (x)
  1678. break;
  1679. }
  1680.     }
  1681.     init_get_bits(&s->gb, s->buffer, (dst - s->buffer)*8);
  1682.     
  1683.     dprintf("escaping removed %d bytesn",
  1684. (buf_end - buf_ptr) - (dst - s->buffer));
  1685. }
  1686. else
  1687.     init_get_bits(&s->gb, buf_ptr, (buf_end - buf_ptr)*8);
  1688. s->start_code = start_code;
  1689.                 if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1690.                     av_log(s->avctx, AV_LOG_DEBUG, "startcode: %Xn", start_code);
  1691.                 }
  1692. /* process markers */
  1693. if (start_code >= 0xd0 && start_code <= 0xd7) {
  1694.     dprintf("restart marker: %dn", start_code&0x0f);
  1695.     /* APP fields */
  1696. } else if (start_code >= APP0 && start_code <= APP15) {
  1697.     mjpeg_decode_app(s);
  1698.     /* Comment */
  1699. } else if (start_code == COM){
  1700.     mjpeg_decode_com(s);
  1701. }
  1702.                 switch(start_code) {
  1703.                 case SOI:
  1704.     s->restart_interval = 0;
  1705.     s->restart_count = 0;
  1706.                     /* nothing to do on SOI */
  1707.                     break;
  1708.                 case DQT:
  1709.                     mjpeg_decode_dqt(s);
  1710.                     break;
  1711.                 case DHT:
  1712.                     if(mjpeg_decode_dht(s) < 0){
  1713.                         av_log(s->avctx, AV_LOG_ERROR, "huffman table decode errorn");
  1714.                         return -1;
  1715.                     }
  1716.                     break;
  1717.                 case SOF0:
  1718.                     s->lossless=0;
  1719.                     if (mjpeg_decode_sof(s) < 0) 
  1720. return -1;
  1721.                     break;
  1722.                 case SOF3:
  1723.                     s->lossless=1;
  1724.                     if (mjpeg_decode_sof(s) < 0) 
  1725. return -1;
  1726.                     break;
  1727. case EOI:
  1728.     if ((s->buggy_avid && !s->interlaced) || s->restart_interval) 
  1729.                         break;
  1730. eoi_parser:
  1731.     {
  1732.                         if (s->interlaced) {
  1733.                             s->bottom_field ^= 1;
  1734.                             /* if not bottom field, do not output image yet */
  1735.                             if (s->bottom_field)
  1736.                                 goto not_the_end;
  1737.                         }
  1738.                         *picture = s->picture;
  1739.                         *data_size = sizeof(AVFrame);
  1740.                         if(!s->lossless){
  1741.                             picture->quality= FFMAX(FFMAX(s->qscale[0], s->qscale[1]), s->qscale[2]); 
  1742.                             picture->qstride= 0;
  1743.                             picture->qscale_table= s->qscale_table;
  1744.                             memset(picture->qscale_table, picture->quality, (s->width+15)/16);
  1745.                             if(avctx->debug & FF_DEBUG_QP)
  1746.                                 av_log(s->avctx, AV_LOG_DEBUG, "QP: %dn", picture->quality);
  1747.                             picture->quality*= FF_QP2LAMBDA;
  1748.                         }
  1749.                         
  1750.                         goto the_end;
  1751.                     }
  1752.     break;
  1753.                 case SOS:
  1754.                     mjpeg_decode_sos(s);
  1755.     /* buggy avid puts EOI every 10-20th frame */
  1756.     /* if restart period is over process EOI */
  1757.     if ((s->buggy_avid && !s->interlaced) || s->restart_interval)
  1758. goto eoi_parser;
  1759.                     break;
  1760. case DRI:
  1761.     mjpeg_decode_dri(s);
  1762.     break;
  1763. case SOF1:
  1764. case SOF2:
  1765. case SOF5:
  1766. case SOF6:
  1767. case SOF7:
  1768. case SOF9:
  1769. case SOF10:
  1770. case SOF11:
  1771. case SOF13:
  1772. case SOF14:
  1773. case SOF15:
  1774. case JPG:
  1775.     av_log(s->avctx, AV_LOG_ERROR, "mjpeg: unsupported coding type (%x)n", start_code);
  1776.     break;
  1777. // default:
  1778. //     printf("mjpeg: unsupported marker (%x)n", start_code);
  1779. //     break;
  1780.                 }
  1781. not_the_end:
  1782. /* eof process start code */
  1783. buf_ptr += (get_bits_count(&s->gb)+7)/8;
  1784. dprintf("marker parser used %d bytes (%d bits)n",
  1785.     (get_bits_count(&s->gb)+7)/8, get_bits_count(&s->gb));
  1786.             }
  1787.         }
  1788.     }
  1789. the_end:
  1790.     dprintf("mjpeg decode frame unused %d bytesn", buf_end - buf_ptr);
  1791. //    return buf_end - buf_ptr;
  1792.     return buf_ptr - buf;
  1793. }
  1794. static int mjpegb_decode_frame(AVCodecContext *avctx, 
  1795.                               void *data, int *data_size,
  1796.                               uint8_t *buf, int buf_size)
  1797. {
  1798.     MJpegDecodeContext *s = avctx->priv_data;
  1799.     uint8_t *buf_end, *buf_ptr;
  1800.     AVFrame *picture = data;
  1801.     GetBitContext hgb; /* for the header */
  1802.     uint32_t dqt_offs, dht_offs, sof_offs, sos_offs, second_field_offs;
  1803.     uint32_t field_size, sod_offs;
  1804.     buf_ptr = buf;
  1805.     buf_end = buf + buf_size;
  1806.     
  1807. read_header:
  1808.     /* reset on every SOI */
  1809.     s->restart_interval = 0;
  1810.     s->restart_count = 0;
  1811.     s->mjpb_skiptosod = 0;
  1812.     init_get_bits(&hgb, buf_ptr, /*buf_size*/(buf_end - buf_ptr)*8);
  1813.     skip_bits(&hgb, 32); /* reserved zeros */
  1814.     
  1815.     if (get_bits_long(&hgb, 32) != be2me_32(ff_get_fourcc("mjpg")))
  1816.     {
  1817. dprintf("not mjpeg-b (bad fourcc)n");
  1818. return 0;
  1819.     }
  1820.     field_size = get_bits_long(&hgb, 32); /* field size */
  1821.     dprintf("field size: 0x%xn", field_size);
  1822.     skip_bits(&hgb, 32); /* padded field size */
  1823.     second_field_offs = get_bits_long(&hgb, 32);
  1824.     dprintf("second field offs: 0x%xn", second_field_offs);
  1825.     if (second_field_offs)
  1826. s->interlaced = 1;
  1827.     dqt_offs = get_bits_long(&hgb, 32);
  1828.     dprintf("dqt offs: 0x%xn", dqt_offs);
  1829.     if (dqt_offs)
  1830.     {
  1831. init_get_bits(&s->gb, buf+dqt_offs, (buf_end - (buf+dqt_offs))*8);
  1832. s->start_code = DQT;
  1833. mjpeg_decode_dqt(s);
  1834.     }
  1835.     
  1836.     dht_offs = get_bits_long(&hgb, 32);
  1837.     dprintf("dht offs: 0x%xn", dht_offs);
  1838.     if (dht_offs)
  1839.     {
  1840. init_get_bits(&s->gb, buf+dht_offs, (buf_end - (buf+dht_offs))*8);
  1841. s->start_code = DHT;
  1842. mjpeg_decode_dht(s);
  1843.     }
  1844.     sof_offs = get_bits_long(&hgb, 32);
  1845.     dprintf("sof offs: 0x%xn", sof_offs);
  1846.     if (sof_offs)
  1847.     {
  1848. init_get_bits(&s->gb, buf+sof_offs, (buf_end - (buf+sof_offs))*8);
  1849. s->start_code = SOF0;
  1850. if (mjpeg_decode_sof(s) < 0)
  1851.     return -1;
  1852.     }
  1853.     sos_offs = get_bits_long(&hgb, 32);
  1854.     dprintf("sos offs: 0x%xn", sos_offs);
  1855.     sod_offs = get_bits_long(&hgb, 32);
  1856.     dprintf("sod offs: 0x%xn", sod_offs);
  1857.     if (sos_offs)
  1858.     {
  1859. // init_get_bits(&s->gb, buf+sos_offs, (buf_end - (buf+sos_offs))*8);
  1860. init_get_bits(&s->gb, buf+sos_offs, field_size*8);
  1861. s->mjpb_skiptosod = (sod_offs - sos_offs - show_bits(&s->gb, 16));
  1862. s->start_code = SOS;
  1863. mjpeg_decode_sos(s);
  1864.     }
  1865.     if (s->interlaced) {
  1866.         s->bottom_field ^= 1;
  1867.         /* if not bottom field, do not output image yet */
  1868.         if (s->bottom_field && second_field_offs)
  1869. {
  1870.     buf_ptr = buf + second_field_offs;
  1871.     second_field_offs = 0;
  1872.     goto read_header;
  1873.      }
  1874.     }
  1875.     //XXX FIXME factorize, this looks very similar to the EOI code
  1876.     *picture= s->picture;
  1877.     *data_size = sizeof(AVFrame);
  1878.     
  1879.     if(!s->lossless){
  1880.         picture->quality= FFMAX(FFMAX(s->qscale[0], s->qscale[1]), s->qscale[2]); 
  1881.         picture->qstride= 0;
  1882.         picture->qscale_table= s->qscale_table;
  1883.         memset(picture->qscale_table, picture->quality, (s->width+15)/16);
  1884.         if(avctx->debug & FF_DEBUG_QP)
  1885.             av_log(avctx, AV_LOG_DEBUG, "QP: %dn", picture->quality);
  1886.         picture->quality*= FF_QP2LAMBDA;
  1887.     }
  1888.     return buf_ptr - buf;
  1889. }
  1890. #include "sp5x.h"
  1891. static int sp5x_decode_frame(AVCodecContext *avctx, 
  1892.                               void *data, int *data_size,
  1893.                               uint8_t *buf, int buf_size)
  1894. {
  1895. #if 0
  1896.     MJpegDecodeContext *s = avctx->priv_data;
  1897. #endif
  1898.     const int qscale = 5;
  1899.     uint8_t *buf_ptr, *buf_end, *recoded;
  1900.     int i = 0, j = 0;
  1901.     if (!avctx->width || !avctx->height)
  1902. return -1;
  1903.     buf_ptr = buf;
  1904.     buf_end = buf + buf_size;
  1905. #if 1
  1906.     recoded = av_mallocz(buf_size + 1024);
  1907.     if (!recoded)
  1908. return -1;
  1909.     /* SOI */
  1910.     recoded[j++] = 0xFF;
  1911.     recoded[j++] = 0xD8;
  1912.     memcpy(recoded+j, &sp5x_data_dqt[0], sizeof(sp5x_data_dqt));
  1913.     memcpy(recoded+j+5, &sp5x_quant_table[qscale * 2], 64);
  1914.     memcpy(recoded+j+70, &sp5x_quant_table[(qscale * 2) + 1], 64);
  1915.     j += sizeof(sp5x_data_dqt);
  1916.     memcpy(recoded+j, &sp5x_data_dht[0], sizeof(sp5x_data_dht));
  1917.     j += sizeof(sp5x_data_dht);
  1918.     memcpy(recoded+j, &sp5x_data_sof[0], sizeof(sp5x_data_sof));
  1919.     recoded[j+5] = (avctx->coded_height >> 8) & 0xFF;
  1920.     recoded[j+6] = avctx->coded_height & 0xFF;
  1921.     recoded[j+7] = (avctx->coded_width >> 8) & 0xFF;
  1922.     recoded[j+8] = avctx->coded_width & 0xFF;
  1923.     j += sizeof(sp5x_data_sof);
  1924.     memcpy(recoded+j, &sp5x_data_sos[0], sizeof(sp5x_data_sos));
  1925.     j += sizeof(sp5x_data_sos);
  1926.     for (i = 14; i < buf_size && j < buf_size+1024-2; i++)
  1927.     {
  1928. recoded[j++] = buf[i];
  1929. if (buf[i] == 0xff)
  1930.     recoded[j++] = 0;
  1931.     }
  1932.     /* EOI */
  1933.     recoded[j++] = 0xFF;
  1934.     recoded[j++] = 0xD9;
  1935.     i = mjpeg_decode_frame(avctx, data, data_size, recoded, j);
  1936.     av_free(recoded);
  1937. #else
  1938.     /* SOF */
  1939.     s->bits = 8;
  1940.     s->width  = avctx->coded_width;
  1941.     s->height = avctx->coded_height;
  1942.     s->nb_components = 3;
  1943.     s->component_id[0] = 0;
  1944.     s->h_count[0] = 2;
  1945.     s->v_count[0] = 2;
  1946.     s->quant_index[0] = 0;
  1947.     s->component_id[1] = 1;
  1948.     s->h_count[1] = 1;
  1949.     s->v_count[1] = 1;
  1950.     s->quant_index[1] = 1;
  1951.     s->component_id[2] = 2;
  1952.     s->h_count[2] = 1;
  1953.     s->v_count[2] = 1;
  1954.     s->quant_index[2] = 1;
  1955.     s->h_max = 2;
  1956.     s->v_max = 2;
  1957.     
  1958.     s->qscale_table = av_mallocz((s->width+15)/16);
  1959.     avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420;
  1960.     s->interlaced = 0;
  1961.     
  1962.     s->picture.reference = 0;
  1963.     if (avctx->get_buffer(avctx, &s->picture) < 0)
  1964.     {
  1965.         av_log(avctx, AV_LOG_ERROR, "get_buffer() failedn");
  1966. return -1;
  1967.     }
  1968.     s->picture.pict_type = I_TYPE;
  1969.     s->picture.key_frame = 1;
  1970.     for (i = 0; i < 3; i++)
  1971. s->linesize[i] = s->picture.linesize[i] << s->interlaced;
  1972.     /* DQT */
  1973.     for (i = 0; i < 64; i++)
  1974.     {
  1975. j = s->scantable.permutated[i];
  1976. s->quant_matrixes[0][j] = sp5x_quant_table[(qscale * 2) + i];
  1977.     }
  1978.     s->qscale[0] = FFMAX(
  1979. s->quant_matrixes[0][s->scantable.permutated[1]],
  1980. s->quant_matrixes[0][s->scantable.permutated[8]]) >> 1;
  1981.     for (i = 0; i < 64; i++)
  1982.     {
  1983. j = s->scantable.permutated[i];
  1984. s->quant_matrixes[1][j] = sp5x_quant_table[(qscale * 2) + 1 + i];
  1985.     }
  1986.     s->qscale[1] = FFMAX(
  1987. s->quant_matrixes[1][s->scantable.permutated[1]],
  1988. s->quant_matrixes[1][s->scantable.permutated[8]]) >> 1;
  1989.     /* DHT */
  1990.     /* SOS */
  1991.     s->comp_index[0] = 0;
  1992.     s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
  1993.     s->h_scount[0] = s->h_count[0];
  1994.     s->v_scount[0] = s->v_count[0];
  1995.     s->dc_index[0] = 0;
  1996.     s->ac_index[0] = 0;
  1997.     s->comp_index[1] = 1;
  1998.     s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
  1999.     s->h_scount[1] = s->h_count[1];
  2000.     s->v_scount[1] = s->v_count[1];
  2001.     s->dc_index[1] = 1;
  2002.     s->ac_index[1] = 1;
  2003.     s->comp_index[2] = 2;
  2004.     s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
  2005.     s->h_scount[2] = s->h_count[2];
  2006.     s->v_scount[2] = s->v_count[2];
  2007.     s->dc_index[2] = 1;
  2008.     s->ac_index[2] = 1;
  2009.     
  2010.     for (i = 0; i < 3; i++)
  2011. s->last_dc[i] = 1024;
  2012.     s->mb_width = (s->width * s->h_max * 8 -1) / (s->h_max * 8);
  2013.     s->mb_height = (s->height * s->v_max * 8 -1) / (s->v_max * 8);
  2014.     init_get_bits(&s->gb, buf+14, (buf_size-14)*8);
  2015.     
  2016.     return mjpeg_decode_scan(s);
  2017. #endif
  2018.     return i;
  2019. }
  2020. static int mjpeg_decode_end(AVCodecContext *avctx)
  2021. {
  2022.     MJpegDecodeContext *s = avctx->priv_data;
  2023.     int i, j;
  2024.     av_free(s->buffer);
  2025.     av_free(s->qscale_table);
  2026.     
  2027.     for(i=0;i<2;i++) {
  2028.         for(j=0;j<4;j++)
  2029.             free_vlc(&s->vlcs[i][j]);
  2030.     }
  2031.     return 0;
  2032. }
  2033. AVCodec mjpeg_decoder = {
  2034.     "mjpeg",
  2035.     CODEC_TYPE_VIDEO,
  2036.     CODEC_ID_MJPEG,
  2037.     sizeof(MJpegDecodeContext),
  2038.     mjpeg_decode_init,
  2039.     NULL,
  2040.     mjpeg_decode_end,
  2041.     mjpeg_decode_frame,
  2042.     CODEC_CAP_DR1,
  2043.     NULL
  2044. };
  2045. AVCodec mjpegb_decoder = {
  2046.     "mjpegb",
  2047.     CODEC_TYPE_VIDEO,
  2048.     CODEC_ID_MJPEGB,
  2049.     sizeof(MJpegDecodeContext),
  2050.     mjpeg_decode_init,
  2051.     NULL,
  2052.     mjpeg_decode_end,
  2053.     mjpegb_decode_frame,
  2054.     CODEC_CAP_DR1,
  2055.     NULL
  2056. };
  2057. AVCodec sp5x_decoder = {
  2058.     "sp5x",
  2059.     CODEC_TYPE_VIDEO,
  2060.     CODEC_ID_SP5X,
  2061.     sizeof(MJpegDecodeContext),
  2062.     mjpeg_decode_init,
  2063.     NULL,
  2064.     mjpeg_decode_end,
  2065.     sp5x_decode_frame,
  2066.     CODEC_CAP_DR1,
  2067.     NULL
  2068. };
  2069. #ifdef CONFIG_ENCODERS
  2070. AVCodec ljpeg_encoder = { //FIXME avoid MPV_* lossless jpeg shouldnt need them
  2071.     "ljpeg",
  2072.     CODEC_TYPE_VIDEO,
  2073.     CODEC_ID_LJPEG,
  2074.     sizeof(MpegEncContext),
  2075.     MPV_encode_init,
  2076.     encode_picture_lossless,
  2077.     MPV_encode_end,
  2078. };
  2079. #endif
  2080. AVCodecParser mjpeg_parser = {
  2081.     { CODEC_ID_MJPEG },
  2082.     sizeof(ParseContext),
  2083.     NULL,
  2084.     jpeg_parse,
  2085.     ff_parse_close,
  2086. };