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.

2636 lines
83KB

  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 <alex@naxine.org>
  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. /**
  819. * finds the end of the current frame in the bitstream.
  820. * @return the position of the first byte of the next frame, or -1
  821. */
  822. static int find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
  823. int vop_found, i;
  824. uint16_t state;
  825. vop_found= pc->frame_start_found;
  826. state= pc->state;
  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. next= find_frame_end(pc, buf, buf_size);
  863. if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
  864. *poutbuf = NULL;
  865. *poutbuf_size = 0;
  866. return buf_size;
  867. }
  868. *poutbuf = (uint8_t *)buf;
  869. *poutbuf_size = buf_size;
  870. return next;
  871. }
  872. /* quantize tables */
  873. static int mjpeg_decode_dqt(MJpegDecodeContext *s)
  874. {
  875. int len, index, i, j;
  876. len = get_bits(&s->gb, 16) - 2;
  877. while (len >= 65) {
  878. /* only 8 bit precision handled */
  879. if (get_bits(&s->gb, 4) != 0)
  880. {
  881. av_log(s->avctx, AV_LOG_ERROR, "dqt: 16bit precision\n");
  882. return -1;
  883. }
  884. index = get_bits(&s->gb, 4);
  885. if (index >= 4)
  886. return -1;
  887. av_log(s->avctx, AV_LOG_DEBUG, "index=%d\n", index);
  888. /* read quant table */
  889. for(i=0;i<64;i++) {
  890. j = s->scantable.permutated[i];
  891. s->quant_matrixes[index][j] = get_bits(&s->gb, 8);
  892. }
  893. //XXX FIXME finetune, and perhaps add dc too
  894. s->qscale[index]= FFMAX(
  895. s->quant_matrixes[index][s->scantable.permutated[1]],
  896. s->quant_matrixes[index][s->scantable.permutated[8]]) >> 1;
  897. av_log(s->avctx, AV_LOG_DEBUG, "qscale[%d]: %d\n", index, s->qscale[index]);
  898. len -= 65;
  899. }
  900. return 0;
  901. }
  902. /* decode huffman tables and build VLC decoders */
  903. static int mjpeg_decode_dht(MJpegDecodeContext *s)
  904. {
  905. int len, index, i, class, n, v, code_max;
  906. uint8_t bits_table[17];
  907. uint8_t val_table[256];
  908. len = get_bits(&s->gb, 16) - 2;
  909. while (len > 0) {
  910. if (len < 17)
  911. return -1;
  912. class = get_bits(&s->gb, 4);
  913. if (class >= 2)
  914. return -1;
  915. index = get_bits(&s->gb, 4);
  916. if (index >= 4)
  917. return -1;
  918. n = 0;
  919. for(i=1;i<=16;i++) {
  920. bits_table[i] = get_bits(&s->gb, 8);
  921. n += bits_table[i];
  922. }
  923. len -= 17;
  924. if (len < n || n > 256)
  925. return -1;
  926. code_max = 0;
  927. for(i=0;i<n;i++) {
  928. v = get_bits(&s->gb, 8);
  929. if (v > code_max)
  930. code_max = v;
  931. val_table[i] = v;
  932. }
  933. len -= n;
  934. /* build VLC and flush previous vlc if present */
  935. free_vlc(&s->vlcs[class][index]);
  936. av_log(s->avctx, AV_LOG_DEBUG, "class=%d index=%d nb_codes=%d\n",
  937. class, index, code_max + 1);
  938. if(build_vlc(&s->vlcs[class][index], bits_table, val_table, code_max + 1, 0, class > 0) < 0){
  939. return -1;
  940. }
  941. }
  942. return 0;
  943. }
  944. static int mjpeg_decode_sof(MJpegDecodeContext *s)
  945. {
  946. int len, nb_components, i, width, height, pix_fmt_id;
  947. /* XXX: verify len field validity */
  948. len = get_bits(&s->gb, 16);
  949. s->bits= get_bits(&s->gb, 8);
  950. if(s->pegasus_rct) s->bits=9;
  951. if(s->bits==9 && !s->pegasus_rct) s->rct=1; //FIXME ugly
  952. if (s->bits != 8 && !s->lossless){
  953. av_log(s->avctx, AV_LOG_ERROR, "only 8 bits/component accepted\n");
  954. return -1;
  955. }
  956. height = get_bits(&s->gb, 16);
  957. width = get_bits(&s->gb, 16);
  958. av_log(s->avctx, AV_LOG_DEBUG, "sof0: picture: %dx%d\n", width, height);
  959. if(avcodec_check_dimensions(s->avctx, width, height))
  960. return -1;
  961. nb_components = get_bits(&s->gb, 8);
  962. if (nb_components <= 0 ||
  963. nb_components > MAX_COMPONENTS)
  964. return -1;
  965. if (s->ls && !(s->bits <= 8 || nb_components == 1)){
  966. av_log(s->avctx, AV_LOG_ERROR, "only <= 8 bits/component or 16-bit gray accepted for JPEG-LS\n");
  967. return -1;
  968. }
  969. s->nb_components = nb_components;
  970. s->h_max = 1;
  971. s->v_max = 1;
  972. for(i=0;i<nb_components;i++) {
  973. /* component id */
  974. s->component_id[i] = get_bits(&s->gb, 8) - 1;
  975. s->h_count[i] = get_bits(&s->gb, 4);
  976. s->v_count[i] = get_bits(&s->gb, 4);
  977. /* compute hmax and vmax (only used in interleaved case) */
  978. if (s->h_count[i] > s->h_max)
  979. s->h_max = s->h_count[i];
  980. if (s->v_count[i] > s->v_max)
  981. s->v_max = s->v_count[i];
  982. s->quant_index[i] = get_bits(&s->gb, 8);
  983. if (s->quant_index[i] >= 4)
  984. return -1;
  985. av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n", i, s->h_count[i],
  986. s->v_count[i], s->component_id[i], s->quant_index[i]);
  987. }
  988. if(s->ls && (s->h_max > 1 || s->v_max > 1)) {
  989. av_log(s->avctx, AV_LOG_ERROR, "Subsampling in JPEG-LS is not supported.\n");
  990. return -1;
  991. }
  992. if(s->v_max==1 && s->h_max==1 && s->lossless==1) s->rgb=1;
  993. /* if different size, realloc/alloc picture */
  994. /* XXX: also check h_count and v_count */
  995. if (width != s->width || height != s->height) {
  996. av_freep(&s->qscale_table);
  997. s->width = width;
  998. s->height = height;
  999. s->interlaced = 0;
  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;
  1006. s->picture.interlaced_frame = 1;
  1007. s->picture.top_field_first = !s->interlace_polarity;
  1008. height *= 2;
  1009. }
  1010. avcodec_set_dimensions(s->avctx, width, height);
  1011. s->qscale_table= av_mallocz((s->width+15)/16);
  1012. s->first_picture = 0;
  1013. }
  1014. if(s->interlaced && (s->bottom_field == !s->interlace_polarity))
  1015. return 0;
  1016. /* XXX: not complete test ! */
  1017. pix_fmt_id = (s->h_count[0] << 20) | (s->v_count[0] << 16) |
  1018. (s->h_count[1] << 12) | (s->v_count[1] << 8) |
  1019. (s->h_count[2] << 4) | s->v_count[2];
  1020. av_log(s->avctx, AV_LOG_DEBUG, "pix fmt id %x\n", pix_fmt_id);
  1021. switch(pix_fmt_id){
  1022. case 0x222222:
  1023. case 0x111111:
  1024. if(s->rgb){
  1025. s->avctx->pix_fmt = PIX_FMT_RGB32;
  1026. }else if(s->nb_components==3)
  1027. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P;
  1028. else
  1029. s->avctx->pix_fmt = PIX_FMT_GRAY8;
  1030. break;
  1031. case 0x211111:
  1032. case 0x221212:
  1033. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV422P : PIX_FMT_YUVJ422P;
  1034. break;
  1035. default:
  1036. case 0x221111:
  1037. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420P;
  1038. break;
  1039. }
  1040. if(s->ls){
  1041. if(s->nb_components > 1)
  1042. s->avctx->pix_fmt = PIX_FMT_RGB24;
  1043. else if(s->bits <= 8)
  1044. s->avctx->pix_fmt = PIX_FMT_GRAY8;
  1045. else
  1046. s->avctx->pix_fmt = PIX_FMT_GRAY16;
  1047. }
  1048. if(s->picture.data[0])
  1049. s->avctx->release_buffer(s->avctx, &s->picture);
  1050. s->picture.reference= 0;
  1051. if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){
  1052. av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  1053. return -1;
  1054. }
  1055. s->picture.pict_type= I_TYPE;
  1056. s->picture.key_frame= 1;
  1057. for(i=0; i<3; i++){
  1058. s->linesize[i]= s->picture.linesize[i] << s->interlaced;
  1059. }
  1060. // printf("%d %d %d %d %d %d\n", s->width, s->height, s->linesize[0], s->linesize[1], s->interlaced, s->avctx->height);
  1061. if (len != (8+(3*nb_components)))
  1062. {
  1063. av_log(s->avctx, AV_LOG_DEBUG, "decode_sof0: error, len(%d) mismatch\n", len);
  1064. }
  1065. /* totally blank picture as progressive JPEG will only add details to it */
  1066. if(s->progressive){
  1067. memset(s->picture.data[0], 0, s->picture.linesize[0] * s->height);
  1068. memset(s->picture.data[1], 0, s->picture.linesize[1] * s->height >> (s->v_max - s->v_count[1]));
  1069. memset(s->picture.data[2], 0, s->picture.linesize[2] * s->height >> (s->v_max - s->v_count[2]));
  1070. }
  1071. return 0;
  1072. }
  1073. static inline int mjpeg_decode_dc(MJpegDecodeContext *s, int dc_index)
  1074. {
  1075. int code;
  1076. code = get_vlc2(&s->gb, s->vlcs[0][dc_index].table, 9, 2);
  1077. if (code < 0)
  1078. {
  1079. av_log(s->avctx, AV_LOG_WARNING, "mjpeg_decode_dc: bad vlc: %d:%d (%p)\n", 0, dc_index,
  1080. &s->vlcs[0][dc_index]);
  1081. return 0xffff;
  1082. }
  1083. if(code)
  1084. return get_xbits(&s->gb, code);
  1085. else
  1086. return 0;
  1087. }
  1088. /* decode block and dequantize */
  1089. static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
  1090. int component, int dc_index, int ac_index, int16_t *quant_matrix)
  1091. {
  1092. int code, i, j, level, val;
  1093. /* DC coef */
  1094. val = mjpeg_decode_dc(s, dc_index);
  1095. if (val == 0xffff) {
  1096. av_log(s->avctx, AV_LOG_ERROR, "error dc\n");
  1097. return -1;
  1098. }
  1099. val = val * quant_matrix[0] + s->last_dc[component];
  1100. s->last_dc[component] = val;
  1101. block[0] = val;
  1102. /* AC coefs */
  1103. i = 0;
  1104. {OPEN_READER(re, &s->gb)
  1105. for(;;) {
  1106. UPDATE_CACHE(re, &s->gb);
  1107. GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
  1108. /* EOB */
  1109. if (code == 0x10)
  1110. break;
  1111. i += ((unsigned)code) >> 4;
  1112. if(code != 0x100){
  1113. code &= 0xf;
  1114. if(code > MIN_CACHE_BITS - 16){
  1115. UPDATE_CACHE(re, &s->gb)
  1116. }
  1117. {
  1118. int cache=GET_CACHE(re,&s->gb);
  1119. int sign=(~cache)>>31;
  1120. level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
  1121. }
  1122. LAST_SKIP_BITS(re, &s->gb, code)
  1123. if (i >= 63) {
  1124. if(i == 63){
  1125. j = s->scantable.permutated[63];
  1126. block[j] = level * quant_matrix[j];
  1127. break;
  1128. }
  1129. av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
  1130. return -1;
  1131. }
  1132. j = s->scantable.permutated[i];
  1133. block[j] = level * quant_matrix[j];
  1134. }
  1135. }
  1136. CLOSE_READER(re, &s->gb)}
  1137. return 0;
  1138. }
  1139. /* decode block and dequantize - progressive JPEG version */
  1140. static int decode_block_progressive(MJpegDecodeContext *s, DCTELEM *block,
  1141. int component, int dc_index, int ac_index, int16_t *quant_matrix,
  1142. int ss, int se, int Ah, int Al, int *EOBRUN)
  1143. {
  1144. int code, i, j, level, val, run;
  1145. /* DC coef */
  1146. if(!ss){
  1147. val = mjpeg_decode_dc(s, dc_index);
  1148. if (val == 0xffff) {
  1149. av_log(s->avctx, AV_LOG_ERROR, "error dc\n");
  1150. return -1;
  1151. }
  1152. val = (val * quant_matrix[0] << Al) + s->last_dc[component];
  1153. }else
  1154. val = 0;
  1155. s->last_dc[component] = val;
  1156. block[0] = val;
  1157. if(!se) return 0;
  1158. /* AC coefs */
  1159. if(*EOBRUN){
  1160. (*EOBRUN)--;
  1161. return 0;
  1162. }
  1163. {OPEN_READER(re, &s->gb)
  1164. for(i=ss;;i++) {
  1165. UPDATE_CACHE(re, &s->gb);
  1166. GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
  1167. /* Progressive JPEG use AC coeffs from zero and this decoder sets offset 16 by default */
  1168. code -= 16;
  1169. if(code & 0xF) {
  1170. i += ((unsigned) code) >> 4;
  1171. code &= 0xf;
  1172. if(code > MIN_CACHE_BITS - 16){
  1173. UPDATE_CACHE(re, &s->gb)
  1174. }
  1175. {
  1176. int cache=GET_CACHE(re,&s->gb);
  1177. int sign=(~cache)>>31;
  1178. level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
  1179. }
  1180. LAST_SKIP_BITS(re, &s->gb, code)
  1181. if (i >= se) {
  1182. if(i == se){
  1183. j = s->scantable.permutated[se];
  1184. block[j] = level * quant_matrix[j] << Al;
  1185. break;
  1186. }
  1187. av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
  1188. return -1;
  1189. }
  1190. j = s->scantable.permutated[i];
  1191. block[j] = level * quant_matrix[j] << Al;
  1192. }else{
  1193. run = ((unsigned) code) >> 4;
  1194. if(run == 0xF){// ZRL - skip 15 coefficients
  1195. i += 15;
  1196. }else{
  1197. val = run;
  1198. run = (1 << run);
  1199. UPDATE_CACHE(re, &s->gb);
  1200. run += (GET_CACHE(re, &s->gb) >> (32 - val)) & (run - 1);
  1201. if(val)
  1202. LAST_SKIP_BITS(re, &s->gb, val);
  1203. *EOBRUN = run - 1;
  1204. break;
  1205. }
  1206. }
  1207. }
  1208. CLOSE_READER(re, &s->gb)}
  1209. return 0;
  1210. }
  1211. static int ljpeg_decode_rgb_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1212. int i, mb_x, mb_y;
  1213. uint16_t buffer[32768][4];
  1214. int left[3], top[3], topleft[3];
  1215. const int linesize= s->linesize[0];
  1216. const int mask= (1<<s->bits)-1;
  1217. if((unsigned)s->mb_width > 32768) //dynamic alloc
  1218. return -1;
  1219. for(i=0; i<3; i++){
  1220. buffer[0][i]= 1 << (s->bits + point_transform - 1);
  1221. }
  1222. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1223. const int modified_predictor= mb_y ? predictor : 1;
  1224. uint8_t *ptr = s->picture.data[0] + (linesize * mb_y);
  1225. if (s->interlaced && s->bottom_field)
  1226. ptr += linesize >> 1;
  1227. for(i=0; i<3; i++){
  1228. top[i]= left[i]= topleft[i]= buffer[0][i];
  1229. }
  1230. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1231. if (s->restart_interval && !s->restart_count)
  1232. s->restart_count = s->restart_interval;
  1233. for(i=0;i<3;i++) {
  1234. int pred;
  1235. topleft[i]= top[i];
  1236. top[i]= buffer[mb_x][i];
  1237. PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
  1238. left[i]=
  1239. buffer[mb_x][i]= mask & (pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform));
  1240. }
  1241. if (s->restart_interval && !--s->restart_count) {
  1242. align_get_bits(&s->gb);
  1243. skip_bits(&s->gb, 16); /* skip RSTn */
  1244. }
  1245. }
  1246. if(s->rct){
  1247. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1248. ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2] - 0x200)>>2);
  1249. ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1250. ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1251. }
  1252. }else if(s->pegasus_rct){
  1253. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1254. ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2])>>2);
  1255. ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1256. ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1257. }
  1258. }else{
  1259. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1260. ptr[4*mb_x+0] = buffer[mb_x][0];
  1261. ptr[4*mb_x+1] = buffer[mb_x][1];
  1262. ptr[4*mb_x+2] = buffer[mb_x][2];
  1263. }
  1264. }
  1265. }
  1266. return 0;
  1267. }
  1268. static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1269. int i, mb_x, mb_y;
  1270. const int nb_components=3;
  1271. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1272. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1273. if (s->restart_interval && !s->restart_count)
  1274. s->restart_count = s->restart_interval;
  1275. if(mb_x==0 || mb_y==0 || s->interlaced){
  1276. for(i=0;i<nb_components;i++) {
  1277. uint8_t *ptr;
  1278. int n, h, v, x, y, c, j, linesize;
  1279. n = s->nb_blocks[i];
  1280. c = s->comp_index[i];
  1281. h = s->h_scount[i];
  1282. v = s->v_scount[i];
  1283. x = 0;
  1284. y = 0;
  1285. linesize= s->linesize[c];
  1286. for(j=0; j<n; j++) {
  1287. int pred;
  1288. ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1289. if(y==0 && mb_y==0){
  1290. if(x==0 && mb_x==0){
  1291. pred= 128 << point_transform;
  1292. }else{
  1293. pred= ptr[-1];
  1294. }
  1295. }else{
  1296. if(x==0 && mb_x==0){
  1297. pred= ptr[-linesize];
  1298. }else{
  1299. PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1300. }
  1301. }
  1302. if (s->interlaced && s->bottom_field)
  1303. ptr += linesize >> 1;
  1304. *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1305. if (++x == h) {
  1306. x = 0;
  1307. y++;
  1308. }
  1309. }
  1310. }
  1311. }else{
  1312. for(i=0;i<nb_components;i++) {
  1313. uint8_t *ptr;
  1314. int n, h, v, x, y, c, j, linesize;
  1315. n = s->nb_blocks[i];
  1316. c = s->comp_index[i];
  1317. h = s->h_scount[i];
  1318. v = s->v_scount[i];
  1319. x = 0;
  1320. y = 0;
  1321. linesize= s->linesize[c];
  1322. for(j=0; j<n; j++) {
  1323. int pred;
  1324. ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1325. PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1326. *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1327. if (++x == h) {
  1328. x = 0;
  1329. y++;
  1330. }
  1331. }
  1332. }
  1333. }
  1334. if (s->restart_interval && !--s->restart_count) {
  1335. align_get_bits(&s->gb);
  1336. skip_bits(&s->gb, 16); /* skip RSTn */
  1337. }
  1338. }
  1339. }
  1340. return 0;
  1341. }
  1342. static int mjpeg_decode_scan(MJpegDecodeContext *s, int nb_components, int ss, int se, int Ah, int Al){
  1343. int i, mb_x, mb_y;
  1344. int EOBRUN = 0;
  1345. if(Ah) return 0; /* TODO decode refinement planes too */
  1346. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1347. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1348. if (s->restart_interval && !s->restart_count)
  1349. s->restart_count = s->restart_interval;
  1350. for(i=0;i<nb_components;i++) {
  1351. uint8_t *ptr;
  1352. int n, h, v, x, y, c, j;
  1353. n = s->nb_blocks[i];
  1354. c = s->comp_index[i];
  1355. h = s->h_scount[i];
  1356. v = s->v_scount[i];
  1357. x = 0;
  1358. y = 0;
  1359. for(j=0;j<n;j++) {
  1360. memset(s->block, 0, sizeof(s->block));
  1361. if (!s->progressive && decode_block(s, s->block, i,
  1362. s->dc_index[i], s->ac_index[i],
  1363. s->quant_matrixes[ s->quant_index[c] ]) < 0) {
  1364. av_log(s->avctx, AV_LOG_ERROR, "error y=%d x=%d\n", mb_y, mb_x);
  1365. return -1;
  1366. }
  1367. if (s->progressive && decode_block_progressive(s, s->block, i,
  1368. s->dc_index[i], s->ac_index[i],
  1369. s->quant_matrixes[ s->quant_index[c] ], ss, se, Ah, Al, &EOBRUN) < 0) {
  1370. av_log(s->avctx, AV_LOG_ERROR, "error y=%d x=%d\n", mb_y, mb_x);
  1371. return -1;
  1372. }
  1373. // av_log(s->avctx, AV_LOG_DEBUG, "mb: %d %d processed\n", mb_y, mb_x);
  1374. ptr = s->picture.data[c] +
  1375. (((s->linesize[c] * (v * mb_y + y) * 8) +
  1376. (h * mb_x + x) * 8) >> s->avctx->lowres);
  1377. if (s->interlaced && s->bottom_field)
  1378. ptr += s->linesize[c] >> 1;
  1379. //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);
  1380. if(!s->progressive)
  1381. s->dsp.idct_put(ptr, s->linesize[c], s->block);
  1382. else
  1383. s->dsp.idct_add(ptr, s->linesize[c], s->block);
  1384. if (++x == h) {
  1385. x = 0;
  1386. y++;
  1387. }
  1388. }
  1389. }
  1390. /* (< 1350) buggy workaround for Spectralfan.mov, should be fixed */
  1391. if (s->restart_interval && (s->restart_interval < 1350) &&
  1392. !--s->restart_count) {
  1393. align_get_bits(&s->gb);
  1394. skip_bits(&s->gb, 16); /* skip RSTn */
  1395. for (i=0; i<nb_components; i++) /* reset dc */
  1396. s->last_dc[i] = 1024;
  1397. }
  1398. }
  1399. }
  1400. return 0;
  1401. }
  1402. static int mjpeg_decode_sos(MJpegDecodeContext *s)
  1403. {
  1404. int len, nb_components, i, h, v, predictor, point_transform;
  1405. int vmax, hmax, index, id;
  1406. const int block_size= s->lossless ? 1 : 8;
  1407. int ilv, prev_shift;
  1408. /* XXX: verify len field validity */
  1409. len = get_bits(&s->gb, 16);
  1410. nb_components = get_bits(&s->gb, 8);
  1411. if (len != 6+2*nb_components)
  1412. {
  1413. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: invalid len (%d)\n", len);
  1414. return -1;
  1415. }
  1416. vmax = 0;
  1417. hmax = 0;
  1418. for(i=0;i<nb_components;i++) {
  1419. id = get_bits(&s->gb, 8) - 1;
  1420. av_log(s->avctx, AV_LOG_DEBUG, "component: %d\n", id);
  1421. /* find component index */
  1422. for(index=0;index<s->nb_components;index++)
  1423. if (id == s->component_id[index])
  1424. break;
  1425. if (index == s->nb_components)
  1426. {
  1427. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: index(%d) out of components\n", index);
  1428. return -1;
  1429. }
  1430. s->comp_index[i] = index;
  1431. s->nb_blocks[i] = s->h_count[index] * s->v_count[index];
  1432. s->h_scount[i] = s->h_count[index];
  1433. s->v_scount[i] = s->v_count[index];
  1434. s->dc_index[i] = get_bits(&s->gb, 4);
  1435. s->ac_index[i] = get_bits(&s->gb, 4);
  1436. if (s->dc_index[i] < 0 || s->ac_index[i] < 0 ||
  1437. s->dc_index[i] >= 4 || s->ac_index[i] >= 4)
  1438. goto out_of_range;
  1439. #if 0 //buggy
  1440. switch(s->start_code)
  1441. {
  1442. case SOF0:
  1443. if (dc_index[i] > 1 || ac_index[i] > 1)
  1444. goto out_of_range;
  1445. break;
  1446. case SOF1:
  1447. case SOF2:
  1448. if (dc_index[i] > 3 || ac_index[i] > 3)
  1449. goto out_of_range;
  1450. break;
  1451. case SOF3:
  1452. if (dc_index[i] > 3 || ac_index[i] != 0)
  1453. goto out_of_range;
  1454. break;
  1455. }
  1456. #endif
  1457. }
  1458. predictor= get_bits(&s->gb, 8); /* JPEG Ss / lossless JPEG predictor /JPEG-LS NEAR */
  1459. ilv= get_bits(&s->gb, 8); /* JPEG Se / JPEG-LS ILV */
  1460. prev_shift = get_bits(&s->gb, 4); /* Ah */
  1461. point_transform= get_bits(&s->gb, 4); /* Al */
  1462. for(i=0;i<nb_components;i++)
  1463. s->last_dc[i] = 1024;
  1464. if (nb_components > 1) {
  1465. /* interleaved stream */
  1466. s->mb_width = (s->width + s->h_max * block_size - 1) / (s->h_max * block_size);
  1467. s->mb_height = (s->height + s->v_max * block_size - 1) / (s->v_max * block_size);
  1468. } else if(!s->ls) { /* skip this for JPEG-LS */
  1469. h = s->h_max / s->h_scount[0];
  1470. v = s->v_max / s->v_scount[0];
  1471. s->mb_width = (s->width + h * block_size - 1) / (h * block_size);
  1472. s->mb_height = (s->height + v * block_size - 1) / (v * block_size);
  1473. s->nb_blocks[0] = 1;
  1474. s->h_scount[0] = 1;
  1475. s->v_scount[0] = 1;
  1476. }
  1477. if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1478. 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" : "",
  1479. predictor, point_transform, ilv, s->bits,
  1480. s->pegasus_rct ? "PRCT" : (s->rct ? "RCT" : ""));
  1481. /* mjpeg-b can have padding bytes between sos and image data, skip them */
  1482. for (i = s->mjpb_skiptosod; i > 0; i--)
  1483. skip_bits(&s->gb, 8);
  1484. if(s->lossless){
  1485. if(s->ls){
  1486. // for(){
  1487. // reset_ls_coding_parameters(s, 0);
  1488. ls_decode_picture(s, predictor, point_transform, ilv);
  1489. }else{
  1490. if(s->rgb){
  1491. if(ljpeg_decode_rgb_scan(s, predictor, point_transform) < 0)
  1492. return -1;
  1493. }else{
  1494. if(ljpeg_decode_yuv_scan(s, predictor, point_transform) < 0)
  1495. return -1;
  1496. }
  1497. }
  1498. }else{
  1499. if(mjpeg_decode_scan(s, nb_components, predictor, ilv, prev_shift, point_transform) < 0)
  1500. return -1;
  1501. }
  1502. emms_c();
  1503. return 0;
  1504. out_of_range:
  1505. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: ac/dc index out of range\n");
  1506. return -1;
  1507. }
  1508. static int mjpeg_decode_dri(MJpegDecodeContext *s)
  1509. {
  1510. if (get_bits(&s->gb, 16) != 4)
  1511. return -1;
  1512. s->restart_interval = get_bits(&s->gb, 16);
  1513. s->restart_count = 0;
  1514. av_log(s->avctx, AV_LOG_DEBUG, "restart interval: %d\n", s->restart_interval);
  1515. return 0;
  1516. }
  1517. static int mjpeg_decode_app(MJpegDecodeContext *s)
  1518. {
  1519. int len, id;
  1520. len = get_bits(&s->gb, 16);
  1521. if (len < 5)
  1522. return -1;
  1523. if(8*len + get_bits_count(&s->gb) > s->gb.size_in_bits)
  1524. return -1;
  1525. id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1526. id = be2me_32(id);
  1527. len -= 6;
  1528. if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1529. av_log(s->avctx, AV_LOG_DEBUG, "APPx %8X\n", id);
  1530. }
  1531. /* buggy AVID, it puts EOI only at every 10th frame */
  1532. /* also this fourcc is used by non-avid files too, it holds some
  1533. informations, but it's always present in AVID creates files */
  1534. if (id == ff_get_fourcc("AVI1"))
  1535. {
  1536. /* structure:
  1537. 4bytes AVI1
  1538. 1bytes polarity
  1539. 1bytes always zero
  1540. 4bytes field_size
  1541. 4bytes field_size_less_padding
  1542. */
  1543. s->buggy_avid = 1;
  1544. // if (s->first_picture)
  1545. // printf("mjpeg: workarounding buggy AVID\n");
  1546. s->interlace_polarity = get_bits(&s->gb, 8);
  1547. #if 0
  1548. skip_bits(&s->gb, 8);
  1549. skip_bits(&s->gb, 32);
  1550. skip_bits(&s->gb, 32);
  1551. len -= 10;
  1552. #endif
  1553. // if (s->interlace_polarity)
  1554. // printf("mjpeg: interlace polarity: %d\n", s->interlace_polarity);
  1555. goto out;
  1556. }
  1557. // len -= 2;
  1558. if (id == ff_get_fourcc("JFIF"))
  1559. {
  1560. int t_w, t_h, v1, v2;
  1561. skip_bits(&s->gb, 8); /* the trailing zero-byte */
  1562. v1= get_bits(&s->gb, 8);
  1563. v2= get_bits(&s->gb, 8);
  1564. skip_bits(&s->gb, 8);
  1565. s->avctx->sample_aspect_ratio.num= get_bits(&s->gb, 16);
  1566. s->avctx->sample_aspect_ratio.den= get_bits(&s->gb, 16);
  1567. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1568. av_log(s->avctx, AV_LOG_INFO, "mjpeg: JFIF header found (version: %x.%x) SAR=%d/%d\n",
  1569. v1, v2,
  1570. s->avctx->sample_aspect_ratio.num,
  1571. s->avctx->sample_aspect_ratio.den
  1572. );
  1573. t_w = get_bits(&s->gb, 8);
  1574. t_h = get_bits(&s->gb, 8);
  1575. if (t_w && t_h)
  1576. {
  1577. /* skip thumbnail */
  1578. if (len-10-(t_w*t_h*3) > 0)
  1579. len -= t_w*t_h*3;
  1580. }
  1581. len -= 10;
  1582. goto out;
  1583. }
  1584. if (id == ff_get_fourcc("Adob") && (get_bits(&s->gb, 8) == 'e'))
  1585. {
  1586. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1587. av_log(s->avctx, AV_LOG_INFO, "mjpeg: Adobe header found\n");
  1588. skip_bits(&s->gb, 16); /* version */
  1589. skip_bits(&s->gb, 16); /* flags0 */
  1590. skip_bits(&s->gb, 16); /* flags1 */
  1591. skip_bits(&s->gb, 8); /* transform */
  1592. len -= 7;
  1593. goto out;
  1594. }
  1595. if (id == ff_get_fourcc("LJIF")){
  1596. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1597. av_log(s->avctx, AV_LOG_INFO, "Pegasus lossless jpeg header found\n");
  1598. skip_bits(&s->gb, 16); /* version ? */
  1599. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1600. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1601. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1602. switch( get_bits(&s->gb, 8)){
  1603. case 1:
  1604. s->rgb= 1;
  1605. s->pegasus_rct=0;
  1606. break;
  1607. case 2:
  1608. s->rgb= 1;
  1609. s->pegasus_rct=1;
  1610. break;
  1611. default:
  1612. av_log(s->avctx, AV_LOG_ERROR, "unknown colorspace\n");
  1613. }
  1614. len -= 9;
  1615. goto out;
  1616. }
  1617. /* Apple MJPEG-A */
  1618. if ((s->start_code == APP1) && (len > (0x28 - 8)))
  1619. {
  1620. id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1621. id = be2me_32(id);
  1622. len -= 4;
  1623. if (id == ff_get_fourcc("mjpg")) /* Apple MJPEG-A */
  1624. {
  1625. #if 0
  1626. skip_bits(&s->gb, 32); /* field size */
  1627. skip_bits(&s->gb, 32); /* pad field size */
  1628. skip_bits(&s->gb, 32); /* next off */
  1629. skip_bits(&s->gb, 32); /* quant off */
  1630. skip_bits(&s->gb, 32); /* huff off */
  1631. skip_bits(&s->gb, 32); /* image off */
  1632. skip_bits(&s->gb, 32); /* scan off */
  1633. skip_bits(&s->gb, 32); /* data off */
  1634. #endif
  1635. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1636. av_log(s->avctx, AV_LOG_INFO, "mjpeg: Apple MJPEG-A header found\n");
  1637. }
  1638. }
  1639. out:
  1640. /* slow but needed for extreme adobe jpegs */
  1641. if (len < 0)
  1642. av_log(s->avctx, AV_LOG_ERROR, "mjpeg: error, decode_app parser read over the end\n");
  1643. while(--len > 0)
  1644. skip_bits(&s->gb, 8);
  1645. return 0;
  1646. }
  1647. static int mjpeg_decode_com(MJpegDecodeContext *s)
  1648. {
  1649. int len = get_bits(&s->gb, 16);
  1650. if (len >= 2 && 8*len - 16 + get_bits_count(&s->gb) <= s->gb.size_in_bits) {
  1651. char *cbuf = av_malloc(len - 1);
  1652. if (cbuf) {
  1653. int i;
  1654. for (i = 0; i < len - 2; i++)
  1655. cbuf[i] = get_bits(&s->gb, 8);
  1656. if (i > 0 && cbuf[i-1] == '\n')
  1657. cbuf[i-1] = 0;
  1658. else
  1659. cbuf[i] = 0;
  1660. if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1661. av_log(s->avctx, AV_LOG_INFO, "mjpeg comment: '%s'\n", cbuf);
  1662. /* buggy avid, it puts EOI only at every 10th frame */
  1663. if (!strcmp(cbuf, "AVID"))
  1664. {
  1665. s->buggy_avid = 1;
  1666. // if (s->first_picture)
  1667. // printf("mjpeg: workarounding buggy AVID\n");
  1668. }
  1669. else if(!strcmp(cbuf, "CS=ITU601")){
  1670. s->cs_itu601= 1;
  1671. }
  1672. av_free(cbuf);
  1673. }
  1674. }
  1675. return 0;
  1676. }
  1677. #if 0
  1678. static int valid_marker_list[] =
  1679. {
  1680. /* 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f */
  1681. /* 0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1682. /* 1 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1683. /* 2 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1684. /* 3 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1685. /* 4 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1686. /* 5 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1687. /* 6 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1688. /* 7 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1689. /* 8 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1690. /* 9 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1691. /* a */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1692. /* b */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1693. /* c */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1694. /* d */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1695. /* e */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1696. /* f */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
  1697. }
  1698. #endif
  1699. /* return the 8 bit start code value and update the search
  1700. state. Return -1 if no start code found */
  1701. static int find_marker(uint8_t **pbuf_ptr, uint8_t *buf_end)
  1702. {
  1703. uint8_t *buf_ptr;
  1704. unsigned int v, v2;
  1705. int val;
  1706. #ifdef DEBUG
  1707. int skipped=0;
  1708. #endif
  1709. buf_ptr = *pbuf_ptr;
  1710. while (buf_ptr < buf_end) {
  1711. v = *buf_ptr++;
  1712. v2 = *buf_ptr;
  1713. if ((v == 0xff) && (v2 >= 0xc0) && (v2 <= 0xfe) && buf_ptr < buf_end) {
  1714. val = *buf_ptr++;
  1715. goto found;
  1716. }
  1717. #ifdef DEBUG
  1718. skipped++;
  1719. #endif
  1720. }
  1721. val = -1;
  1722. found:
  1723. #ifdef DEBUG
  1724. av_log(NULL, AV_LOG_VERBOSE, "find_marker skipped %d bytes\n", skipped);
  1725. #endif
  1726. *pbuf_ptr = buf_ptr;
  1727. return val;
  1728. }
  1729. static int mjpeg_decode_frame(AVCodecContext *avctx,
  1730. void *data, int *data_size,
  1731. uint8_t *buf, int buf_size)
  1732. {
  1733. MJpegDecodeContext *s = avctx->priv_data;
  1734. uint8_t *buf_end, *buf_ptr;
  1735. int start_code;
  1736. AVFrame *picture = data;
  1737. buf_ptr = buf;
  1738. buf_end = buf + buf_size;
  1739. while (buf_ptr < buf_end) {
  1740. /* find start next marker */
  1741. start_code = find_marker(&buf_ptr, buf_end);
  1742. {
  1743. /* EOF */
  1744. if (start_code < 0) {
  1745. goto the_end;
  1746. } else {
  1747. av_log(avctx, AV_LOG_DEBUG, "marker=%x avail_size_in_buf=%d\n", start_code, buf_end - buf_ptr);
  1748. if ((buf_end - buf_ptr) > s->buffer_size)
  1749. {
  1750. av_free(s->buffer);
  1751. s->buffer_size = buf_end-buf_ptr;
  1752. s->buffer = av_malloc(s->buffer_size + FF_INPUT_BUFFER_PADDING_SIZE);
  1753. av_log(avctx, AV_LOG_DEBUG, "buffer too small, expanding to %d bytes\n",
  1754. s->buffer_size);
  1755. }
  1756. /* unescape buffer of SOS, use special treatment for JPEG-LS */
  1757. if (start_code == SOS && !s->ls)
  1758. {
  1759. uint8_t *src = buf_ptr;
  1760. uint8_t *dst = s->buffer;
  1761. while (src<buf_end)
  1762. {
  1763. uint8_t x = *(src++);
  1764. *(dst++) = x;
  1765. if (avctx->codec_id != CODEC_ID_THP)
  1766. {
  1767. if (x == 0xff) {
  1768. while (src < buf_end && x == 0xff)
  1769. x = *(src++);
  1770. if (x >= 0xd0 && x <= 0xd7)
  1771. *(dst++) = x;
  1772. else if (x)
  1773. break;
  1774. }
  1775. }
  1776. }
  1777. init_get_bits(&s->gb, s->buffer, (dst - s->buffer)*8);
  1778. av_log(avctx, AV_LOG_DEBUG, "escaping removed %d bytes\n",
  1779. (buf_end - buf_ptr) - (dst - s->buffer));
  1780. }
  1781. else if(start_code == SOS && s->ls){
  1782. uint8_t *src = buf_ptr;
  1783. uint8_t *dst = s->buffer;
  1784. int bit_count = 0;
  1785. int t = 0, b = 0;
  1786. PutBitContext pb;
  1787. s->cur_scan++;
  1788. /* find marker */
  1789. while (src + t < buf_end){
  1790. uint8_t x = src[t++];
  1791. if (x == 0xff){
  1792. while((src + t < buf_end) && x == 0xff)
  1793. x = src[t++];
  1794. if (x & 0x80) {
  1795. t -= 2;
  1796. break;
  1797. }
  1798. }
  1799. }
  1800. bit_count = t * 8;
  1801. init_put_bits(&pb, dst, t);
  1802. /* unescape bitstream */
  1803. while(b < t){
  1804. uint8_t x = src[b++];
  1805. put_bits(&pb, 8, x);
  1806. if(x == 0xFF){
  1807. x = src[b++];
  1808. put_bits(&pb, 7, x);
  1809. bit_count--;
  1810. }
  1811. }
  1812. flush_put_bits(&pb);
  1813. init_get_bits(&s->gb, dst, bit_count);
  1814. }
  1815. else
  1816. init_get_bits(&s->gb, buf_ptr, (buf_end - buf_ptr)*8);
  1817. s->start_code = start_code;
  1818. if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1819. av_log(avctx, AV_LOG_DEBUG, "startcode: %X\n", start_code);
  1820. }
  1821. /* process markers */
  1822. if (start_code >= 0xd0 && start_code <= 0xd7) {
  1823. av_log(avctx, AV_LOG_DEBUG, "restart marker: %d\n", start_code&0x0f);
  1824. /* APP fields */
  1825. } else if (start_code >= APP0 && start_code <= APP15) {
  1826. mjpeg_decode_app(s);
  1827. /* Comment */
  1828. } else if (start_code == COM){
  1829. mjpeg_decode_com(s);
  1830. }
  1831. switch(start_code) {
  1832. case SOI:
  1833. s->restart_interval = 0;
  1834. s->restart_count = 0;
  1835. /* nothing to do on SOI */
  1836. break;
  1837. case DQT:
  1838. mjpeg_decode_dqt(s);
  1839. break;
  1840. case DHT:
  1841. if(mjpeg_decode_dht(s) < 0){
  1842. av_log(avctx, AV_LOG_ERROR, "huffman table decode error\n");
  1843. return -1;
  1844. }
  1845. break;
  1846. case SOF0:
  1847. s->lossless=0;
  1848. s->ls=0;
  1849. s->progressive=0;
  1850. if (mjpeg_decode_sof(s) < 0)
  1851. return -1;
  1852. break;
  1853. case SOF2:
  1854. s->lossless=0;
  1855. s->ls=0;
  1856. s->progressive=1;
  1857. if (mjpeg_decode_sof(s) < 0)
  1858. return -1;
  1859. break;
  1860. case SOF3:
  1861. s->lossless=1;
  1862. s->ls=0;
  1863. s->progressive=0;
  1864. if (mjpeg_decode_sof(s) < 0)
  1865. return -1;
  1866. break;
  1867. case SOF48:
  1868. s->lossless=1;
  1869. s->ls=1;
  1870. s->progressive=0;
  1871. if (mjpeg_decode_sof(s) < 0)
  1872. return -1;
  1873. break;
  1874. case LSE:
  1875. if (decode_lse(s) < 0)
  1876. return -1;
  1877. break;
  1878. case EOI:
  1879. s->cur_scan = 0;
  1880. if ((s->buggy_avid && !s->interlaced) || s->restart_interval)
  1881. break;
  1882. eoi_parser:
  1883. {
  1884. if (s->interlaced) {
  1885. s->bottom_field ^= 1;
  1886. /* if not bottom field, do not output image yet */
  1887. if (s->bottom_field == !s->interlace_polarity)
  1888. goto not_the_end;
  1889. }
  1890. *picture = s->picture;
  1891. *data_size = sizeof(AVFrame);
  1892. if(!s->lossless){
  1893. picture->quality= FFMAX(FFMAX(s->qscale[0], s->qscale[1]), s->qscale[2]);
  1894. picture->qstride= 0;
  1895. picture->qscale_table= s->qscale_table;
  1896. memset(picture->qscale_table, picture->quality, (s->width+15)/16);
  1897. if(avctx->debug & FF_DEBUG_QP)
  1898. av_log(avctx, AV_LOG_DEBUG, "QP: %d\n", picture->quality);
  1899. picture->quality*= FF_QP2LAMBDA;
  1900. }
  1901. goto the_end;
  1902. }
  1903. break;
  1904. case SOS:
  1905. mjpeg_decode_sos(s);
  1906. /* buggy avid puts EOI every 10-20th frame */
  1907. /* if restart period is over process EOI */
  1908. if ((s->buggy_avid && !s->interlaced) || s->restart_interval)
  1909. goto eoi_parser;
  1910. break;
  1911. case DRI:
  1912. mjpeg_decode_dri(s);
  1913. break;
  1914. case SOF1:
  1915. case SOF5:
  1916. case SOF6:
  1917. case SOF7:
  1918. case SOF9:
  1919. case SOF10:
  1920. case SOF11:
  1921. case SOF13:
  1922. case SOF14:
  1923. case SOF15:
  1924. case JPG:
  1925. av_log(avctx, AV_LOG_ERROR, "mjpeg: unsupported coding type (%x)\n", start_code);
  1926. break;
  1927. // default:
  1928. // printf("mjpeg: unsupported marker (%x)\n", start_code);
  1929. // break;
  1930. }
  1931. not_the_end:
  1932. /* eof process start code */
  1933. buf_ptr += (get_bits_count(&s->gb)+7)/8;
  1934. av_log(avctx, AV_LOG_DEBUG, "marker parser used %d bytes (%d bits)\n",
  1935. (get_bits_count(&s->gb)+7)/8, get_bits_count(&s->gb));
  1936. }
  1937. }
  1938. }
  1939. the_end:
  1940. av_log(avctx, AV_LOG_DEBUG, "mjpeg decode frame unused %d bytes\n", buf_end - buf_ptr);
  1941. // return buf_end - buf_ptr;
  1942. return buf_ptr - buf;
  1943. }
  1944. static int mjpegb_decode_frame(AVCodecContext *avctx,
  1945. void *data, int *data_size,
  1946. uint8_t *buf, int buf_size)
  1947. {
  1948. MJpegDecodeContext *s = avctx->priv_data;
  1949. uint8_t *buf_end, *buf_ptr;
  1950. AVFrame *picture = data;
  1951. GetBitContext hgb; /* for the header */
  1952. uint32_t dqt_offs, dht_offs, sof_offs, sos_offs, second_field_offs;
  1953. uint32_t field_size, sod_offs;
  1954. buf_ptr = buf;
  1955. buf_end = buf + buf_size;
  1956. read_header:
  1957. /* reset on every SOI */
  1958. s->restart_interval = 0;
  1959. s->restart_count = 0;
  1960. s->mjpb_skiptosod = 0;
  1961. init_get_bits(&hgb, buf_ptr, /*buf_size*/(buf_end - buf_ptr)*8);
  1962. skip_bits(&hgb, 32); /* reserved zeros */
  1963. if (get_bits_long(&hgb, 32) != MKBETAG('m','j','p','g'))
  1964. {
  1965. av_log(avctx, AV_LOG_WARNING, "not mjpeg-b (bad fourcc)\n");
  1966. return 0;
  1967. }
  1968. field_size = get_bits_long(&hgb, 32); /* field size */
  1969. av_log(avctx, AV_LOG_DEBUG, "field size: 0x%x\n", field_size);
  1970. skip_bits(&hgb, 32); /* padded field size */
  1971. second_field_offs = get_bits_long(&hgb, 32);
  1972. av_log(avctx, AV_LOG_DEBUG, "second field offs: 0x%x\n", second_field_offs);
  1973. dqt_offs = get_bits_long(&hgb, 32);
  1974. av_log(avctx, AV_LOG_DEBUG, "dqt offs: 0x%x\n", dqt_offs);
  1975. if (dqt_offs)
  1976. {
  1977. init_get_bits(&s->gb, buf+dqt_offs, (buf_end - (buf+dqt_offs))*8);
  1978. s->start_code = DQT;
  1979. mjpeg_decode_dqt(s);
  1980. }
  1981. dht_offs = get_bits_long(&hgb, 32);
  1982. av_log(avctx, AV_LOG_DEBUG, "dht offs: 0x%x\n", dht_offs);
  1983. if (dht_offs)
  1984. {
  1985. init_get_bits(&s->gb, buf+dht_offs, (buf_end - (buf+dht_offs))*8);
  1986. s->start_code = DHT;
  1987. mjpeg_decode_dht(s);
  1988. }
  1989. sof_offs = get_bits_long(&hgb, 32);
  1990. av_log(avctx, AV_LOG_DEBUG, "sof offs: 0x%x\n", sof_offs);
  1991. if (sof_offs)
  1992. {
  1993. init_get_bits(&s->gb, buf+sof_offs, (buf_end - (buf+sof_offs))*8);
  1994. s->start_code = SOF0;
  1995. if (mjpeg_decode_sof(s) < 0)
  1996. return -1;
  1997. }
  1998. sos_offs = get_bits_long(&hgb, 32);
  1999. av_log(avctx, AV_LOG_DEBUG, "sos offs: 0x%x\n", sos_offs);
  2000. sod_offs = get_bits_long(&hgb, 32);
  2001. av_log(avctx, AV_LOG_DEBUG, "sod offs: 0x%x\n", sod_offs);
  2002. if (sos_offs)
  2003. {
  2004. // init_get_bits(&s->gb, buf+sos_offs, (buf_end - (buf+sos_offs))*8);
  2005. init_get_bits(&s->gb, buf+sos_offs, field_size*8);
  2006. s->mjpb_skiptosod = (sod_offs - sos_offs - show_bits(&s->gb, 16));
  2007. s->start_code = SOS;
  2008. mjpeg_decode_sos(s);
  2009. }
  2010. if (s->interlaced) {
  2011. s->bottom_field ^= 1;
  2012. /* if not bottom field, do not output image yet */
  2013. if (s->bottom_field && second_field_offs)
  2014. {
  2015. buf_ptr = buf + second_field_offs;
  2016. second_field_offs = 0;
  2017. goto read_header;
  2018. }
  2019. }
  2020. //XXX FIXME factorize, this looks very similar to the EOI code
  2021. *picture= s->picture;
  2022. *data_size = sizeof(AVFrame);
  2023. if(!s->lossless){
  2024. picture->quality= FFMAX(FFMAX(s->qscale[0], s->qscale[1]), s->qscale[2]);
  2025. picture->qstride= 0;
  2026. picture->qscale_table= s->qscale_table;
  2027. memset(picture->qscale_table, picture->quality, (s->width+15)/16);
  2028. if(avctx->debug & FF_DEBUG_QP)
  2029. av_log(avctx, AV_LOG_DEBUG, "QP: %d\n", picture->quality);
  2030. picture->quality*= FF_QP2LAMBDA;
  2031. }
  2032. return buf_ptr - buf;
  2033. }
  2034. #include "sp5x.h"
  2035. static int sp5x_decode_frame(AVCodecContext *avctx,
  2036. void *data, int *data_size,
  2037. uint8_t *buf, int buf_size)
  2038. {
  2039. #if 0
  2040. MJpegDecodeContext *s = avctx->priv_data;
  2041. #endif
  2042. const int qscale = 5;
  2043. uint8_t *buf_ptr, *buf_end, *recoded;
  2044. int i = 0, j = 0;
  2045. if (!avctx->width || !avctx->height)
  2046. return -1;
  2047. buf_ptr = buf;
  2048. buf_end = buf + buf_size;
  2049. #if 1
  2050. recoded = av_mallocz(buf_size + 1024);
  2051. if (!recoded)
  2052. return -1;
  2053. /* SOI */
  2054. recoded[j++] = 0xFF;
  2055. recoded[j++] = 0xD8;
  2056. memcpy(recoded+j, &sp5x_data_dqt[0], sizeof(sp5x_data_dqt));
  2057. memcpy(recoded+j+5, &sp5x_quant_table[qscale * 2], 64);
  2058. memcpy(recoded+j+70, &sp5x_quant_table[(qscale * 2) + 1], 64);
  2059. j += sizeof(sp5x_data_dqt);
  2060. memcpy(recoded+j, &sp5x_data_dht[0], sizeof(sp5x_data_dht));
  2061. j += sizeof(sp5x_data_dht);
  2062. memcpy(recoded+j, &sp5x_data_sof[0], sizeof(sp5x_data_sof));
  2063. recoded[j+5] = (avctx->coded_height >> 8) & 0xFF;
  2064. recoded[j+6] = avctx->coded_height & 0xFF;
  2065. recoded[j+7] = (avctx->coded_width >> 8) & 0xFF;
  2066. recoded[j+8] = avctx->coded_width & 0xFF;
  2067. j += sizeof(sp5x_data_sof);
  2068. memcpy(recoded+j, &sp5x_data_sos[0], sizeof(sp5x_data_sos));
  2069. j += sizeof(sp5x_data_sos);
  2070. for (i = 14; i < buf_size && j < buf_size+1024-2; i++)
  2071. {
  2072. recoded[j++] = buf[i];
  2073. if (buf[i] == 0xff)
  2074. recoded[j++] = 0;
  2075. }
  2076. /* EOI */
  2077. recoded[j++] = 0xFF;
  2078. recoded[j++] = 0xD9;
  2079. i = mjpeg_decode_frame(avctx, data, data_size, recoded, j);
  2080. av_free(recoded);
  2081. #else
  2082. /* SOF */
  2083. s->bits = 8;
  2084. s->width = avctx->coded_width;
  2085. s->height = avctx->coded_height;
  2086. s->nb_components = 3;
  2087. s->component_id[0] = 0;
  2088. s->h_count[0] = 2;
  2089. s->v_count[0] = 2;
  2090. s->quant_index[0] = 0;
  2091. s->component_id[1] = 1;
  2092. s->h_count[1] = 1;
  2093. s->v_count[1] = 1;
  2094. s->quant_index[1] = 1;
  2095. s->component_id[2] = 2;
  2096. s->h_count[2] = 1;
  2097. s->v_count[2] = 1;
  2098. s->quant_index[2] = 1;
  2099. s->h_max = 2;
  2100. s->v_max = 2;
  2101. s->qscale_table = av_mallocz((s->width+15)/16);
  2102. avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420;
  2103. s->interlaced = 0;
  2104. s->picture.reference = 0;
  2105. if (avctx->get_buffer(avctx, &s->picture) < 0)
  2106. {
  2107. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  2108. return -1;
  2109. }
  2110. s->picture.pict_type = I_TYPE;
  2111. s->picture.key_frame = 1;
  2112. for (i = 0; i < 3; i++)
  2113. s->linesize[i] = s->picture.linesize[i] << s->interlaced;
  2114. /* DQT */
  2115. for (i = 0; i < 64; i++)
  2116. {
  2117. j = s->scantable.permutated[i];
  2118. s->quant_matrixes[0][j] = sp5x_quant_table[(qscale * 2) + i];
  2119. }
  2120. s->qscale[0] = FFMAX(
  2121. s->quant_matrixes[0][s->scantable.permutated[1]],
  2122. s->quant_matrixes[0][s->scantable.permutated[8]]) >> 1;
  2123. for (i = 0; i < 64; i++)
  2124. {
  2125. j = s->scantable.permutated[i];
  2126. s->quant_matrixes[1][j] = sp5x_quant_table[(qscale * 2) + 1 + i];
  2127. }
  2128. s->qscale[1] = FFMAX(
  2129. s->quant_matrixes[1][s->scantable.permutated[1]],
  2130. s->quant_matrixes[1][s->scantable.permutated[8]]) >> 1;
  2131. /* DHT */
  2132. /* SOS */
  2133. s->comp_index[0] = 0;
  2134. s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
  2135. s->h_scount[0] = s->h_count[0];
  2136. s->v_scount[0] = s->v_count[0];
  2137. s->dc_index[0] = 0;
  2138. s->ac_index[0] = 0;
  2139. s->comp_index[1] = 1;
  2140. s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
  2141. s->h_scount[1] = s->h_count[1];
  2142. s->v_scount[1] = s->v_count[1];
  2143. s->dc_index[1] = 1;
  2144. s->ac_index[1] = 1;
  2145. s->comp_index[2] = 2;
  2146. s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
  2147. s->h_scount[2] = s->h_count[2];
  2148. s->v_scount[2] = s->v_count[2];
  2149. s->dc_index[2] = 1;
  2150. s->ac_index[2] = 1;
  2151. for (i = 0; i < 3; i++)
  2152. s->last_dc[i] = 1024;
  2153. s->mb_width = (s->width * s->h_max * 8 -1) / (s->h_max * 8);
  2154. s->mb_height = (s->height * s->v_max * 8 -1) / (s->v_max * 8);
  2155. init_get_bits(&s->gb, buf+14, (buf_size-14)*8);
  2156. return mjpeg_decode_scan(s);
  2157. #endif
  2158. return i;
  2159. }
  2160. static int mjpeg_decode_end(AVCodecContext *avctx)
  2161. {
  2162. MJpegDecodeContext *s = avctx->priv_data;
  2163. int i, j;
  2164. av_free(s->buffer);
  2165. av_free(s->qscale_table);
  2166. for(i=0;i<2;i++) {
  2167. for(j=0;j<4;j++)
  2168. free_vlc(&s->vlcs[i][j]);
  2169. }
  2170. return 0;
  2171. }
  2172. static int mjpega_dump_header(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args,
  2173. uint8_t **poutbuf, int *poutbuf_size,
  2174. const uint8_t *buf, int buf_size, int keyframe)
  2175. {
  2176. uint8_t *poutbufp;
  2177. int i;
  2178. if (avctx->codec_id != CODEC_ID_MJPEG) {
  2179. av_log(avctx, AV_LOG_ERROR, "mjpega bitstream filter only applies to mjpeg codec\n");
  2180. return 0;
  2181. }
  2182. *poutbuf_size = 0;
  2183. *poutbuf = av_malloc(buf_size + 44 + FF_INPUT_BUFFER_PADDING_SIZE);
  2184. poutbufp = *poutbuf;
  2185. bytestream_put_byte(&poutbufp, 0xff);
  2186. bytestream_put_byte(&poutbufp, SOI);
  2187. bytestream_put_byte(&poutbufp, 0xff);
  2188. bytestream_put_byte(&poutbufp, APP1);
  2189. bytestream_put_be16(&poutbufp, 42); /* size */
  2190. bytestream_put_be32(&poutbufp, 0);
  2191. bytestream_put_buffer(&poutbufp, "mjpg", 4);
  2192. bytestream_put_be32(&poutbufp, buf_size + 44); /* field size */
  2193. bytestream_put_be32(&poutbufp, buf_size + 44); /* pad field size */
  2194. bytestream_put_be32(&poutbufp, 0); /* next ptr */
  2195. for (i = 0; i < buf_size - 1; i++) {
  2196. if (buf[i] == 0xff) {
  2197. switch (buf[i + 1]) {
  2198. case DQT: /* quant off */
  2199. case DHT: /* huff off */
  2200. case SOF0: /* image off */
  2201. bytestream_put_be32(&poutbufp, i + 46);
  2202. break;
  2203. case SOS:
  2204. bytestream_put_be32(&poutbufp, i + 46); /* scan off */
  2205. bytestream_put_be32(&poutbufp, i + 46 + AV_RB16(buf + i + 2)); /* data off */
  2206. bytestream_put_buffer(&poutbufp, buf + 2, buf_size - 2); /* skip already written SOI */
  2207. *poutbuf_size = poutbufp - *poutbuf;
  2208. return 1;
  2209. case APP1:
  2210. if (i + 8 < buf_size && AV_RL32(buf + i + 8) == ff_get_fourcc("mjpg")) {
  2211. av_log(avctx, AV_LOG_ERROR, "bitstream already formatted\n");
  2212. memcpy(*poutbuf, buf, buf_size);
  2213. *poutbuf_size = buf_size;
  2214. return 1;
  2215. }
  2216. }
  2217. }
  2218. }
  2219. av_freep(poutbuf);
  2220. av_log(avctx, AV_LOG_ERROR, "could not find SOS marker in bitstream\n");
  2221. return 0;
  2222. }
  2223. AVCodec mjpeg_decoder = {
  2224. "mjpeg",
  2225. CODEC_TYPE_VIDEO,
  2226. CODEC_ID_MJPEG,
  2227. sizeof(MJpegDecodeContext),
  2228. mjpeg_decode_init,
  2229. NULL,
  2230. mjpeg_decode_end,
  2231. mjpeg_decode_frame,
  2232. CODEC_CAP_DR1,
  2233. NULL
  2234. };
  2235. AVCodec thp_decoder = {
  2236. "thp",
  2237. CODEC_TYPE_VIDEO,
  2238. CODEC_ID_THP,
  2239. sizeof(MJpegDecodeContext),
  2240. mjpeg_decode_init,
  2241. NULL,
  2242. mjpeg_decode_end,
  2243. mjpeg_decode_frame,
  2244. CODEC_CAP_DR1,
  2245. NULL
  2246. };
  2247. AVCodec mjpegb_decoder = {
  2248. "mjpegb",
  2249. CODEC_TYPE_VIDEO,
  2250. CODEC_ID_MJPEGB,
  2251. sizeof(MJpegDecodeContext),
  2252. mjpeg_decode_init,
  2253. NULL,
  2254. mjpeg_decode_end,
  2255. mjpegb_decode_frame,
  2256. CODEC_CAP_DR1,
  2257. NULL
  2258. };
  2259. AVCodec sp5x_decoder = {
  2260. "sp5x",
  2261. CODEC_TYPE_VIDEO,
  2262. CODEC_ID_SP5X,
  2263. sizeof(MJpegDecodeContext),
  2264. mjpeg_decode_init,
  2265. NULL,
  2266. mjpeg_decode_end,
  2267. sp5x_decode_frame,
  2268. CODEC_CAP_DR1,
  2269. NULL
  2270. };
  2271. #ifdef CONFIG_ENCODERS
  2272. AVCodec ljpeg_encoder = { //FIXME avoid MPV_* lossless jpeg shouldnt need them
  2273. "ljpeg",
  2274. CODEC_TYPE_VIDEO,
  2275. CODEC_ID_LJPEG,
  2276. sizeof(MpegEncContext),
  2277. MPV_encode_init,
  2278. encode_picture_lossless,
  2279. MPV_encode_end,
  2280. };
  2281. #endif
  2282. AVCodecParser mjpeg_parser = {
  2283. { CODEC_ID_MJPEG },
  2284. sizeof(ParseContext),
  2285. NULL,
  2286. jpeg_parse,
  2287. ff_parse_close,
  2288. };
  2289. AVBitStreamFilter mjpega_dump_header_bsf = {
  2290. "mjpegadump",
  2291. 0,
  2292. mjpega_dump_header,
  2293. };