]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpdec_jpeg.c
447ea2f6bef61ea9f7f67fcafa6274fcc610278f
[ffmpeg] / libavformat / rtpdec_jpeg.c
1 /*
2  * RTP JPEG-compressed Video Depacketizer, RFC 2435
3  * Copyright (c) 2012 Samuel Pitoiset
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg 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 GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avformat.h"
23 #include "rtpdec.h"
24 #include "rtpdec_formats.h"
25 #include "libavutil/intreadwrite.h"
26 #include "libavcodec/mjpeg.h"
27 #include "libavcodec/bytestream.h"
28
29 /**
30  * RTP/JPEG specific private data.
31  */
32 struct PayloadContext {
33     AVIOContext *frame;         ///< current frame buffer
34     uint32_t    timestamp;      ///< current frame timestamp
35     int         hdr_size;       ///< size of the current frame header
36     uint8_t     qtables[128][128];
37     uint8_t     qtables_len[128];
38 };
39
40 static const uint8_t default_quantizers[128] = {
41     /* luma table */
42     16,  11,  12,  14,  12,  10,  16,  14,
43     13,  14,  18,  17,  16,  19,  24,  40,
44     26,  24,  22,  22,  24,  49,  35,  37,
45     29,  40,  58,  51,  61,  60,  57,  51,
46     56,  55,  64,  72,  92,  78,  64,  68,
47     87,  69,  55,  56,  80,  109, 81,  87,
48     95,  98,  103, 104, 103, 62,  77,  113,
49     121, 112, 100, 120, 92,  101, 103, 99,
50
51     /* chroma table */
52     17,  18,  18,  24,  21,  24,  47,  26,
53     26,  47,  99,  66,  56,  66,  99,  99,
54     99,  99,  99,  99,  99,  99,  99,  99,
55     99,  99,  99,  99,  99,  99,  99,  99,
56     99,  99,  99,  99,  99,  99,  99,  99,
57     99,  99,  99,  99,  99,  99,  99,  99,
58     99,  99,  99,  99,  99,  99,  99,  99,
59     99,  99,  99,  99,  99,  99,  99,  99
60 };
61
62 static inline void free_frame(PayloadContext *jpeg)
63 {
64     if (jpeg->frame) {
65         uint8_t *p;
66         avio_close_dyn_buf(jpeg->frame, &p);
67         av_free(p);
68         jpeg->frame = NULL;
69     }
70 }
71
72 static void jpeg_free_context(PayloadContext *jpeg)
73 {
74     free_frame(jpeg);
75     av_free(jpeg);
76 }
77
78 static int jpeg_create_huffman_table(PutByteContext *p, int table_class,
79                                      int table_id, const uint8_t *bits_table,
80                                      const uint8_t *value_table)
81 {
82     int i, n = 0;
83
84     bytestream2_put_byte(p, table_class << 4 | table_id);
85
86     for (i = 1; i <= 16; i++) {
87         n += bits_table[i];
88         bytestream2_put_byte(p, bits_table[i]);
89     }
90
91     for (i = 0; i < n; i++) {
92         bytestream2_put_byte(p, value_table[i]);
93     }
94     return n + 17;
95 }
96
97 static void jpeg_put_marker(PutByteContext *pbc, int code)
98 {
99     bytestream2_put_byte(pbc, 0xff);
100     bytestream2_put_byte(pbc, code);
101 }
102
103 static int jpeg_create_header(uint8_t *buf, int size, uint32_t type, uint32_t w,
104                               uint32_t h, const uint8_t *qtable, int nb_qtable,
105                               int dri)
106 {
107     PutByteContext pbc;
108     uint8_t *dht_size_ptr;
109     int dht_size, i;
110
111     bytestream2_init_writer(&pbc, buf, size);
112
113     /* Convert from blocks to pixels. */
114     w <<= 3;
115     h <<= 3;
116
117     /* SOI */
118     jpeg_put_marker(&pbc, SOI);
119
120     /* JFIF header */
121     jpeg_put_marker(&pbc, APP0);
122     bytestream2_put_be16(&pbc, 16);
123     bytestream2_put_buffer(&pbc, "JFIF", 5);
124     bytestream2_put_be16(&pbc, 0x0201);
125     bytestream2_put_byte(&pbc, 0);
126     bytestream2_put_be16(&pbc, 1);
127     bytestream2_put_be16(&pbc, 1);
128     bytestream2_put_byte(&pbc, 0);
129     bytestream2_put_byte(&pbc, 0);
130
131     if (dri) {
132         jpeg_put_marker(&pbc, DRI);
133         bytestream2_put_be16(&pbc, 4);
134         bytestream2_put_be16(&pbc, dri);
135     }
136
137     /* DQT */
138     jpeg_put_marker(&pbc, DQT);
139     bytestream2_put_be16(&pbc, 2 + nb_qtable * (1 + 64));
140
141     for (i = 0; i < nb_qtable; i++) {
142         bytestream2_put_byte(&pbc, i);
143
144         /* Each table is an array of 64 values given in zig-zag
145          * order, identical to the format used in a JFIF DQT
146          * marker segment. */
147         bytestream2_put_buffer(&pbc, qtable + 64 * i, 64);
148     }
149
150     /* DHT */
151     jpeg_put_marker(&pbc, DHT);
152     dht_size_ptr = pbc.buffer;
153     bytestream2_put_be16(&pbc, 0);
154
155     dht_size  = 2;
156     dht_size += jpeg_create_huffman_table(&pbc, 0, 0,avpriv_mjpeg_bits_dc_luminance,
157                                           avpriv_mjpeg_val_dc);
158     dht_size += jpeg_create_huffman_table(&pbc, 0, 1, avpriv_mjpeg_bits_dc_chrominance,
159                                           avpriv_mjpeg_val_dc);
160     dht_size += jpeg_create_huffman_table(&pbc, 1, 0, avpriv_mjpeg_bits_ac_luminance,
161                                           avpriv_mjpeg_val_ac_luminance);
162     dht_size += jpeg_create_huffman_table(&pbc, 1, 1, avpriv_mjpeg_bits_ac_chrominance,
163                                           avpriv_mjpeg_val_ac_chrominance);
164     AV_WB16(dht_size_ptr, dht_size);
165
166     /* SOF0 */
167     jpeg_put_marker(&pbc, SOF0);
168     bytestream2_put_be16(&pbc, 17); /* size */
169     bytestream2_put_byte(&pbc, 8); /* bits per component */
170     bytestream2_put_be16(&pbc, h);
171     bytestream2_put_be16(&pbc, w);
172     bytestream2_put_byte(&pbc, 3); /* number of components */
173     bytestream2_put_byte(&pbc, 1); /* component number */
174     bytestream2_put_byte(&pbc, (2 << 4) | (type ? 2 : 1)); /* hsample/vsample */
175     bytestream2_put_byte(&pbc, 0); /* matrix number */
176     bytestream2_put_byte(&pbc, 2); /* component number */
177     bytestream2_put_byte(&pbc, 1 << 4 | 1); /* hsample/vsample */
178     bytestream2_put_byte(&pbc, nb_qtable == 2 ? 1 : 0); /* matrix number */
179     bytestream2_put_byte(&pbc, 3); /* component number */
180     bytestream2_put_byte(&pbc, 1 << 4 | 1); /* hsample/vsample */
181     bytestream2_put_byte(&pbc, nb_qtable == 2 ? 1 : 0); /* matrix number */
182
183     /* SOS */
184     jpeg_put_marker(&pbc, SOS);
185     bytestream2_put_be16(&pbc, 12);
186     bytestream2_put_byte(&pbc, 3);
187     bytestream2_put_byte(&pbc, 1);
188     bytestream2_put_byte(&pbc, 0);
189     bytestream2_put_byte(&pbc, 2);
190     bytestream2_put_byte(&pbc, 17);
191     bytestream2_put_byte(&pbc, 3);
192     bytestream2_put_byte(&pbc, 17);
193     bytestream2_put_byte(&pbc, 0);
194     bytestream2_put_byte(&pbc, 63);
195     bytestream2_put_byte(&pbc, 0);
196
197     /* Return the length in bytes of the JPEG header. */
198     return bytestream2_tell_p(&pbc);
199 }
200
201 static void create_default_qtables(uint8_t *qtables, uint8_t q)
202 {
203     int factor = q;
204     int i;
205
206     factor = av_clip(q, 1, 99);
207
208     if (q < 50)
209         q = 5000 / factor;
210     else
211         q = 200 - factor * 2;
212
213     for (i = 0; i < 128; i++) {
214         int val = (default_quantizers[i] * q + 50) / 100;
215
216         /* Limit the quantizers to 1 <= q <= 255. */
217         val = av_clip(val, 1, 255);
218         qtables[i] = val;
219     }
220 }
221
222 static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
223                              AVStream *st, AVPacket *pkt, uint32_t *timestamp,
224                              const uint8_t *buf, int len, uint16_t seq,
225                              int flags)
226 {
227     uint8_t type, q, width, height;
228     const uint8_t *qtables = NULL;
229     uint16_t qtable_len;
230     uint32_t off;
231     int ret, dri = 0;
232
233     if (len < 8) {
234         av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
235         return AVERROR_INVALIDDATA;
236     }
237
238     /* Parse the main JPEG header. */
239     off    = AV_RB24(buf + 1);  /* fragment byte offset */
240     type   = AV_RB8(buf + 4);   /* id of jpeg decoder params */
241     q      = AV_RB8(buf + 5);   /* quantization factor (or table id) */
242     width  = AV_RB8(buf + 6);   /* frame width in 8 pixel blocks */
243     height = AV_RB8(buf + 7);   /* frame height in 8 pixel blocks */
244     buf += 8;
245     len -= 8;
246
247     if (type & 0x40) {
248         if (len < 4) {
249             av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
250             return AVERROR_INVALIDDATA;
251         }
252         dri = AV_RB16(buf);
253         buf += 4;
254         len -= 4;
255         type &= ~0x40;
256     }
257     /* Parse the restart marker header. */
258     if (type > 63) {
259         av_log(ctx, AV_LOG_ERROR,
260                "Unimplemented RTP/JPEG restart marker header.\n");
261         return AVERROR_PATCHWELCOME;
262     }
263     if (type > 1) {
264         av_log(ctx, AV_LOG_ERROR, "Unimplemented RTP/JPEG type %d\n", type);
265         return AVERROR_PATCHWELCOME;
266     }
267
268     /* Parse the quantization table header. */
269     if (off == 0) {
270         /* Start of JPEG data packet. */
271         uint8_t new_qtables[128];
272         uint8_t hdr[1024];
273
274         if (q > 127) {
275             uint8_t precision;
276             if (len < 4) {
277                 av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
278                 return AVERROR_INVALIDDATA;
279             }
280
281             /* The first byte is reserved for future use. */
282             precision  = AV_RB8(buf + 1);    /* size of coefficients */
283             qtable_len = AV_RB16(buf + 2);   /* length in bytes */
284             buf += 4;
285             len -= 4;
286
287             if (precision)
288                 av_log(ctx, AV_LOG_WARNING, "Only 8-bit precision is supported.\n");
289
290             if (qtable_len > 0) {
291                 if (len < qtable_len) {
292                     av_log(ctx, AV_LOG_ERROR, "Too short RTP/JPEG packet.\n");
293                     return AVERROR_INVALIDDATA;
294                 }
295                 qtables = buf;
296                 buf += qtable_len;
297                 len -= qtable_len;
298                 if (q < 255) {
299                     if (jpeg->qtables_len[q - 128] &&
300                         (jpeg->qtables_len[q - 128] != qtable_len ||
301                          memcmp(qtables, &jpeg->qtables[q - 128][0], qtable_len))) {
302                         av_log(ctx, AV_LOG_WARNING,
303                                "Quantization tables for q=%d changed\n", q);
304                     } else if (!jpeg->qtables_len[q - 128] && qtable_len <= 128) {
305                         memcpy(&jpeg->qtables[q - 128][0], qtables,
306                                qtable_len);
307                         jpeg->qtables_len[q - 128] = qtable_len;
308                     }
309                 }
310             } else {
311                 if (q == 255) {
312                     av_log(ctx, AV_LOG_ERROR,
313                            "Invalid RTP/JPEG packet. Quantization tables not found.\n");
314                     return AVERROR_INVALIDDATA;
315                 }
316                 if (!jpeg->qtables_len[q - 128]) {
317                     av_log(ctx, AV_LOG_ERROR,
318                            "No quantization tables known for q=%d yet.\n", q);
319                     return AVERROR_INVALIDDATA;
320                 }
321                 qtables    = &jpeg->qtables[q - 128][0];
322                 qtable_len =  jpeg->qtables_len[q - 128];
323             }
324         } else { /* q <= 127 */
325             if (q == 0 || q > 99) {
326                 av_log(ctx, AV_LOG_ERROR, "Reserved q value %d\n", q);
327                 return AVERROR_INVALIDDATA;
328             }
329             create_default_qtables(new_qtables, q);
330             qtables    = new_qtables;
331             qtable_len = sizeof(new_qtables);
332         }
333
334         /* Skip the current frame in case of the end packet
335          * has been lost somewhere. */
336         free_frame(jpeg);
337
338         if ((ret = avio_open_dyn_buf(&jpeg->frame)) < 0)
339             return ret;
340         jpeg->timestamp = *timestamp;
341
342         /* Generate a frame and scan headers that can be prepended to the
343          * RTP/JPEG data payload to produce a JPEG compressed image in
344          * interchange format. */
345         jpeg->hdr_size = jpeg_create_header(hdr, sizeof(hdr), type, width,
346                                             height, qtables,
347                                             qtable_len / 64, dri);
348
349         /* Copy JPEG header to frame buffer. */
350         avio_write(jpeg->frame, hdr, jpeg->hdr_size);
351     }
352
353     if (!jpeg->frame) {
354         av_log(ctx, AV_LOG_ERROR,
355                "Received packet without a start chunk; dropping frame.\n");
356         return AVERROR(EAGAIN);
357     }
358
359     if (jpeg->timestamp != *timestamp) {
360         /* Skip the current frame if timestamp is incorrect.
361          * A start packet has been lost somewhere. */
362         free_frame(jpeg);
363         av_log(ctx, AV_LOG_ERROR, "RTP timestamps don't match.\n");
364         return AVERROR_INVALIDDATA;
365     }
366
367     if (off != avio_tell(jpeg->frame) - jpeg->hdr_size) {
368         av_log(ctx, AV_LOG_ERROR,
369                "Missing packets; dropping frame.\n");
370         return AVERROR(EAGAIN);
371     }
372
373     /* Copy data to frame buffer. */
374     avio_write(jpeg->frame, buf, len);
375
376     if (flags & RTP_FLAG_MARKER) {
377         /* End of JPEG data packet. */
378         uint8_t buf[2] = { 0xff, EOI };
379
380         /* Put EOI marker. */
381         avio_write(jpeg->frame, buf, sizeof(buf));
382
383         /* Prepare the JPEG packet. */
384         if ((ret = ff_rtp_finalize_packet(pkt, &jpeg->frame, st->index)) < 0) {
385             av_log(ctx, AV_LOG_ERROR,
386                    "Error occurred when getting frame buffer.\n");
387             return ret;
388         }
389
390         return 0;
391     }
392
393     return AVERROR(EAGAIN);
394 }
395
396 RTPDynamicProtocolHandler ff_jpeg_dynamic_handler = {
397     .enc_name          = "JPEG",
398     .codec_type        = AVMEDIA_TYPE_VIDEO,
399     .codec_id          = AV_CODEC_ID_MJPEG,
400     .priv_data_size    = sizeof(PayloadContext),
401     .free              = jpeg_free_context,
402     .parse_packet      = jpeg_parse_packet,
403     .static_payload_id = 26,
404 };