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.

2626 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 mpeg_enc_ctx_allocated; /* true if decoding context allocated */
  719. int start_code; /* current start code */
  720. int buffer_size;
  721. uint8_t *buffer;
  722. int16_t quant_matrixes[4][64];
  723. VLC vlcs[2][4];
  724. int qscale[4]; ///< quantizer scale calculated from quant_matrixes
  725. int org_height; /* size given at codec init */
  726. int first_picture; /* true if decoding first picture */
  727. int interlaced; /* true if interlaced */
  728. int bottom_field; /* true if bottom field */
  729. int lossless;
  730. int ls;
  731. int progressive;
  732. int rgb;
  733. int rct; /* standard rct */
  734. int pegasus_rct; /* pegasus reversible colorspace transform */
  735. int bits; /* bits per component */
  736. int maxval;
  737. int near; ///< near lossless bound (si 0 for lossless)
  738. int t1,t2,t3;
  739. int reset; ///< context halfing intervall ?rename
  740. int width, height;
  741. int mb_width, mb_height;
  742. int nb_components;
  743. int component_id[MAX_COMPONENTS];
  744. int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */
  745. int v_count[MAX_COMPONENTS];
  746. int comp_index[MAX_COMPONENTS];
  747. int dc_index[MAX_COMPONENTS];
  748. int ac_index[MAX_COMPONENTS];
  749. int nb_blocks[MAX_COMPONENTS];
  750. int h_scount[MAX_COMPONENTS];
  751. int v_scount[MAX_COMPONENTS];
  752. int h_max, v_max; /* maximum h and v counts */
  753. int quant_index[4]; /* quant table index for each component */
  754. int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */
  755. AVFrame picture; /* picture structure */
  756. int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
  757. int8_t *qscale_table;
  758. DECLARE_ALIGNED_8(DCTELEM, block[64]);
  759. ScanTable scantable;
  760. void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  761. void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  762. int restart_interval;
  763. int restart_count;
  764. int buggy_avid;
  765. int cs_itu601;
  766. int interlace_polarity;
  767. int mjpb_skiptosod;
  768. int cur_scan; /* current scan, used by JPEG-LS */
  769. } MJpegDecodeContext;
  770. #include "jpeg_ls.c" //FIXME make jpeg-ls more independant
  771. static int mjpeg_decode_dht(MJpegDecodeContext *s);
  772. static int build_vlc(VLC *vlc, const uint8_t *bits_table, const uint8_t *val_table,
  773. int nb_codes, int use_static, int is_ac)
  774. {
  775. uint8_t huff_size[256+16];
  776. uint16_t huff_code[256+16];
  777. assert(nb_codes <= 256);
  778. memset(huff_size, 0, sizeof(huff_size));
  779. build_huffman_codes(huff_size, huff_code, bits_table, val_table);
  780. if(is_ac){
  781. memmove(huff_size+16, huff_size, sizeof(uint8_t)*nb_codes);
  782. memmove(huff_code+16, huff_code, sizeof(uint16_t)*nb_codes);
  783. memset(huff_size, 0, sizeof(uint8_t)*16);
  784. memset(huff_code, 0, sizeof(uint16_t)*16);
  785. nb_codes += 16;
  786. }
  787. return init_vlc(vlc, 9, nb_codes, huff_size, 1, 1, huff_code, 2, 2, use_static);
  788. }
  789. static int mjpeg_decode_init(AVCodecContext *avctx)
  790. {
  791. MJpegDecodeContext *s = avctx->priv_data;
  792. MpegEncContext s2;
  793. memset(s, 0, sizeof(MJpegDecodeContext));
  794. s->avctx = avctx;
  795. /* ugly way to get the idct & scantable FIXME */
  796. memset(&s2, 0, sizeof(MpegEncContext));
  797. s2.avctx= avctx;
  798. // s2->out_format = FMT_MJPEG;
  799. dsputil_init(&s2.dsp, avctx);
  800. DCT_common_init(&s2);
  801. s->scantable= s2.intra_scantable;
  802. s->idct_put= s2.dsp.idct_put;
  803. s->idct_add= s2.dsp.idct_add;
  804. s->mpeg_enc_ctx_allocated = 0;
  805. s->buffer_size = 0;
  806. s->buffer = NULL;
  807. s->start_code = -1;
  808. s->first_picture = 1;
  809. s->org_height = avctx->coded_height;
  810. build_vlc(&s->vlcs[0][0], bits_dc_luminance, val_dc_luminance, 12, 0, 0);
  811. build_vlc(&s->vlcs[0][1], bits_dc_chrominance, val_dc_chrominance, 12, 0, 0);
  812. build_vlc(&s->vlcs[1][0], bits_ac_luminance, val_ac_luminance, 251, 0, 1);
  813. build_vlc(&s->vlcs[1][1], bits_ac_chrominance, val_ac_chrominance, 251, 0, 1);
  814. if (avctx->flags & CODEC_FLAG_EXTERN_HUFF)
  815. {
  816. av_log(avctx, AV_LOG_INFO, "mjpeg: using external huffman table\n");
  817. init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
  818. mjpeg_decode_dht(s);
  819. /* should check for error - but dunno */
  820. }
  821. return 0;
  822. }
  823. /**
  824. * finds the end of the current frame in the bitstream.
  825. * @return the position of the first byte of the next frame, or -1
  826. */
  827. static int find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
  828. int vop_found, i;
  829. uint16_t state;
  830. vop_found= pc->frame_start_found;
  831. state= pc->state;
  832. i=0;
  833. if(!vop_found){
  834. for(i=0; i<buf_size; i++){
  835. state= (state<<8) | buf[i];
  836. if(state == 0xFFD8){
  837. i++;
  838. vop_found=1;
  839. break;
  840. }
  841. }
  842. }
  843. if(vop_found){
  844. /* EOF considered as end of frame */
  845. if (buf_size == 0)
  846. return 0;
  847. for(; i<buf_size; i++){
  848. state= (state<<8) | buf[i];
  849. if(state == 0xFFD8){
  850. pc->frame_start_found=0;
  851. pc->state=0;
  852. return i-1;
  853. }
  854. }
  855. }
  856. pc->frame_start_found= vop_found;
  857. pc->state= state;
  858. return END_NOT_FOUND;
  859. }
  860. static int jpeg_parse(AVCodecParserContext *s,
  861. AVCodecContext *avctx,
  862. uint8_t **poutbuf, int *poutbuf_size,
  863. const uint8_t *buf, int buf_size)
  864. {
  865. ParseContext *pc = s->priv_data;
  866. int next;
  867. next= find_frame_end(pc, buf, buf_size);
  868. if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
  869. *poutbuf = NULL;
  870. *poutbuf_size = 0;
  871. return buf_size;
  872. }
  873. *poutbuf = (uint8_t *)buf;
  874. *poutbuf_size = buf_size;
  875. return next;
  876. }
  877. /* quantize tables */
  878. static int mjpeg_decode_dqt(MJpegDecodeContext *s)
  879. {
  880. int len, index, i, j;
  881. len = get_bits(&s->gb, 16) - 2;
  882. while (len >= 65) {
  883. /* only 8 bit precision handled */
  884. if (get_bits(&s->gb, 4) != 0)
  885. {
  886. av_log(s->avctx, AV_LOG_ERROR, "dqt: 16bit precision\n");
  887. return -1;
  888. }
  889. index = get_bits(&s->gb, 4);
  890. if (index >= 4)
  891. return -1;
  892. av_log(s->avctx, AV_LOG_DEBUG, "index=%d\n", index);
  893. /* read quant table */
  894. for(i=0;i<64;i++) {
  895. j = s->scantable.permutated[i];
  896. s->quant_matrixes[index][j] = get_bits(&s->gb, 8);
  897. }
  898. //XXX FIXME finetune, and perhaps add dc too
  899. s->qscale[index]= FFMAX(
  900. s->quant_matrixes[index][s->scantable.permutated[1]],
  901. s->quant_matrixes[index][s->scantable.permutated[8]]) >> 1;
  902. av_log(s->avctx, AV_LOG_DEBUG, "qscale[%d]: %d\n", index, s->qscale[index]);
  903. len -= 65;
  904. }
  905. return 0;
  906. }
  907. /* decode huffman tables and build VLC decoders */
  908. static int mjpeg_decode_dht(MJpegDecodeContext *s)
  909. {
  910. int len, index, i, class, n, v, code_max;
  911. uint8_t bits_table[17];
  912. uint8_t val_table[256];
  913. len = get_bits(&s->gb, 16) - 2;
  914. while (len > 0) {
  915. if (len < 17)
  916. return -1;
  917. class = get_bits(&s->gb, 4);
  918. if (class >= 2)
  919. return -1;
  920. index = get_bits(&s->gb, 4);
  921. if (index >= 4)
  922. return -1;
  923. n = 0;
  924. for(i=1;i<=16;i++) {
  925. bits_table[i] = get_bits(&s->gb, 8);
  926. n += bits_table[i];
  927. }
  928. len -= 17;
  929. if (len < n || n > 256)
  930. return -1;
  931. code_max = 0;
  932. for(i=0;i<n;i++) {
  933. v = get_bits(&s->gb, 8);
  934. if (v > code_max)
  935. code_max = v;
  936. val_table[i] = v;
  937. }
  938. len -= n;
  939. /* build VLC and flush previous vlc if present */
  940. free_vlc(&s->vlcs[class][index]);
  941. av_log(s->avctx, AV_LOG_DEBUG, "class=%d index=%d nb_codes=%d\n",
  942. class, index, code_max + 1);
  943. if(build_vlc(&s->vlcs[class][index], bits_table, val_table, code_max + 1, 0, class > 0) < 0){
  944. return -1;
  945. }
  946. }
  947. return 0;
  948. }
  949. static int mjpeg_decode_sof(MJpegDecodeContext *s)
  950. {
  951. int len, nb_components, i, width, height, pix_fmt_id;
  952. /* XXX: verify len field validity */
  953. len = get_bits(&s->gb, 16);
  954. s->bits= get_bits(&s->gb, 8);
  955. if(s->pegasus_rct) s->bits=9;
  956. if(s->bits==9 && !s->pegasus_rct) s->rct=1; //FIXME ugly
  957. if (s->bits != 8 && !s->lossless){
  958. av_log(s->avctx, AV_LOG_ERROR, "only 8 bits/component accepted\n");
  959. return -1;
  960. }
  961. height = get_bits(&s->gb, 16);
  962. width = get_bits(&s->gb, 16);
  963. av_log(s->avctx, AV_LOG_DEBUG, "sof0: picture: %dx%d\n", width, height);
  964. if(avcodec_check_dimensions(s->avctx, width, height))
  965. return -1;
  966. nb_components = get_bits(&s->gb, 8);
  967. if (nb_components <= 0 ||
  968. nb_components > MAX_COMPONENTS)
  969. return -1;
  970. if (s->ls && !(s->bits <= 8 || nb_components == 1)){
  971. av_log(s->avctx, AV_LOG_ERROR, "only <= 8 bits/component or 16-bit gray accepted for JPEG-LS\n");
  972. return -1;
  973. }
  974. s->nb_components = nb_components;
  975. s->h_max = 1;
  976. s->v_max = 1;
  977. for(i=0;i<nb_components;i++) {
  978. /* component id */
  979. s->component_id[i] = get_bits(&s->gb, 8) - 1;
  980. s->h_count[i] = get_bits(&s->gb, 4);
  981. s->v_count[i] = get_bits(&s->gb, 4);
  982. /* compute hmax and vmax (only used in interleaved case) */
  983. if (s->h_count[i] > s->h_max)
  984. s->h_max = s->h_count[i];
  985. if (s->v_count[i] > s->v_max)
  986. s->v_max = s->v_count[i];
  987. s->quant_index[i] = get_bits(&s->gb, 8);
  988. if (s->quant_index[i] >= 4)
  989. return -1;
  990. av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n", i, s->h_count[i],
  991. s->v_count[i], s->component_id[i], s->quant_index[i]);
  992. }
  993. if(s->ls && (s->h_max > 1 || s->v_max > 1)) {
  994. av_log(s->avctx, AV_LOG_ERROR, "Subsampling in JPEG-LS is not supported.\n");
  995. return -1;
  996. }
  997. if(s->v_max==1 && s->h_max==1 && s->lossless==1) s->rgb=1;
  998. /* if different size, realloc/alloc picture */
  999. /* XXX: also check h_count and v_count */
  1000. if (width != s->width || height != s->height) {
  1001. av_freep(&s->qscale_table);
  1002. s->width = width;
  1003. s->height = height;
  1004. /* test interlaced mode */
  1005. if (s->first_picture &&
  1006. s->org_height != 0 &&
  1007. s->height < ((s->org_height * 3) / 4)) {
  1008. s->interlaced = 1;
  1009. // s->bottom_field = (s->interlace_polarity) ? 1 : 0;
  1010. s->bottom_field = 0;
  1011. height *= 2;
  1012. }
  1013. avcodec_set_dimensions(s->avctx, width, height);
  1014. s->qscale_table= av_mallocz((s->width+15)/16);
  1015. s->first_picture = 0;
  1016. }
  1017. if(s->interlaced && s->bottom_field)
  1018. return 0;
  1019. /* XXX: not complete test ! */
  1020. pix_fmt_id = (s->h_count[0] << 20) | (s->v_count[0] << 16) |
  1021. (s->h_count[1] << 12) | (s->v_count[1] << 8) |
  1022. (s->h_count[2] << 4) | s->v_count[2];
  1023. av_log(s->avctx, AV_LOG_DEBUG, "pix fmt id %x\n", pix_fmt_id);
  1024. switch(pix_fmt_id){
  1025. case 0x222222:
  1026. case 0x111111:
  1027. if(s->rgb){
  1028. s->avctx->pix_fmt = PIX_FMT_RGB32;
  1029. }else if(s->nb_components==3)
  1030. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV444P : PIX_FMT_YUVJ444P;
  1031. else
  1032. s->avctx->pix_fmt = PIX_FMT_GRAY8;
  1033. break;
  1034. case 0x211111:
  1035. case 0x221212:
  1036. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV422P : PIX_FMT_YUVJ422P;
  1037. break;
  1038. default:
  1039. case 0x221111:
  1040. s->avctx->pix_fmt = s->cs_itu601 ? PIX_FMT_YUV420P : PIX_FMT_YUVJ420P;
  1041. break;
  1042. }
  1043. if(s->ls){
  1044. if(s->nb_components > 1)
  1045. s->avctx->pix_fmt = PIX_FMT_RGB24;
  1046. else if(s->bits <= 8)
  1047. s->avctx->pix_fmt = PIX_FMT_GRAY8;
  1048. else
  1049. s->avctx->pix_fmt = PIX_FMT_GRAY16;
  1050. }
  1051. if(s->picture.data[0])
  1052. s->avctx->release_buffer(s->avctx, &s->picture);
  1053. s->picture.reference= 0;
  1054. if(s->avctx->get_buffer(s->avctx, &s->picture) < 0){
  1055. av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  1056. return -1;
  1057. }
  1058. s->picture.pict_type= I_TYPE;
  1059. s->picture.key_frame= 1;
  1060. for(i=0; i<3; i++){
  1061. s->linesize[i]= s->picture.linesize[i] << s->interlaced;
  1062. }
  1063. // printf("%d %d %d %d %d %d\n", s->width, s->height, s->linesize[0], s->linesize[1], s->interlaced, s->avctx->height);
  1064. if (len != (8+(3*nb_components)))
  1065. {
  1066. av_log(s->avctx, AV_LOG_DEBUG, "decode_sof0: error, len(%d) mismatch\n", len);
  1067. }
  1068. /* totally blank picture as progressive JPEG will only add details to it */
  1069. if(s->progressive){
  1070. memset(s->picture.data[0], 0, s->picture.linesize[0] * s->height);
  1071. memset(s->picture.data[1], 0, s->picture.linesize[1] * s->height >> (s->v_max - s->v_count[1]));
  1072. memset(s->picture.data[2], 0, s->picture.linesize[2] * s->height >> (s->v_max - s->v_count[2]));
  1073. }
  1074. return 0;
  1075. }
  1076. static inline int mjpeg_decode_dc(MJpegDecodeContext *s, int dc_index)
  1077. {
  1078. int code;
  1079. code = get_vlc2(&s->gb, s->vlcs[0][dc_index].table, 9, 2);
  1080. if (code < 0)
  1081. {
  1082. av_log(s->avctx, AV_LOG_WARNING, "mjpeg_decode_dc: bad vlc: %d:%d (%p)\n", 0, dc_index,
  1083. &s->vlcs[0][dc_index]);
  1084. return 0xffff;
  1085. }
  1086. if(code)
  1087. return get_xbits(&s->gb, code);
  1088. else
  1089. return 0;
  1090. }
  1091. /* decode block and dequantize */
  1092. static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
  1093. int component, int dc_index, int ac_index, int16_t *quant_matrix)
  1094. {
  1095. int code, i, j, level, val;
  1096. /* DC coef */
  1097. val = mjpeg_decode_dc(s, dc_index);
  1098. if (val == 0xffff) {
  1099. av_log(s->avctx, AV_LOG_ERROR, "error dc\n");
  1100. return -1;
  1101. }
  1102. val = val * quant_matrix[0] + s->last_dc[component];
  1103. s->last_dc[component] = val;
  1104. block[0] = val;
  1105. /* AC coefs */
  1106. i = 0;
  1107. {OPEN_READER(re, &s->gb)
  1108. for(;;) {
  1109. UPDATE_CACHE(re, &s->gb);
  1110. GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
  1111. /* EOB */
  1112. if (code == 0x10)
  1113. break;
  1114. i += ((unsigned)code) >> 4;
  1115. if(code != 0x100){
  1116. code &= 0xf;
  1117. if(code > MIN_CACHE_BITS - 16){
  1118. UPDATE_CACHE(re, &s->gb)
  1119. }
  1120. {
  1121. int cache=GET_CACHE(re,&s->gb);
  1122. int sign=(~cache)>>31;
  1123. level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
  1124. }
  1125. LAST_SKIP_BITS(re, &s->gb, code)
  1126. if (i >= 63) {
  1127. if(i == 63){
  1128. j = s->scantable.permutated[63];
  1129. block[j] = level * quant_matrix[j];
  1130. break;
  1131. }
  1132. av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
  1133. return -1;
  1134. }
  1135. j = s->scantable.permutated[i];
  1136. block[j] = level * quant_matrix[j];
  1137. }
  1138. }
  1139. CLOSE_READER(re, &s->gb)}
  1140. return 0;
  1141. }
  1142. /* decode block and dequantize - progressive JPEG version */
  1143. static int decode_block_progressive(MJpegDecodeContext *s, DCTELEM *block,
  1144. int component, int dc_index, int ac_index, int16_t *quant_matrix,
  1145. int ss, int se, int Ah, int Al, int *EOBRUN)
  1146. {
  1147. int code, i, j, level, val, run;
  1148. /* DC coef */
  1149. if(!ss){
  1150. val = mjpeg_decode_dc(s, dc_index);
  1151. if (val == 0xffff) {
  1152. av_log(s->avctx, AV_LOG_ERROR, "error dc\n");
  1153. return -1;
  1154. }
  1155. val = (val * quant_matrix[0] << Al) + s->last_dc[component];
  1156. }else
  1157. val = 0;
  1158. s->last_dc[component] = val;
  1159. block[0] = val;
  1160. if(!se) return 0;
  1161. /* AC coefs */
  1162. if(*EOBRUN){
  1163. (*EOBRUN)--;
  1164. return 0;
  1165. }
  1166. {OPEN_READER(re, &s->gb)
  1167. for(i=ss;;i++) {
  1168. UPDATE_CACHE(re, &s->gb);
  1169. GET_VLC(code, re, &s->gb, s->vlcs[1][ac_index].table, 9, 2)
  1170. /* Progressive JPEG use AC coeffs from zero and this decoder sets offset 16 by default */
  1171. code -= 16;
  1172. if(code & 0xF) {
  1173. i += ((unsigned) code) >> 4;
  1174. code &= 0xf;
  1175. if(code > MIN_CACHE_BITS - 16){
  1176. UPDATE_CACHE(re, &s->gb)
  1177. }
  1178. {
  1179. int cache=GET_CACHE(re,&s->gb);
  1180. int sign=(~cache)>>31;
  1181. level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
  1182. }
  1183. LAST_SKIP_BITS(re, &s->gb, code)
  1184. if (i >= se) {
  1185. if(i == se){
  1186. j = s->scantable.permutated[se];
  1187. block[j] = level * quant_matrix[j] << Al;
  1188. break;
  1189. }
  1190. av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
  1191. return -1;
  1192. }
  1193. j = s->scantable.permutated[i];
  1194. block[j] = level * quant_matrix[j] << Al;
  1195. }else{
  1196. run = ((unsigned) code) >> 4;
  1197. if(run == 0xF){// ZRL - skip 15 coefficients
  1198. i += 15;
  1199. }else{
  1200. val = run;
  1201. run = (1 << run);
  1202. UPDATE_CACHE(re, &s->gb);
  1203. run += (GET_CACHE(re, &s->gb) >> (32 - val)) & (run - 1);
  1204. if(val)
  1205. LAST_SKIP_BITS(re, &s->gb, val);
  1206. *EOBRUN = run - 1;
  1207. break;
  1208. }
  1209. }
  1210. }
  1211. CLOSE_READER(re, &s->gb)}
  1212. return 0;
  1213. }
  1214. static int ljpeg_decode_rgb_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1215. int i, mb_x, mb_y;
  1216. uint16_t buffer[32768][4];
  1217. int left[3], top[3], topleft[3];
  1218. const int linesize= s->linesize[0];
  1219. const int mask= (1<<s->bits)-1;
  1220. if((unsigned)s->mb_width > 32768) //dynamic alloc
  1221. return -1;
  1222. for(i=0; i<3; i++){
  1223. buffer[0][i]= 1 << (s->bits + point_transform - 1);
  1224. }
  1225. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1226. const int modified_predictor= mb_y ? predictor : 1;
  1227. uint8_t *ptr = s->picture.data[0] + (linesize * mb_y);
  1228. if (s->interlaced && s->bottom_field)
  1229. ptr += linesize >> 1;
  1230. for(i=0; i<3; i++){
  1231. top[i]= left[i]= topleft[i]= buffer[0][i];
  1232. }
  1233. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1234. if (s->restart_interval && !s->restart_count)
  1235. s->restart_count = s->restart_interval;
  1236. for(i=0;i<3;i++) {
  1237. int pred;
  1238. topleft[i]= top[i];
  1239. top[i]= buffer[mb_x][i];
  1240. PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
  1241. left[i]=
  1242. buffer[mb_x][i]= mask & (pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform));
  1243. }
  1244. if (s->restart_interval && !--s->restart_count) {
  1245. align_get_bits(&s->gb);
  1246. skip_bits(&s->gb, 16); /* skip RSTn */
  1247. }
  1248. }
  1249. if(s->rct){
  1250. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1251. ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2] - 0x200)>>2);
  1252. ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1253. ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1254. }
  1255. }else if(s->pegasus_rct){
  1256. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1257. ptr[4*mb_x+1] = buffer[mb_x][0] - ((buffer[mb_x][1] + buffer[mb_x][2])>>2);
  1258. ptr[4*mb_x+0] = buffer[mb_x][1] + ptr[4*mb_x+1];
  1259. ptr[4*mb_x+2] = buffer[mb_x][2] + ptr[4*mb_x+1];
  1260. }
  1261. }else{
  1262. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1263. ptr[4*mb_x+0] = buffer[mb_x][0];
  1264. ptr[4*mb_x+1] = buffer[mb_x][1];
  1265. ptr[4*mb_x+2] = buffer[mb_x][2];
  1266. }
  1267. }
  1268. }
  1269. return 0;
  1270. }
  1271. static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor, int point_transform){
  1272. int i, mb_x, mb_y;
  1273. const int nb_components=3;
  1274. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1275. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1276. if (s->restart_interval && !s->restart_count)
  1277. s->restart_count = s->restart_interval;
  1278. if(mb_x==0 || mb_y==0 || s->interlaced){
  1279. for(i=0;i<nb_components;i++) {
  1280. uint8_t *ptr;
  1281. int n, h, v, x, y, c, j, linesize;
  1282. n = s->nb_blocks[i];
  1283. c = s->comp_index[i];
  1284. h = s->h_scount[i];
  1285. v = s->v_scount[i];
  1286. x = 0;
  1287. y = 0;
  1288. linesize= s->linesize[c];
  1289. for(j=0; j<n; j++) {
  1290. int pred;
  1291. ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1292. if(y==0 && mb_y==0){
  1293. if(x==0 && mb_x==0){
  1294. pred= 128 << point_transform;
  1295. }else{
  1296. pred= ptr[-1];
  1297. }
  1298. }else{
  1299. if(x==0 && mb_x==0){
  1300. pred= ptr[-linesize];
  1301. }else{
  1302. PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1303. }
  1304. }
  1305. if (s->interlaced && s->bottom_field)
  1306. ptr += linesize >> 1;
  1307. *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1308. if (++x == h) {
  1309. x = 0;
  1310. y++;
  1311. }
  1312. }
  1313. }
  1314. }else{
  1315. for(i=0;i<nb_components;i++) {
  1316. uint8_t *ptr;
  1317. int n, h, v, x, y, c, j, linesize;
  1318. n = s->nb_blocks[i];
  1319. c = s->comp_index[i];
  1320. h = s->h_scount[i];
  1321. v = s->v_scount[i];
  1322. x = 0;
  1323. y = 0;
  1324. linesize= s->linesize[c];
  1325. for(j=0; j<n; j++) {
  1326. int pred;
  1327. ptr = s->picture.data[c] + (linesize * (v * mb_y + y)) + (h * mb_x + x); //FIXME optimize this crap
  1328. PREDICT(pred, ptr[-linesize-1], ptr[-linesize], ptr[-1], predictor);
  1329. *ptr= pred + (mjpeg_decode_dc(s, s->dc_index[i]) << point_transform);
  1330. if (++x == h) {
  1331. x = 0;
  1332. y++;
  1333. }
  1334. }
  1335. }
  1336. }
  1337. if (s->restart_interval && !--s->restart_count) {
  1338. align_get_bits(&s->gb);
  1339. skip_bits(&s->gb, 16); /* skip RSTn */
  1340. }
  1341. }
  1342. }
  1343. return 0;
  1344. }
  1345. static int mjpeg_decode_scan(MJpegDecodeContext *s, int nb_components, int ss, int se, int Ah, int Al){
  1346. int i, mb_x, mb_y;
  1347. int EOBRUN = 0;
  1348. if(Ah) return 0; /* TODO decode refinement planes too */
  1349. for(mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1350. for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1351. if (s->restart_interval && !s->restart_count)
  1352. s->restart_count = s->restart_interval;
  1353. for(i=0;i<nb_components;i++) {
  1354. uint8_t *ptr;
  1355. int n, h, v, x, y, c, j;
  1356. n = s->nb_blocks[i];
  1357. c = s->comp_index[i];
  1358. h = s->h_scount[i];
  1359. v = s->v_scount[i];
  1360. x = 0;
  1361. y = 0;
  1362. for(j=0;j<n;j++) {
  1363. memset(s->block, 0, sizeof(s->block));
  1364. if (!s->progressive && decode_block(s, s->block, i,
  1365. s->dc_index[i], s->ac_index[i],
  1366. s->quant_matrixes[ s->quant_index[c] ]) < 0) {
  1367. av_log(s->avctx, AV_LOG_ERROR, "error y=%d x=%d\n", mb_y, mb_x);
  1368. return -1;
  1369. }
  1370. if (s->progressive && decode_block_progressive(s, s->block, i,
  1371. s->dc_index[i], s->ac_index[i],
  1372. s->quant_matrixes[ s->quant_index[c] ], ss, se, Ah, Al, &EOBRUN) < 0) {
  1373. av_log(s->avctx, AV_LOG_ERROR, "error y=%d x=%d\n", mb_y, mb_x);
  1374. return -1;
  1375. }
  1376. // av_log(s->avctx, AV_LOG_DEBUG, "mb: %d %d processed\n", mb_y, mb_x);
  1377. ptr = s->picture.data[c] +
  1378. (((s->linesize[c] * (v * mb_y + y) * 8) +
  1379. (h * mb_x + x) * 8) >> s->avctx->lowres);
  1380. if (s->interlaced && s->bottom_field)
  1381. ptr += s->linesize[c] >> 1;
  1382. //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);
  1383. if(!s->progressive)
  1384. s->idct_put(ptr, s->linesize[c], s->block);
  1385. else
  1386. s->idct_add(ptr, s->linesize[c], s->block);
  1387. if (++x == h) {
  1388. x = 0;
  1389. y++;
  1390. }
  1391. }
  1392. }
  1393. /* (< 1350) buggy workaround for Spectralfan.mov, should be fixed */
  1394. if (s->restart_interval && (s->restart_interval < 1350) &&
  1395. !--s->restart_count) {
  1396. align_get_bits(&s->gb);
  1397. skip_bits(&s->gb, 16); /* skip RSTn */
  1398. for (i=0; i<nb_components; i++) /* reset dc */
  1399. s->last_dc[i] = 1024;
  1400. }
  1401. }
  1402. }
  1403. return 0;
  1404. }
  1405. static int mjpeg_decode_sos(MJpegDecodeContext *s)
  1406. {
  1407. int len, nb_components, i, h, v, predictor, point_transform;
  1408. int vmax, hmax, index, id;
  1409. const int block_size= s->lossless ? 1 : 8;
  1410. int ilv, prev_shift;
  1411. /* XXX: verify len field validity */
  1412. len = get_bits(&s->gb, 16);
  1413. nb_components = get_bits(&s->gb, 8);
  1414. if (len != 6+2*nb_components)
  1415. {
  1416. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: invalid len (%d)\n", len);
  1417. return -1;
  1418. }
  1419. vmax = 0;
  1420. hmax = 0;
  1421. for(i=0;i<nb_components;i++) {
  1422. id = get_bits(&s->gb, 8) - 1;
  1423. av_log(s->avctx, AV_LOG_DEBUG, "component: %d\n", id);
  1424. /* find component index */
  1425. for(index=0;index<s->nb_components;index++)
  1426. if (id == s->component_id[index])
  1427. break;
  1428. if (index == s->nb_components)
  1429. {
  1430. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: index(%d) out of components\n", index);
  1431. return -1;
  1432. }
  1433. s->comp_index[i] = index;
  1434. s->nb_blocks[i] = s->h_count[index] * s->v_count[index];
  1435. s->h_scount[i] = s->h_count[index];
  1436. s->v_scount[i] = s->v_count[index];
  1437. s->dc_index[i] = get_bits(&s->gb, 4);
  1438. s->ac_index[i] = get_bits(&s->gb, 4);
  1439. if (s->dc_index[i] < 0 || s->ac_index[i] < 0 ||
  1440. s->dc_index[i] >= 4 || s->ac_index[i] >= 4)
  1441. goto out_of_range;
  1442. #if 0 //buggy
  1443. switch(s->start_code)
  1444. {
  1445. case SOF0:
  1446. if (dc_index[i] > 1 || ac_index[i] > 1)
  1447. goto out_of_range;
  1448. break;
  1449. case SOF1:
  1450. case SOF2:
  1451. if (dc_index[i] > 3 || ac_index[i] > 3)
  1452. goto out_of_range;
  1453. break;
  1454. case SOF3:
  1455. if (dc_index[i] > 3 || ac_index[i] != 0)
  1456. goto out_of_range;
  1457. break;
  1458. }
  1459. #endif
  1460. }
  1461. predictor= get_bits(&s->gb, 8); /* JPEG Ss / lossless JPEG predictor /JPEG-LS NEAR */
  1462. ilv= get_bits(&s->gb, 8); /* JPEG Se / JPEG-LS ILV */
  1463. prev_shift = get_bits(&s->gb, 4); /* Ah */
  1464. point_transform= get_bits(&s->gb, 4); /* Al */
  1465. for(i=0;i<nb_components;i++)
  1466. s->last_dc[i] = 1024;
  1467. if (nb_components > 1) {
  1468. /* interleaved stream */
  1469. s->mb_width = (s->width + s->h_max * block_size - 1) / (s->h_max * block_size);
  1470. s->mb_height = (s->height + s->v_max * block_size - 1) / (s->v_max * block_size);
  1471. } else if(!s->ls) { /* skip this for JPEG-LS */
  1472. h = s->h_max / s->h_scount[0];
  1473. v = s->v_max / s->v_scount[0];
  1474. s->mb_width = (s->width + h * block_size - 1) / (h * block_size);
  1475. s->mb_height = (s->height + v * block_size - 1) / (v * block_size);
  1476. s->nb_blocks[0] = 1;
  1477. s->h_scount[0] = 1;
  1478. s->v_scount[0] = 1;
  1479. }
  1480. if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1481. 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" : "",
  1482. predictor, point_transform, ilv, s->bits,
  1483. s->pegasus_rct ? "PRCT" : (s->rct ? "RCT" : ""));
  1484. /* mjpeg-b can have padding bytes between sos and image data, skip them */
  1485. for (i = s->mjpb_skiptosod; i > 0; i--)
  1486. skip_bits(&s->gb, 8);
  1487. if(s->lossless){
  1488. if(s->ls){
  1489. // for(){
  1490. // reset_ls_coding_parameters(s, 0);
  1491. ls_decode_picture(s, predictor, point_transform, ilv);
  1492. }else{
  1493. if(s->rgb){
  1494. if(ljpeg_decode_rgb_scan(s, predictor, point_transform) < 0)
  1495. return -1;
  1496. }else{
  1497. if(ljpeg_decode_yuv_scan(s, predictor, point_transform) < 0)
  1498. return -1;
  1499. }
  1500. }
  1501. }else{
  1502. if(mjpeg_decode_scan(s, nb_components, predictor, ilv, prev_shift, point_transform) < 0)
  1503. return -1;
  1504. }
  1505. emms_c();
  1506. return 0;
  1507. out_of_range:
  1508. av_log(s->avctx, AV_LOG_ERROR, "decode_sos: ac/dc index out of range\n");
  1509. return -1;
  1510. }
  1511. static int mjpeg_decode_dri(MJpegDecodeContext *s)
  1512. {
  1513. if (get_bits(&s->gb, 16) != 4)
  1514. return -1;
  1515. s->restart_interval = get_bits(&s->gb, 16);
  1516. s->restart_count = 0;
  1517. av_log(s->avctx, AV_LOG_DEBUG, "restart interval: %d\n", s->restart_interval);
  1518. return 0;
  1519. }
  1520. static int mjpeg_decode_app(MJpegDecodeContext *s)
  1521. {
  1522. int len, id;
  1523. len = get_bits(&s->gb, 16);
  1524. if (len < 5)
  1525. return -1;
  1526. if(8*len + get_bits_count(&s->gb) > s->gb.size_in_bits)
  1527. return -1;
  1528. id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1529. id = be2me_32(id);
  1530. len -= 6;
  1531. if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1532. av_log(s->avctx, AV_LOG_DEBUG, "APPx %8X\n", id);
  1533. }
  1534. /* buggy AVID, it puts EOI only at every 10th frame */
  1535. /* also this fourcc is used by non-avid files too, it holds some
  1536. informations, but it's always present in AVID creates files */
  1537. if (id == ff_get_fourcc("AVI1"))
  1538. {
  1539. /* structure:
  1540. 4bytes AVI1
  1541. 1bytes polarity
  1542. 1bytes always zero
  1543. 4bytes field_size
  1544. 4bytes field_size_less_padding
  1545. */
  1546. s->buggy_avid = 1;
  1547. // if (s->first_picture)
  1548. // printf("mjpeg: workarounding buggy AVID\n");
  1549. s->interlace_polarity = get_bits(&s->gb, 8);
  1550. #if 0
  1551. skip_bits(&s->gb, 8);
  1552. skip_bits(&s->gb, 32);
  1553. skip_bits(&s->gb, 32);
  1554. len -= 10;
  1555. #endif
  1556. // if (s->interlace_polarity)
  1557. // printf("mjpeg: interlace polarity: %d\n", s->interlace_polarity);
  1558. goto out;
  1559. }
  1560. // len -= 2;
  1561. if (id == ff_get_fourcc("JFIF"))
  1562. {
  1563. int t_w, t_h, v1, v2;
  1564. skip_bits(&s->gb, 8); /* the trailing zero-byte */
  1565. v1= get_bits(&s->gb, 8);
  1566. v2= get_bits(&s->gb, 8);
  1567. skip_bits(&s->gb, 8);
  1568. s->avctx->sample_aspect_ratio.num= get_bits(&s->gb, 16);
  1569. s->avctx->sample_aspect_ratio.den= get_bits(&s->gb, 16);
  1570. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1571. av_log(s->avctx, AV_LOG_INFO, "mjpeg: JFIF header found (version: %x.%x) SAR=%d/%d\n",
  1572. v1, v2,
  1573. s->avctx->sample_aspect_ratio.num,
  1574. s->avctx->sample_aspect_ratio.den
  1575. );
  1576. t_w = get_bits(&s->gb, 8);
  1577. t_h = get_bits(&s->gb, 8);
  1578. if (t_w && t_h)
  1579. {
  1580. /* skip thumbnail */
  1581. if (len-10-(t_w*t_h*3) > 0)
  1582. len -= t_w*t_h*3;
  1583. }
  1584. len -= 10;
  1585. goto out;
  1586. }
  1587. if (id == ff_get_fourcc("Adob") && (get_bits(&s->gb, 8) == 'e'))
  1588. {
  1589. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1590. av_log(s->avctx, AV_LOG_INFO, "mjpeg: Adobe header found\n");
  1591. skip_bits(&s->gb, 16); /* version */
  1592. skip_bits(&s->gb, 16); /* flags0 */
  1593. skip_bits(&s->gb, 16); /* flags1 */
  1594. skip_bits(&s->gb, 8); /* transform */
  1595. len -= 7;
  1596. goto out;
  1597. }
  1598. if (id == ff_get_fourcc("LJIF")){
  1599. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1600. av_log(s->avctx, AV_LOG_INFO, "Pegasus lossless jpeg header found\n");
  1601. skip_bits(&s->gb, 16); /* version ? */
  1602. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1603. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1604. skip_bits(&s->gb, 16); /* unknwon always 0? */
  1605. switch( get_bits(&s->gb, 8)){
  1606. case 1:
  1607. s->rgb= 1;
  1608. s->pegasus_rct=0;
  1609. break;
  1610. case 2:
  1611. s->rgb= 1;
  1612. s->pegasus_rct=1;
  1613. break;
  1614. default:
  1615. av_log(s->avctx, AV_LOG_ERROR, "unknown colorspace\n");
  1616. }
  1617. len -= 9;
  1618. goto out;
  1619. }
  1620. /* Apple MJPEG-A */
  1621. if ((s->start_code == APP1) && (len > (0x28 - 8)))
  1622. {
  1623. id = (get_bits(&s->gb, 16) << 16) | get_bits(&s->gb, 16);
  1624. id = be2me_32(id);
  1625. len -= 4;
  1626. if (id == ff_get_fourcc("mjpg")) /* Apple MJPEG-A */
  1627. {
  1628. #if 0
  1629. skip_bits(&s->gb, 32); /* field size */
  1630. skip_bits(&s->gb, 32); /* pad field size */
  1631. skip_bits(&s->gb, 32); /* next off */
  1632. skip_bits(&s->gb, 32); /* quant off */
  1633. skip_bits(&s->gb, 32); /* huff off */
  1634. skip_bits(&s->gb, 32); /* image off */
  1635. skip_bits(&s->gb, 32); /* scan off */
  1636. skip_bits(&s->gb, 32); /* data off */
  1637. #endif
  1638. if (s->avctx->debug & FF_DEBUG_PICT_INFO)
  1639. av_log(s->avctx, AV_LOG_INFO, "mjpeg: Apple MJPEG-A header found\n");
  1640. }
  1641. }
  1642. out:
  1643. /* slow but needed for extreme adobe jpegs */
  1644. if (len < 0)
  1645. av_log(s->avctx, AV_LOG_ERROR, "mjpeg: error, decode_app parser read over the end\n");
  1646. while(--len > 0)
  1647. skip_bits(&s->gb, 8);
  1648. return 0;
  1649. }
  1650. static int mjpeg_decode_com(MJpegDecodeContext *s)
  1651. {
  1652. int len = get_bits(&s->gb, 16);
  1653. if (len >= 2 && 8*len - 16 + get_bits_count(&s->gb) <= s->gb.size_in_bits) {
  1654. char *cbuf = av_malloc(len - 1);
  1655. if (cbuf) {
  1656. int i;
  1657. for (i = 0; i < len - 2; i++)
  1658. cbuf[i] = get_bits(&s->gb, 8);
  1659. if (i > 0 && cbuf[i-1] == '\n')
  1660. cbuf[i-1] = 0;
  1661. else
  1662. cbuf[i] = 0;
  1663. if(s->avctx->debug & FF_DEBUG_PICT_INFO)
  1664. av_log(s->avctx, AV_LOG_INFO, "mjpeg comment: '%s'\n", cbuf);
  1665. /* buggy avid, it puts EOI only at every 10th frame */
  1666. if (!strcmp(cbuf, "AVID"))
  1667. {
  1668. s->buggy_avid = 1;
  1669. // if (s->first_picture)
  1670. // printf("mjpeg: workarounding buggy AVID\n");
  1671. }
  1672. else if(!strcmp(cbuf, "CS=ITU601")){
  1673. s->cs_itu601= 1;
  1674. }
  1675. av_free(cbuf);
  1676. }
  1677. }
  1678. return 0;
  1679. }
  1680. #if 0
  1681. static int valid_marker_list[] =
  1682. {
  1683. /* 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f */
  1684. /* 0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1685. /* 1 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1686. /* 2 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1687. /* 3 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1688. /* 4 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1689. /* 5 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1690. /* 6 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1691. /* 7 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1692. /* 8 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1693. /* 9 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1694. /* a */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1695. /* b */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  1696. /* c */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1697. /* d */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1698. /* e */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  1699. /* f */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0,
  1700. }
  1701. #endif
  1702. /* return the 8 bit start code value and update the search
  1703. state. Return -1 if no start code found */
  1704. static int find_marker(uint8_t **pbuf_ptr, uint8_t *buf_end)
  1705. {
  1706. uint8_t *buf_ptr;
  1707. unsigned int v, v2;
  1708. int val;
  1709. #ifdef DEBUG
  1710. int skipped=0;
  1711. #endif
  1712. buf_ptr = *pbuf_ptr;
  1713. while (buf_ptr < buf_end) {
  1714. v = *buf_ptr++;
  1715. v2 = *buf_ptr;
  1716. if ((v == 0xff) && (v2 >= 0xc0) && (v2 <= 0xfe) && buf_ptr < buf_end) {
  1717. val = *buf_ptr++;
  1718. goto found;
  1719. }
  1720. #ifdef DEBUG
  1721. skipped++;
  1722. #endif
  1723. }
  1724. val = -1;
  1725. found:
  1726. #ifdef DEBUG
  1727. av_log(NULL, AV_LOG_VERBOSE, "find_marker skipped %d bytes\n", skipped);
  1728. #endif
  1729. *pbuf_ptr = buf_ptr;
  1730. return val;
  1731. }
  1732. static int mjpeg_decode_frame(AVCodecContext *avctx,
  1733. void *data, int *data_size,
  1734. uint8_t *buf, int buf_size)
  1735. {
  1736. MJpegDecodeContext *s = avctx->priv_data;
  1737. uint8_t *buf_end, *buf_ptr;
  1738. int start_code;
  1739. AVFrame *picture = data;
  1740. buf_ptr = buf;
  1741. buf_end = buf + buf_size;
  1742. while (buf_ptr < buf_end) {
  1743. /* find start next marker */
  1744. start_code = find_marker(&buf_ptr, buf_end);
  1745. {
  1746. /* EOF */
  1747. if (start_code < 0) {
  1748. goto the_end;
  1749. } else {
  1750. av_log(avctx, AV_LOG_DEBUG, "marker=%x avail_size_in_buf=%d\n", start_code, buf_end - buf_ptr);
  1751. if ((buf_end - buf_ptr) > s->buffer_size)
  1752. {
  1753. av_free(s->buffer);
  1754. s->buffer_size = buf_end-buf_ptr;
  1755. s->buffer = av_malloc(s->buffer_size + FF_INPUT_BUFFER_PADDING_SIZE);
  1756. av_log(avctx, AV_LOG_DEBUG, "buffer too small, expanding to %d bytes\n",
  1757. s->buffer_size);
  1758. }
  1759. /* unescape buffer of SOS, use special treatment for JPEG-LS */
  1760. if (start_code == SOS && !s->ls)
  1761. {
  1762. uint8_t *src = buf_ptr;
  1763. uint8_t *dst = s->buffer;
  1764. while (src<buf_end)
  1765. {
  1766. uint8_t x = *(src++);
  1767. *(dst++) = x;
  1768. if (x == 0xff)
  1769. {
  1770. while(src<buf_end && x == 0xff)
  1771. x = *(src++);
  1772. if (x >= 0xd0 && x <= 0xd7)
  1773. *(dst++) = x;
  1774. else if (x)
  1775. break;
  1776. }
  1777. }
  1778. init_get_bits(&s->gb, s->buffer, (dst - s->buffer)*8);
  1779. av_log(avctx, AV_LOG_DEBUG, "escaping removed %d bytes\n",
  1780. (buf_end - buf_ptr) - (dst - s->buffer));
  1781. }
  1782. else if(start_code == SOS && s->ls){
  1783. uint8_t *src = buf_ptr;
  1784. uint8_t *dst = s->buffer;
  1785. int bit_count = 0;
  1786. int t = 0, b = 0;
  1787. PutBitContext pb;
  1788. s->cur_scan++;
  1789. /* find marker */
  1790. while (src + t < buf_end){
  1791. uint8_t x = src[t++];
  1792. if (x == 0xff){
  1793. while((src + t < buf_end) && x == 0xff)
  1794. x = src[t++];
  1795. if (x & 0x80) {
  1796. t -= 2;
  1797. break;
  1798. }
  1799. }
  1800. }
  1801. bit_count = t * 8;
  1802. init_put_bits(&pb, dst, t);
  1803. /* unescape bitstream */
  1804. while(b < t){
  1805. uint8_t x = src[b++];
  1806. put_bits(&pb, 8, x);
  1807. if(x == 0xFF){
  1808. x = src[b++];
  1809. put_bits(&pb, 7, x);
  1810. bit_count--;
  1811. }
  1812. }
  1813. flush_put_bits(&pb);
  1814. init_get_bits(&s->gb, dst, bit_count);
  1815. }
  1816. else
  1817. init_get_bits(&s->gb, buf_ptr, (buf_end - buf_ptr)*8);
  1818. s->start_code = start_code;
  1819. if(s->avctx->debug & FF_DEBUG_STARTCODE){
  1820. av_log(avctx, AV_LOG_DEBUG, "startcode: %X\n", start_code);
  1821. }
  1822. /* process markers */
  1823. if (start_code >= 0xd0 && start_code <= 0xd7) {
  1824. av_log(avctx, AV_LOG_DEBUG, "restart marker: %d\n", start_code&0x0f);
  1825. /* APP fields */
  1826. } else if (start_code >= APP0 && start_code <= APP15) {
  1827. mjpeg_decode_app(s);
  1828. /* Comment */
  1829. } else if (start_code == COM){
  1830. mjpeg_decode_com(s);
  1831. }
  1832. switch(start_code) {
  1833. case SOI:
  1834. s->restart_interval = 0;
  1835. s->restart_count = 0;
  1836. /* nothing to do on SOI */
  1837. break;
  1838. case DQT:
  1839. mjpeg_decode_dqt(s);
  1840. break;
  1841. case DHT:
  1842. if(mjpeg_decode_dht(s) < 0){
  1843. av_log(avctx, AV_LOG_ERROR, "huffman table decode error\n");
  1844. return -1;
  1845. }
  1846. break;
  1847. case SOF0:
  1848. s->lossless=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->progressive=1;
  1856. if (mjpeg_decode_sof(s) < 0)
  1857. return -1;
  1858. break;
  1859. case SOF3:
  1860. s->lossless=1;
  1861. s->progressive=0;
  1862. if (mjpeg_decode_sof(s) < 0)
  1863. return -1;
  1864. break;
  1865. case SOF48:
  1866. s->lossless=1;
  1867. s->ls=1;
  1868. s->progressive=0;
  1869. if (mjpeg_decode_sof(s) < 0)
  1870. return -1;
  1871. break;
  1872. case LSE:
  1873. if (decode_lse(s) < 0)
  1874. return -1;
  1875. break;
  1876. case EOI:
  1877. s->cur_scan = 0;
  1878. if ((s->buggy_avid && !s->interlaced) || s->restart_interval)
  1879. break;
  1880. eoi_parser:
  1881. {
  1882. if (s->interlaced) {
  1883. s->bottom_field ^= 1;
  1884. /* if not bottom field, do not output image yet */
  1885. if (s->bottom_field)
  1886. goto not_the_end;
  1887. }
  1888. *picture = s->picture;
  1889. *data_size = sizeof(AVFrame);
  1890. if(!s->lossless){
  1891. picture->quality= FFMAX(FFMAX(s->qscale[0], s->qscale[1]), s->qscale[2]);
  1892. picture->qstride= 0;
  1893. picture->qscale_table= s->qscale_table;
  1894. memset(picture->qscale_table, picture->quality, (s->width+15)/16);
  1895. if(avctx->debug & FF_DEBUG_QP)
  1896. av_log(avctx, AV_LOG_DEBUG, "QP: %d\n", picture->quality);
  1897. picture->quality*= FF_QP2LAMBDA;
  1898. }
  1899. goto the_end;
  1900. }
  1901. break;
  1902. case SOS:
  1903. mjpeg_decode_sos(s);
  1904. /* buggy avid puts EOI every 10-20th frame */
  1905. /* if restart period is over process EOI */
  1906. if ((s->buggy_avid && !s->interlaced) || s->restart_interval)
  1907. goto eoi_parser;
  1908. break;
  1909. case DRI:
  1910. mjpeg_decode_dri(s);
  1911. break;
  1912. case SOF1:
  1913. case SOF5:
  1914. case SOF6:
  1915. case SOF7:
  1916. case SOF9:
  1917. case SOF10:
  1918. case SOF11:
  1919. case SOF13:
  1920. case SOF14:
  1921. case SOF15:
  1922. case JPG:
  1923. av_log(avctx, AV_LOG_ERROR, "mjpeg: unsupported coding type (%x)\n", start_code);
  1924. break;
  1925. // default:
  1926. // printf("mjpeg: unsupported marker (%x)\n", start_code);
  1927. // break;
  1928. }
  1929. not_the_end:
  1930. /* eof process start code */
  1931. buf_ptr += (get_bits_count(&s->gb)+7)/8;
  1932. av_log(avctx, AV_LOG_DEBUG, "marker parser used %d bytes (%d bits)\n",
  1933. (get_bits_count(&s->gb)+7)/8, get_bits_count(&s->gb));
  1934. }
  1935. }
  1936. }
  1937. the_end:
  1938. av_log(avctx, AV_LOG_DEBUG, "mjpeg decode frame unused %d bytes\n", buf_end - buf_ptr);
  1939. // return buf_end - buf_ptr;
  1940. return buf_ptr - buf;
  1941. }
  1942. static int mjpegb_decode_frame(AVCodecContext *avctx,
  1943. void *data, int *data_size,
  1944. uint8_t *buf, int buf_size)
  1945. {
  1946. MJpegDecodeContext *s = avctx->priv_data;
  1947. uint8_t *buf_end, *buf_ptr;
  1948. AVFrame *picture = data;
  1949. GetBitContext hgb; /* for the header */
  1950. uint32_t dqt_offs, dht_offs, sof_offs, sos_offs, second_field_offs;
  1951. uint32_t field_size, sod_offs;
  1952. buf_ptr = buf;
  1953. buf_end = buf + buf_size;
  1954. read_header:
  1955. /* reset on every SOI */
  1956. s->restart_interval = 0;
  1957. s->restart_count = 0;
  1958. s->mjpb_skiptosod = 0;
  1959. init_get_bits(&hgb, buf_ptr, /*buf_size*/(buf_end - buf_ptr)*8);
  1960. skip_bits(&hgb, 32); /* reserved zeros */
  1961. if (get_bits_long(&hgb, 32) != MKBETAG('m','j','p','g'))
  1962. {
  1963. av_log(avctx, AV_LOG_WARNING, "not mjpeg-b (bad fourcc)\n");
  1964. return 0;
  1965. }
  1966. field_size = get_bits_long(&hgb, 32); /* field size */
  1967. av_log(avctx, AV_LOG_DEBUG, "field size: 0x%x\n", field_size);
  1968. skip_bits(&hgb, 32); /* padded field size */
  1969. second_field_offs = get_bits_long(&hgb, 32);
  1970. av_log(avctx, AV_LOG_DEBUG, "second field offs: 0x%x\n", second_field_offs);
  1971. if (second_field_offs)
  1972. s->interlaced = 1;
  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 mjpegb_decoder = {
  2236. "mjpegb",
  2237. CODEC_TYPE_VIDEO,
  2238. CODEC_ID_MJPEGB,
  2239. sizeof(MJpegDecodeContext),
  2240. mjpeg_decode_init,
  2241. NULL,
  2242. mjpeg_decode_end,
  2243. mjpegb_decode_frame,
  2244. CODEC_CAP_DR1,
  2245. NULL
  2246. };
  2247. AVCodec sp5x_decoder = {
  2248. "sp5x",
  2249. CODEC_TYPE_VIDEO,
  2250. CODEC_ID_SP5X,
  2251. sizeof(MJpegDecodeContext),
  2252. mjpeg_decode_init,
  2253. NULL,
  2254. mjpeg_decode_end,
  2255. sp5x_decode_frame,
  2256. CODEC_CAP_DR1,
  2257. NULL
  2258. };
  2259. #ifdef CONFIG_ENCODERS
  2260. AVCodec ljpeg_encoder = { //FIXME avoid MPV_* lossless jpeg shouldnt need them
  2261. "ljpeg",
  2262. CODEC_TYPE_VIDEO,
  2263. CODEC_ID_LJPEG,
  2264. sizeof(MpegEncContext),
  2265. MPV_encode_init,
  2266. encode_picture_lossless,
  2267. MPV_encode_end,
  2268. };
  2269. #endif
  2270. AVCodecParser mjpeg_parser = {
  2271. { CODEC_ID_MJPEG },
  2272. sizeof(ParseContext),
  2273. NULL,
  2274. jpeg_parse,
  2275. ff_parse_close,
  2276. };
  2277. AVBitStreamFilter mjpega_dump_header_bsf = {
  2278. "mjpegadump",
  2279. 0,
  2280. mjpega_dump_header,
  2281. };