2 * This file is part of FFmpeg.
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <va/va_enc_jpeg.h>
22 #include "libavutil/avassert.h"
23 #include "libavutil/common.h"
24 #include "libavutil/internal.h"
25 #include "libavutil/opt.h"
26 #include "libavutil/pixfmt.h"
30 #include "jpegtables.h"
33 #include "vaapi_encode.h"
36 // Standard JPEG quantisation tables, in zigzag order.
37 static const unsigned char vaapi_encode_mjpeg_quant_luminance[64] = {
38 16, 11, 12, 14, 12, 10, 16, 14,
39 13, 14, 18, 17, 16, 19, 24, 40,
40 26, 24, 22, 22, 24, 49, 35, 37,
41 29, 40, 58, 51, 61, 60, 57, 51,
42 56, 55, 64, 72, 92, 78, 64, 68,
43 87, 69, 55, 56, 80, 109, 81, 87,
44 95, 98, 103, 104, 103, 62, 77, 113,
45 121, 112, 100, 120, 92, 101, 103, 99,
47 static const unsigned char vaapi_encode_mjpeg_quant_chrominance[64] = {
48 17, 18, 18, 24, 21, 24, 47, 26,
49 26, 47, 99, 66, 56, 66, 99, 99,
50 99, 99, 99, 99, 99, 99, 99, 99,
51 99, 99, 99, 99, 99, 99, 99, 99,
52 99, 99, 99, 99, 99, 99, 99, 99,
53 99, 99, 99, 99, 99, 99, 99, 99,
54 99, 99, 99, 99, 99, 99, 99, 99,
55 99, 99, 99, 99, 99, 99, 99, 99,
58 typedef struct VAAPIEncodeMJPEGContext {
60 int component_subsample_h[3];
61 int component_subsample_v[3];
63 VAQMatrixBufferJPEG quant_tables;
64 VAHuffmanTableBufferJPEGBaseline huffman_tables;
65 } VAAPIEncodeMJPEGContext;
67 static av_cold void vaapi_encode_mjpeg_copy_huffman(unsigned char *dst_lengths,
68 unsigned char *dst_values,
69 const unsigned char *src_lengths,
70 const unsigned char *src_values)
77 for (i = 0; i < 16; i++)
78 mt += (dst_lengths[i] = src_lengths[i]);
80 for (i = 0; i < mt; i++)
81 dst_values[i] = src_values[i];
84 static av_cold void vaapi_encode_mjpeg_init_tables(AVCodecContext *avctx)
86 VAAPIEncodeContext *ctx = avctx->priv_data;
87 VAAPIEncodeMJPEGContext *priv = ctx->priv_data;
88 VAQMatrixBufferJPEG *quant = &priv->quant_tables;
89 VAHuffmanTableBufferJPEGBaseline *huff = &priv->huffman_tables;
92 quant->load_lum_quantiser_matrix = 1;
93 quant->load_chroma_quantiser_matrix = 1;
95 for (i = 0; i < 64; i++) {
96 quant->lum_quantiser_matrix[i] =
97 vaapi_encode_mjpeg_quant_luminance[i];
98 quant->chroma_quantiser_matrix[i] =
99 vaapi_encode_mjpeg_quant_chrominance[i];
102 huff->load_huffman_table[0] = 1;
103 vaapi_encode_mjpeg_copy_huffman(huff->huffman_table[0].num_dc_codes,
104 huff->huffman_table[0].dc_values,
105 avpriv_mjpeg_bits_dc_luminance,
106 avpriv_mjpeg_val_dc);
107 vaapi_encode_mjpeg_copy_huffman(huff->huffman_table[0].num_ac_codes,
108 huff->huffman_table[0].ac_values,
109 avpriv_mjpeg_bits_ac_luminance,
110 avpriv_mjpeg_val_ac_luminance);
111 memset(huff->huffman_table[0].pad, 0, sizeof(huff->huffman_table[0].pad));
113 huff->load_huffman_table[1] = 1;
114 vaapi_encode_mjpeg_copy_huffman(huff->huffman_table[1].num_dc_codes,
115 huff->huffman_table[1].dc_values,
116 avpriv_mjpeg_bits_dc_chrominance,
117 avpriv_mjpeg_val_dc);
118 vaapi_encode_mjpeg_copy_huffman(huff->huffman_table[1].num_ac_codes,
119 huff->huffman_table[1].ac_values,
120 avpriv_mjpeg_bits_ac_chrominance,
121 avpriv_mjpeg_val_ac_chrominance);
122 memset(huff->huffman_table[1].pad, 0, sizeof(huff->huffman_table[1].pad));
125 static void vaapi_encode_mjpeg_write_marker(PutBitContext *pbc, int marker)
127 put_bits(pbc, 8, 0xff);
128 put_bits(pbc, 8, marker);
131 static int vaapi_encode_mjpeg_write_image_header(AVCodecContext *avctx,
132 VAAPIEncodePicture *pic,
133 VAAPIEncodeSlice *slice,
134 char *data, size_t *data_len)
136 VAAPIEncodeContext *ctx = avctx->priv_data;
137 VAEncPictureParameterBufferJPEG *vpic = pic->codec_picture_params;
138 VAEncSliceParameterBufferJPEG *vslice = slice->codec_slice_params;
139 VAAPIEncodeMJPEGContext *priv = ctx->priv_data;
141 int t, i, quant_scale;
143 init_put_bits(&pbc, data, *data_len);
145 vaapi_encode_mjpeg_write_marker(&pbc, SOI);
147 // Quantisation table coefficients are scaled for quality by the driver,
148 // so we also need to do it ourselves here so that headers match.
149 if (priv->quality < 50)
150 quant_scale = 5000 / priv->quality;
152 quant_scale = 200 - 2 * priv->quality;
154 for (t = 0; t < 2; t++) {
157 vaapi_encode_mjpeg_write_marker(&pbc, DQT);
159 put_bits(&pbc, 16, 3 + 64); // Lq
160 put_bits(&pbc, 4, 0); // Pq
161 put_bits(&pbc, 4, t); // Tq
163 for (i = 0; i < 64; i++) {
164 q = i[t ? priv->quant_tables.chroma_quantiser_matrix
165 : priv->quant_tables.lum_quantiser_matrix];
166 q = (q * quant_scale) / 100;
168 if (q > 255) q = 255;
169 put_bits(&pbc, 8, q);
173 vaapi_encode_mjpeg_write_marker(&pbc, SOF0);
175 put_bits(&pbc, 16, 8 + 3 * vpic->num_components); // Lf
176 put_bits(&pbc, 8, vpic->sample_bit_depth); // P
177 put_bits(&pbc, 16, vpic->picture_height); // Y
178 put_bits(&pbc, 16, vpic->picture_width); // X
179 put_bits(&pbc, 8, vpic->num_components); // Nf
181 for (i = 0; i < vpic->num_components; i++) {
182 put_bits(&pbc, 8, vpic->component_id[i]); // Ci
183 put_bits(&pbc, 4, priv->component_subsample_h[i]); // Hi
184 put_bits(&pbc, 4, priv->component_subsample_v[i]); // Vi
185 put_bits(&pbc, 8, vpic->quantiser_table_selector[i]); // Tqi
188 for (t = 0; t < 4; t++) {
190 unsigned char *lengths, *values;
192 vaapi_encode_mjpeg_write_marker(&pbc, DHT);
195 lengths = priv->huffman_tables.huffman_table[t / 2].num_dc_codes;
196 values = priv->huffman_tables.huffman_table[t / 2].dc_values;
198 lengths = priv->huffman_tables.huffman_table[t / 2].num_ac_codes;
199 values = priv->huffman_tables.huffman_table[t / 2].ac_values;
203 for (i = 0; i < 16; i++)
206 put_bits(&pbc, 16, 2 + 17 + mt); // Lh
207 put_bits(&pbc, 4, t & 1); // Tc
208 put_bits(&pbc, 4, t / 2); // Th
210 for (i = 0; i < 16; i++)
211 put_bits(&pbc, 8, lengths[i]);
212 for (i = 0; i < mt; i++)
213 put_bits(&pbc, 8, values[i]);
216 vaapi_encode_mjpeg_write_marker(&pbc, SOS);
218 av_assert0(vpic->num_components == vslice->num_components);
220 put_bits(&pbc, 16, 6 + 2 * vslice->num_components); // Ls
221 put_bits(&pbc, 8, vslice->num_components); // Ns
223 for (i = 0; i < vslice->num_components; i++) {
224 put_bits(&pbc, 8, vslice->components[i].component_selector); // Csj
225 put_bits(&pbc, 4, vslice->components[i].dc_table_selector); // Tdj
226 put_bits(&pbc, 4, vslice->components[i].ac_table_selector); // Taj
229 put_bits(&pbc, 8, 0); // Ss
230 put_bits(&pbc, 8, 63); // Se
231 put_bits(&pbc, 4, 0); // Ah
232 put_bits(&pbc, 4, 0); // Al
234 *data_len = put_bits_count(&pbc);
235 flush_put_bits(&pbc);
240 static int vaapi_encode_mjpeg_write_extra_buffer(AVCodecContext *avctx,
241 VAAPIEncodePicture *pic,
242 int index, int *type,
243 char *data, size_t *data_len)
245 VAAPIEncodeContext *ctx = avctx->priv_data;
246 VAAPIEncodeMJPEGContext *priv = ctx->priv_data;
249 // Write quantisation tables.
250 if (*data_len < sizeof(priv->quant_tables))
251 return AVERROR(EINVAL);
252 *type = VAQMatrixBufferType;
253 memcpy(data, &priv->quant_tables,
254 *data_len = sizeof(priv->quant_tables));
256 } else if (index == 1) {
257 // Write huffman tables.
258 if (*data_len < sizeof(priv->huffman_tables))
259 return AVERROR(EINVAL);
260 *type = VAHuffmanTableBufferType;
261 memcpy(data, &priv->huffman_tables,
262 *data_len = sizeof(priv->huffman_tables));
270 static int vaapi_encode_mjpeg_init_picture_params(AVCodecContext *avctx,
271 VAAPIEncodePicture *pic)
273 VAAPIEncodeContext *ctx = avctx->priv_data;
274 VAEncPictureParameterBufferJPEG *vpic = pic->codec_picture_params;
275 VAAPIEncodeMJPEGContext *priv = ctx->priv_data;
277 vpic->reconstructed_picture = pic->recon_surface;
278 vpic->coded_buf = pic->output_buffer;
280 vpic->picture_width = avctx->width;
281 vpic->picture_height = avctx->height;
283 vpic->pic_flags.bits.profile = 0;
284 vpic->pic_flags.bits.progressive = 0;
285 vpic->pic_flags.bits.huffman = 1;
286 vpic->pic_flags.bits.interleaved = 0;
287 vpic->pic_flags.bits.differential = 0;
289 vpic->sample_bit_depth = 8;
292 vpic->num_components = 3;
294 vpic->component_id[0] = 1;
295 vpic->component_id[1] = 2;
296 vpic->component_id[2] = 3;
298 priv->component_subsample_h[0] = 2;
299 priv->component_subsample_v[0] = 2;
300 priv->component_subsample_h[1] = 1;
301 priv->component_subsample_v[1] = 1;
302 priv->component_subsample_h[2] = 1;
303 priv->component_subsample_v[2] = 1;
305 vpic->quantiser_table_selector[0] = 0;
306 vpic->quantiser_table_selector[1] = 1;
307 vpic->quantiser_table_selector[2] = 1;
309 vpic->quality = priv->quality;
316 static int vaapi_encode_mjpeg_init_slice_params(AVCodecContext *avctx,
317 VAAPIEncodePicture *pic,
318 VAAPIEncodeSlice *slice)
320 VAEncPictureParameterBufferJPEG *vpic = pic->codec_picture_params;
321 VAEncSliceParameterBufferJPEG *vslice = slice->codec_slice_params;
324 vslice->restart_interval = 0;
326 vslice->num_components = vpic->num_components;
327 for (i = 0; i < vslice->num_components; i++) {
328 vslice->components[i].component_selector = i + 1;
329 vslice->components[i].dc_table_selector = (i > 0);
330 vslice->components[i].ac_table_selector = (i > 0);
336 static av_cold int vaapi_encode_mjpeg_configure(AVCodecContext *avctx)
338 VAAPIEncodeContext *ctx = avctx->priv_data;
339 VAAPIEncodeMJPEGContext *priv = ctx->priv_data;
341 priv->quality = avctx->global_quality;
342 if (priv->quality < 1 || priv->quality > 100) {
343 av_log(avctx, AV_LOG_ERROR, "Invalid quality value %d "
344 "(must be 1-100).\n", priv->quality);
345 return AVERROR(EINVAL);
348 // Hack: the implementation calls the JPEG image header (which we
349 // will use in the same way as a slice header) generic "raw data".
350 // Therefore, if after the packed header capability check we have
351 // PACKED_HEADER_RAW_DATA available, rewrite it as
352 // PACKED_HEADER_SLICE so that the header-writing code can do the
354 if (ctx->va_packed_headers & VA_ENC_PACKED_HEADER_RAW_DATA) {
355 ctx->va_packed_headers &= ~VA_ENC_PACKED_HEADER_RAW_DATA;
356 ctx->va_packed_headers |= VA_ENC_PACKED_HEADER_SLICE;
359 vaapi_encode_mjpeg_init_tables(avctx);
364 static const VAAPIEncodeType vaapi_encode_type_mjpeg = {
365 .priv_data_size = sizeof(VAAPIEncodeMJPEGContext),
367 .configure = &vaapi_encode_mjpeg_configure,
369 .picture_params_size = sizeof(VAEncPictureParameterBufferJPEG),
370 .init_picture_params = &vaapi_encode_mjpeg_init_picture_params,
372 .slice_params_size = sizeof(VAEncSliceParameterBufferJPEG),
373 .init_slice_params = &vaapi_encode_mjpeg_init_slice_params,
375 .slice_header_type = VAEncPackedHeaderRawData,
376 .write_slice_header = &vaapi_encode_mjpeg_write_image_header,
378 .write_extra_buffer = &vaapi_encode_mjpeg_write_extra_buffer,
381 static av_cold int vaapi_encode_mjpeg_init(AVCodecContext *avctx)
383 VAAPIEncodeContext *ctx = avctx->priv_data;
385 ctx->codec = &vaapi_encode_type_mjpeg;
387 ctx->va_profile = VAProfileJPEGBaseline;
388 ctx->va_entrypoint = VAEntrypointEncPicture;
390 ctx->va_rt_format = VA_RT_FORMAT_YUV420;
392 ctx->va_rc_mode = VA_RC_CQP;
394 // The JPEG image header - see note above.
395 ctx->va_packed_headers =
396 VA_ENC_PACKED_HEADER_RAW_DATA;
398 ctx->surface_width = FFALIGN(avctx->width, 8);
399 ctx->surface_height = FFALIGN(avctx->height, 8);
401 return ff_vaapi_encode_init(avctx);
404 static const AVCodecDefault vaapi_encode_mjpeg_defaults[] = {
405 { "global_quality", "80" },
409 static const AVClass vaapi_encode_mjpeg_class = {
410 .class_name = "mjpeg_vaapi",
411 .item_name = av_default_item_name,
412 .version = LIBAVUTIL_VERSION_INT,
415 AVCodec ff_mjpeg_vaapi_encoder = {
416 .name = "mjpeg_vaapi",
417 .long_name = NULL_IF_CONFIG_SMALL("MJPEG (VAAPI)"),
418 .type = AVMEDIA_TYPE_VIDEO,
419 .id = AV_CODEC_ID_MJPEG,
420 .priv_data_size = sizeof(VAAPIEncodeContext),
421 .init = &vaapi_encode_mjpeg_init,
422 .encode2 = &ff_vaapi_encode2,
423 .close = &ff_vaapi_encode_close,
424 .priv_class = &vaapi_encode_mjpeg_class,
425 .defaults = vaapi_encode_mjpeg_defaults,
426 .pix_fmts = (const enum AVPixelFormat[]) {