You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2572 lines
82KB

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