1 /* Straightforward (to be) optimized JPEG encoder for the YUV422 format
2 * based on mjpeg code from ffmpeg.
4 * Copyright (c) 2002, Rik Snel
5 * Parts from ffmpeg Copyright (c) 2000-2002 Fabrice Bellard
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * For an excellent introduction to the JPEG format, see:
22 * http://www.ece.purdue.edu/~bouman/grad-labs/lab8/pdf/lab.pdf
27 #include <sys/types.h>
32 #include "fastmemcpy.h"
35 /* We need this #define because we need ../libavcodec/common.h to #define
36 * be2me_32, otherwise the linker will complain that it doesn't exist */
37 #define HAVE_AV_CONFIG_H
38 #include "libavcodec/avcodec.h"
39 #include "libavcodec/dsputil.h"
40 #include "libavcodec/mpegvideo.h"
44 extern int avcodec_inited
;
46 /* zr_mjpeg_encode_mb needs access to these tables for the black & white
48 typedef struct MJpegContext
{
49 uint8_t huff_size_dc_luminance
[12];
50 uint16_t huff_code_dc_luminance
[12];
51 uint8_t huff_size_dc_chrominance
[12];
52 uint16_t huff_code_dc_chrominance
[12];
54 uint8_t huff_size_ac_luminance
[256];
55 uint16_t huff_code_ac_luminance
[256];
56 uint8_t huff_size_ac_chrominance
[256];
57 uint16_t huff_code_ac_chrominance
[256];
61 /* Begin excessive code duplication ************************************/
62 /* Code coming from mpegvideo.c and mjpeg.c in ../libavcodec ***********/
64 static const unsigned short aanscales
[64] = {
65 /* precomputed values scaled up by 14 bits */
66 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
67 22725, 31521, 29692, 26722, 22725, 17855, 12299, 6270,
68 21407, 29692, 27969, 25172, 21407, 16819, 11585, 5906,
69 19266, 26722, 25172, 22654, 19266, 15137, 10426, 5315,
70 16384, 22725, 21407, 19266, 16384, 12873, 8867, 4520,
71 12873, 17855, 16819, 15137, 12873, 10114, 6967, 3552,
72 8867, 12299, 11585, 10426, 8867, 6967, 4799, 2446,
73 4520, 6270, 5906, 5315, 4520, 3552, 2446, 1247
76 static void convert_matrix(MpegEncContext
*s
, int (*qmat
)[64],
77 uint16_t (*qmat16
)[2][64], const uint16_t *quant_matrix
,
78 int bias
, int qmin
, int qmax
)
82 for(qscale
=qmin
; qscale
<=qmax
; qscale
++){
84 if (s
->dsp
.fdct
== ff_jpeg_fdct_islow
) {
85 for (i
= 0; i
< 64; i
++) {
86 const int j
= s
->dsp
.idct_permutation
[i
];
87 /* 16 <= qscale * quant_matrix[i] <= 7905
88 * 19952 <= aanscales[i] * \
89 * qscale * quant_matrix[i] <= 205026
90 * (1<<36)/19952 >= (1<<36)/(aanscales[i] * \
91 * qscale * quant_matrix[i]) >= (1<<36)/249205025
92 * 3444240 >= (1<<36)/(aanscales[i] *
93 * qscale * quant_matrix[i]) >= 275 */
94 qmat
[qscale
][i
] = (int)((UINT64_C(1) << (QMAT_SHIFT
-3))/
95 (qscale
* quant_matrix
[j
]));
97 } else if (s
->dsp
.fdct
== fdct_ifast
) {
99 const int j
= s
->dsp
.idct_permutation
[i
];
100 /* 16 <= qscale * quant_matrix[i] <= 7905 */
101 /* 19952 <= aanscales[i] * qscale * quant_matrix[i] <= 249205026 */
102 /* (1<<36)/19952 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= (1<<36)/249205026 */
103 /* 3444240 >= (1<<36)/(aanscales[i] * qscale * quant_matrix[i]) >= 275 */
105 qmat
[qscale
][i
] = (int)((UINT64_C(1) << (QMAT_SHIFT
+ 11)) /
106 (aanscales
[i
] * qscale
* quant_matrix
[j
]));
110 const int j
= s
->dsp
.idct_permutation
[i
];
111 /* We can safely suppose that 16 <= quant_matrix[i] <= 255
112 So 16 <= qscale * quant_matrix[i] <= 7905
113 so (1<<19) / 16 >= (1<<19) / (qscale * quant_matrix[i]) >= (1<<19) / 7905
114 so 32768 >= (1<<19) / (qscale * quant_matrix[i]) >= 67
116 qmat
[qscale
][i
] = (int)((uint64_t_C(1) << QMAT_SHIFT_MMX
) / (qscale
* quant_matrix
[j
]));
117 qmat16
[qscale
][0][i
] = (1 << QMAT_SHIFT_MMX
) / (qscale
* quant_matrix
[j
]);
119 if(qmat16
[qscale
][0][i
]==0 || qmat16
[qscale
][0][i
]==128*256) qmat16
[qscale
][0][i
]=128*256-1;
120 qmat16
[qscale
][1][i
]= ROUNDED_DIV(bias
<<(16-QUANT_BIAS_SHIFT
), qmat16
[qscale
][0][i
]);
126 static inline void encode_dc(MpegEncContext
*s
, int val
,
127 uint8_t *huff_size
, uint16_t *huff_code
)
132 put_bits(&s
->pb
, huff_size
[0], huff_code
[0]);
140 /* compute the log (XXX: optimize) */
147 put_bits(&s
->pb
, huff_size
[nbits
], huff_code
[nbits
]);
149 put_bits(&s
->pb
, nbits
, mant
& ((1 << nbits
) - 1));
153 static void encode_block(MpegEncContext
*s
, DCTELEM
*block
, int n
)
155 int mant
, nbits
, code
, i
, j
;
156 int component
, dc
, run
, last_index
, val
;
157 MJpegContext
*m
= s
->mjpeg_ctx
;
158 uint8_t *huff_size_ac
;
159 uint16_t *huff_code_ac
;
162 component
= (n
<= 3 ? 0 : n
- 4 + 1);
163 dc
= block
[0]; /* overflow is impossible */
164 val
= dc
- s
->last_dc
[component
];
166 encode_dc(s
, val
, m
->huff_size_dc_luminance
, m
->huff_code_dc_luminance
);
167 huff_size_ac
= m
->huff_size_ac_luminance
;
168 huff_code_ac
= m
->huff_code_ac_luminance
;
170 encode_dc(s
, val
, m
->huff_size_dc_chrominance
, m
->huff_code_dc_chrominance
);
171 huff_size_ac
= m
->huff_size_ac_chrominance
;
172 huff_code_ac
= m
->huff_code_ac_chrominance
;
174 s
->last_dc
[component
] = dc
;
179 last_index
= s
->block_last_index
[n
];
180 for(i
=1;i
<=last_index
;i
++) {
181 j
= s
->intra_scantable
.permutated
[i
];
187 put_bits(&s
->pb
, huff_size_ac
[0xf0], huff_code_ac
[0xf0]);
196 /* compute the log (XXX: optimize) */
202 code
= (run
<< 4) | nbits
;
204 put_bits(&s
->pb
, huff_size_ac
[code
], huff_code_ac
[code
]);
206 put_bits(&s
->pb
, nbits
, mant
& ((1 << nbits
) - 1));
211 /* output EOB only if not already 64 values */
212 if (last_index
< 63 || run
!= 0)
213 put_bits(&s
->pb
, huff_size_ac
[0], huff_code_ac
[0]);
216 static inline void clip_coeffs(MpegEncContext
*s
, DCTELEM
*block
, int last_index
)
219 const int maxlevel
= s
->max_qcoeff
;
220 const int minlevel
= s
->min_qcoeff
;
222 for(i
=0; i
<=last_index
; i
++){
223 const int j
= s
->intra_scantable
.permutated
[i
];
224 int level
= block
[j
];
226 if (level
>maxlevel
) level
=maxlevel
;
227 else if(level
<minlevel
) level
=minlevel
;
232 /* End excessive code duplication **************************************/
234 /* this function is a reproduction of the one in mjpeg, it includes two
235 * changes, it allows for black&white encoding (it skips the U and V
236 * macroblocks and it outputs the huffman code for 'no change' (dc) and
237 * 'all zero' (ac)) and it takes 4 macroblocks (422) instead of 6 (420) */
238 static void zr_mjpeg_encode_mb(jpeg_enc_t
*j
) {
240 MJpegContext
*m
= j
->s
->mjpeg_ctx
;
242 encode_block(j
->s
, j
->s
->block
[0], 0);
243 encode_block(j
->s
, j
->s
->block
[1], 1);
246 put_bits(&j
->s
->pb
, m
->huff_size_dc_chrominance
[0],
247 m
->huff_code_dc_chrominance
[0]);
248 put_bits(&j
->s
->pb
, m
->huff_size_ac_chrominance
[0],
249 m
->huff_code_ac_chrominance
[0]);
251 put_bits(&j
->s
->pb
, m
->huff_size_dc_chrominance
[0],
252 m
->huff_code_dc_chrominance
[0]);
253 put_bits(&j
->s
->pb
, m
->huff_size_ac_chrominance
[0],
254 m
->huff_code_ac_chrominance
[0]);
256 /* we trick encode_block here so that it uses
257 * chrominance huffman tables instead of luminance ones
258 * (see the effect of second argument of encode_block) */
259 encode_block(j
->s
, j
->s
->block
[2], 4);
260 encode_block(j
->s
, j
->s
->block
[3], 5);
264 /* this function can take all kinds of YUV colorspaces
265 * YV12, YVYU, UYVY. The necesary parameters must be set up by the caller
266 * y_ps means "y pixel size", y_rs means "y row size".
267 * For YUYV, for example, is u_buf = y_buf + 1, v_buf = y_buf + 3,
268 * y_ps = 2, u_ps = 4, v_ps = 4, y_rs = u_rs = v_rs.
270 * The actual buffers must be passed with mjpeg_encode_frame, this is
271 * to make it possible to call encode on the buffer provided by the
272 * codec in draw_frame.
274 * The data is straightened out at the moment it is put in DCT
275 * blocks, there are therefore no spurious memcopies involved */
276 /* Notice that w must be a multiple of 16 and h must be a multiple of 8 */
277 /* We produce YUV422 jpegs, the colors must be subsampled horizontally,
278 * if the colors are also subsampled vertically, then this function
279 * performs cheap upsampling (better solution will be: a DCT that is
280 * optimized in the case that every two rows are the same) */
281 /* cu = 0 means 'No cheap upsampling'
282 * cu = 1 means 'perform cheap upsampling' */
283 /* The encoder doesn't know anything about interlacing, the halve height
284 * needs to be passed and the double rowstride. Which field gets encoded
285 * is decided by what buffers are passed to mjpeg_encode_frame */
286 jpeg_enc_t
*jpeg_enc_init(int w
, int h
, int y_psize
, int y_rsize
,
287 int u_psize
, int u_rsize
, int v_psize
, int v_rsize
,
288 int cu
, int q
, int b
) {
291 mp_msg(MSGT_VO
, MSGL_V
, "JPEnc init: %dx%d %d %d %d %d %d %d\n",
292 w
, h
, y_psize
, y_rsize
, u_psize
,
293 u_rsize
, v_psize
, v_rsize
);
295 j
= av_malloc(sizeof(jpeg_enc_t
));
296 if (j
== NULL
) return NULL
;
298 j
->s
= av_malloc(sizeof(MpegEncContext
));
299 memset(j
->s
,0x00,sizeof(MpegEncContext
));
305 /* info on how to access the pixels */
317 j
->s
->mjpeg_data_only_frames
= 0;
318 j
->s
->out_format
= FMT_MJPEG
;
319 j
->s
->intra_only
= 1;
321 j
->s
->pict_type
= I_TYPE
;
322 j
->s
->y_dc_scale
= 8;
323 j
->s
->c_dc_scale
= 8;
325 j
->s
->mjpeg_write_tables
= 1;
326 j
->s
->mjpeg_vsample
[0] = 1;
327 j
->s
->mjpeg_vsample
[1] = 1;
328 j
->s
->mjpeg_vsample
[2] = 1;
329 j
->s
->mjpeg_hsample
[0] = 2;
330 j
->s
->mjpeg_hsample
[1] = 1;
331 j
->s
->mjpeg_hsample
[2] = 1;
333 j
->cheap_upsample
= cu
;
336 /* if libavcodec is used by the decoder then we must not
337 * initialize again, but if it is not initialized then we must
338 * initialize it here. */
339 if (!avcodec_inited
) {
340 /* we need to initialize libavcodec */
342 avcodec_register_all();
346 if (mjpeg_init(j
->s
) < 0) {
352 /* alloc bogus avctx to keep MPV_common_init from segfaulting */
353 j
->s
->avctx
= calloc(sizeof(*j
->s
->avctx
), 1);
355 /* make MPV_common_init allocate important buffers, like s->block */
356 j
->s
->avctx
->thread_count
= 1;
358 if (MPV_common_init(j
->s
) < 0) {
364 /* correct the value for sc->mb_height */
365 j
->s
->mb_height
= j
->s
->height
/8;
368 j
->s
->intra_matrix
[0] = ff_mpeg1_default_intra_matrix
[0];
369 for (i
= 1; i
< 64; i
++)
370 j
->s
->intra_matrix
[i
] = clip_uint8(
371 (ff_mpeg1_default_intra_matrix
[i
]*j
->s
->qscale
) >> 3);
372 convert_matrix(j
->s
, j
->s
->q_intra_matrix
, j
->s
->q_intra_matrix16
,
373 j
->s
->intra_matrix
, j
->s
->intra_quant_bias
, 8, 8);
377 int jpeg_enc_frame(jpeg_enc_t
*j
, unsigned char *y_data
,
378 unsigned char *u_data
, unsigned char *v_data
, char *bufr
) {
379 int i
, k
, mb_x
, mb_y
, overflow
;
381 unsigned char *source
;
382 /* initialize the buffer */
384 init_put_bits(&j
->s
->pb
, bufr
, 1024*256);
386 mjpeg_picture_header(j
->s
);
388 j
->s
->header_bits
= put_bits_count(&j
->s
->pb
);
390 j
->s
->last_dc
[0] = 128;
391 j
->s
->last_dc
[1] = 128;
392 j
->s
->last_dc
[2] = 128;
394 for (mb_y
= 0; mb_y
< j
->s
->mb_height
; mb_y
++) {
395 for (mb_x
= 0; mb_x
< j
->s
->mb_width
; mb_x
++) {
396 /* conversion 8 to 16 bit and filling of blocks
397 * must be mmx optimized */
398 /* fill 2 Y macroblocks and one U and one V */
399 source
= mb_y
* 8 * j
->y_rs
+
400 16 * j
->y_ps
* mb_x
+ y_data
;
401 dest
= j
->s
->block
[0];
402 for (i
= 0; i
< 8; i
++) {
403 for (k
= 0; k
< 8; k
++) {
404 dest
[k
] = source
[k
*j
->y_ps
];
409 source
= mb_y
* 8 * j
->y_rs
+
410 (16*mb_x
+ 8)*j
->y_ps
+ y_data
;
411 dest
= j
->s
->block
[1];
412 for (i
= 0; i
< 8; i
++) {
413 for (k
= 0; k
< 8; k
++) {
414 dest
[k
] = source
[k
*j
->y_ps
];
419 if (!j
->bw
&& j
->cheap_upsample
) {
420 source
= mb_y
*4*j
->u_rs
+
421 8*mb_x
*j
->u_ps
+ u_data
;
422 dest
= j
->s
->block
[2];
423 for (i
= 0; i
< 4; i
++) {
424 for (k
= 0; k
< 8; k
++) {
425 dest
[k
] = source
[k
*j
->u_ps
];
426 dest
[k
+8] = source
[k
*j
->u_ps
];
431 source
= mb_y
*4*j
->v_rs
+
432 8*mb_x
*j
->v_ps
+ v_data
;
433 dest
= j
->s
->block
[3];
434 for (i
= 0; i
< 4; i
++) {
435 for (k
= 0; k
< 8; k
++) {
436 dest
[k
] = source
[k
*j
->v_ps
];
437 dest
[k
+8] = source
[k
*j
->v_ps
];
442 } else if (!j
->bw
&& !j
->cheap_upsample
) {
443 source
= mb_y
*8*j
->u_rs
+
444 8*mb_x
*j
->u_ps
+ u_data
;
445 dest
= j
->s
->block
[2];
446 for (i
= 0; i
< 8; i
++) {
447 for (k
= 0; k
< 8; k
++)
448 dest
[k
] = source
[k
*j
->u_ps
];
452 source
= mb_y
*8*j
->v_rs
+
453 8*mb_x
*j
->v_ps
+ v_data
;
454 dest
= j
->s
->block
[3];
455 for (i
= 0; i
< 8; i
++) {
456 for (k
= 0; k
< 8; k
++)
457 dest
[k
] = source
[k
*j
->v_ps
];
462 emms_c(); /* is this really needed? */
464 j
->s
->block_last_index
[0] =
465 j
->s
->dct_quantize(j
->s
, j
->s
->block
[0],
467 if (overflow
) clip_coeffs(j
->s
, j
->s
->block
[0],
468 j
->s
->block_last_index
[0]);
469 j
->s
->block_last_index
[1] =
470 j
->s
->dct_quantize(j
->s
, j
->s
->block
[1],
472 if (overflow
) clip_coeffs(j
->s
, j
->s
->block
[1],
473 j
->s
->block_last_index
[1]);
476 j
->s
->block_last_index
[4] =
477 j
->s
->dct_quantize(j
->s
, j
->s
->block
[2],
479 if (overflow
) clip_coeffs(j
->s
, j
->s
->block
[2],
480 j
->s
->block_last_index
[2]);
481 j
->s
->block_last_index
[5] =
482 j
->s
->dct_quantize(j
->s
, j
->s
->block
[3],
484 if (overflow
) clip_coeffs(j
->s
, j
->s
->block
[3],
485 j
->s
->block_last_index
[3]);
487 zr_mjpeg_encode_mb(j
);
491 mjpeg_picture_trailer(j
->s
);
492 flush_put_bits(&j
->s
->pb
);
494 if (j
->s
->mjpeg_write_tables
== 1)
495 j
->s
->mjpeg_write_tables
= 0;
497 return pbBufPtr(&(j
->s
->pb
)) - j
->s
->pb
.buf
;
500 void jpeg_enc_uninit(jpeg_enc_t
*j
) {
511 int quant_store
[MBR
+1][MBC
+1];
512 unsigned char buf
[W
*H
*3/2];
521 memset(buf
+W
*H
, 255, W
*H
/4);
522 memset(buf
+5*W
*H
/4, 0, W
*H
/4);
523 mjpeg_encoder_init(W
, H
, 1, W
, 1, W
/2, 1, W
/2, 1, 1, 0);
525 size
= mjpeg_encode_frame(buf
, buf
+W
*H
, buf
+5*W
*H
/4, code
);
526 fp
= fopen("test.jpg", "w");
527 fwrite(code
, 1, size
, fp
);