]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/ffmdec.c
return error if frame_offset is negative, prevent segfault
[frescor/ffmpeg.git] / libavformat / ffmdec.c
1 /*
2  * FFM (ffserver live feed) demuxer
3  * Copyright (c) 2001 Fabrice Bellard.
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 "ffm.h"
24 #ifdef CONFIG_FFSERVER
25 #include <unistd.h>
26
27 offset_t ffm_read_write_index(int fd)
28 {
29     uint8_t buf[8];
30
31     lseek(fd, 8, SEEK_SET);
32     read(fd, buf, 8);
33     return AV_RB64(buf);
34 }
35
36 void ffm_write_write_index(int fd, offset_t pos)
37 {
38     uint8_t buf[8];
39     int i;
40
41     for(i=0;i<8;i++)
42         buf[i] = (pos >> (56 - i * 8)) & 0xff;
43     lseek(fd, 8, SEEK_SET);
44     write(fd, buf, 8);
45 }
46
47 void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size)
48 {
49     FFMContext *ffm = s->priv_data;
50     ffm->write_index = pos;
51     ffm->file_size = file_size;
52 }
53 #endif // CONFIG_FFSERVER
54
55 static int ffm_is_avail_data(AVFormatContext *s, int size)
56 {
57     FFMContext *ffm = s->priv_data;
58     offset_t pos, avail_size;
59     int len;
60
61     len = ffm->packet_end - ffm->packet_ptr;
62     if (size <= len)
63         return 1;
64     pos = url_ftell(s->pb);
65     if (pos == ffm->write_index) {
66         /* exactly at the end of stream */
67         return 0;
68     } else if (pos < ffm->write_index) {
69         avail_size = ffm->write_index - pos;
70     } else {
71         avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE);
72     }
73     avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len;
74     if (size <= avail_size)
75         return 1;
76     else
77         return 0;
78 }
79
80 /* first is true if we read the frame header */
81 static int ffm_read_data(AVFormatContext *s,
82                          uint8_t *buf, int size, int first)
83 {
84     FFMContext *ffm = s->priv_data;
85     ByteIOContext *pb = s->pb;
86     int len, fill_size, size1, frame_offset;
87
88     size1 = size;
89     while (size > 0) {
90     redo:
91         len = ffm->packet_end - ffm->packet_ptr;
92         if (len < 0)
93             return -1;
94         if (len > size)
95             len = size;
96         if (len == 0) {
97             if (url_ftell(pb) == ffm->file_size)
98                 url_fseek(pb, ffm->packet_size, SEEK_SET);
99     retry_read:
100             get_be16(pb); /* PACKET_ID */
101             fill_size = get_be16(pb);
102             ffm->pts = get_be64(pb);
103             ffm->first_frame_in_packet = 1;
104             frame_offset = get_be16(pb);
105             get_buffer(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE);
106             ffm->packet_end = ffm->packet + (ffm->packet_size - FFM_HEADER_SIZE - fill_size);
107             if (ffm->packet_end < ffm->packet || frame_offset < 0)
108                 return -1;
109             /* if first packet or resynchronization packet, we must
110                handle it specifically */
111             if (ffm->first_packet || (frame_offset & 0x8000)) {
112                 if (!frame_offset) {
113                     /* This packet has no frame headers in it */
114                     if (url_ftell(pb) >= ffm->packet_size * 3) {
115                         url_fseek(pb, -ffm->packet_size * 2, SEEK_CUR);
116                         goto retry_read;
117                     }
118                     /* This is bad, we cannot find a valid frame header */
119                     return 0;
120                 }
121                 ffm->first_packet = 0;
122                 if ((frame_offset & 0x7ffff) < FFM_HEADER_SIZE)
123                     return -1;
124                 ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
125                 if (!first)
126                     break;
127             } else {
128                 ffm->packet_ptr = ffm->packet;
129             }
130             goto redo;
131         }
132         memcpy(buf, ffm->packet_ptr, len);
133         buf += len;
134         ffm->packet_ptr += len;
135         size -= len;
136         first = 0;
137     }
138     return size1 - size;
139 }
140
141 //#define DEBUG_SEEK
142
143 /* pos is between 0 and file_size - FFM_PACKET_SIZE. It is translated
144    by the write position inside this function */
145 static void ffm_seek1(AVFormatContext *s, offset_t pos1)
146 {
147     FFMContext *ffm = s->priv_data;
148     ByteIOContext *pb = s->pb;
149     offset_t pos;
150
151     pos = pos1 + ffm->write_index;
152     if (pos >= ffm->file_size)
153         pos -= (ffm->file_size - FFM_PACKET_SIZE);
154 #ifdef DEBUG_SEEK
155     printf("seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos);
156 #endif
157     url_fseek(pb, pos, SEEK_SET);
158 }
159
160 static int64_t get_pts(AVFormatContext *s, offset_t pos)
161 {
162     ByteIOContext *pb = s->pb;
163     int64_t pts;
164
165     ffm_seek1(s, pos);
166     url_fskip(pb, 4);
167     pts = get_be64(pb);
168 #ifdef DEBUG_SEEK
169     printf("pts=%0.6f\n", pts / 1000000.0);
170 #endif
171     return pts;
172 }
173
174 static void adjust_write_index(AVFormatContext *s)
175 {
176     FFMContext *ffm = s->priv_data;
177     ByteIOContext *pb = s->pb;
178     int64_t pts;
179     //offset_t orig_write_index = ffm->write_index;
180     offset_t pos_min, pos_max;
181     int64_t pts_start;
182     offset_t ptr = url_ftell(pb);
183
184
185     pos_min = 0;
186     pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
187
188     pts_start = get_pts(s, pos_min);
189
190     pts = get_pts(s, pos_max);
191
192     if (pts - 100000 > pts_start)
193         goto end;
194
195     ffm->write_index = FFM_PACKET_SIZE;
196
197     pts_start = get_pts(s, pos_min);
198
199     pts = get_pts(s, pos_max);
200
201     if (pts - 100000 <= pts_start) {
202         while (1) {
203             offset_t newpos;
204             int64_t newpts;
205
206             newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE;
207
208             if (newpos == pos_min)
209                 break;
210
211             newpts = get_pts(s, newpos);
212
213             if (newpts - 100000 <= pts) {
214                 pos_max = newpos;
215                 pts = newpts;
216             } else {
217                 pos_min = newpos;
218             }
219         }
220         ffm->write_index += pos_max;
221     }
222
223     //printf("Adjusted write index from %"PRId64" to %"PRId64": pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.);
224     //printf("pts range %0.6f - %0.6f\n", get_pts(s, 0) / 1000000. , get_pts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. );
225
226  end:
227     url_fseek(pb, ptr, SEEK_SET);
228 }
229
230
231 static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap)
232 {
233     FFMContext *ffm = s->priv_data;
234     AVStream *st;
235     FFMStream *fst;
236     ByteIOContext *pb = s->pb;
237     AVCodecContext *codec;
238     int i, nb_streams;
239     uint32_t tag;
240
241     /* header */
242     tag = get_le32(pb);
243     if (tag != MKTAG('F', 'F', 'M', '1'))
244         goto fail;
245     ffm->packet_size = get_be32(pb);
246     if (ffm->packet_size != FFM_PACKET_SIZE)
247         goto fail;
248     ffm->write_index = get_be64(pb);
249     /* get also filesize */
250     if (!url_is_streamed(pb)) {
251         ffm->file_size = url_fsize(pb);
252         adjust_write_index(s);
253     } else {
254         ffm->file_size = (UINT64_C(1) << 63) - 1;
255     }
256
257     nb_streams = get_be32(pb);
258     get_be32(pb); /* total bitrate */
259     /* read each stream */
260     for(i=0;i<nb_streams;i++) {
261         char rc_eq_buf[128];
262
263         st = av_new_stream(s, 0);
264         if (!st)
265             goto fail;
266         fst = av_mallocz(sizeof(FFMStream));
267         if (!fst)
268             goto fail;
269         s->streams[i] = st;
270
271         av_set_pts_info(st, 64, 1, 1000000);
272
273         st->priv_data = fst;
274
275         codec = st->codec;
276         /* generic info */
277         codec->codec_id = get_be32(pb);
278         codec->codec_type = get_byte(pb); /* codec_type */
279         codec->bit_rate = get_be32(pb);
280         st->quality = get_be32(pb);
281         codec->flags = get_be32(pb);
282         codec->flags2 = get_be32(pb);
283         codec->debug = get_be32(pb);
284         /* specific info */
285         switch(codec->codec_type) {
286         case CODEC_TYPE_VIDEO:
287             codec->time_base.num = get_be32(pb);
288             codec->time_base.den = get_be32(pb);
289             codec->width = get_be16(pb);
290             codec->height = get_be16(pb);
291             codec->gop_size = get_be16(pb);
292             codec->pix_fmt = get_be32(pb);
293             codec->qmin = get_byte(pb);
294             codec->qmax = get_byte(pb);
295             codec->max_qdiff = get_byte(pb);
296             codec->qcompress = get_be16(pb) / 10000.0;
297             codec->qblur = get_be16(pb) / 10000.0;
298             codec->bit_rate_tolerance = get_be32(pb);
299             codec->rc_eq = av_strdup(get_strz(pb, rc_eq_buf, sizeof(rc_eq_buf)));
300             codec->rc_max_rate = get_be32(pb);
301             codec->rc_min_rate = get_be32(pb);
302             codec->rc_buffer_size = get_be32(pb);
303             codec->i_quant_factor = av_int2dbl(get_be64(pb));
304             codec->b_quant_factor = av_int2dbl(get_be64(pb));
305             codec->i_quant_offset = av_int2dbl(get_be64(pb));
306             codec->b_quant_offset = av_int2dbl(get_be64(pb));
307             codec->dct_algo = get_be32(pb);
308             codec->strict_std_compliance = get_be32(pb);
309             codec->max_b_frames = get_be32(pb);
310             codec->luma_elim_threshold = get_be32(pb);
311             codec->chroma_elim_threshold = get_be32(pb);
312             codec->mpeg_quant = get_be32(pb);
313             codec->intra_dc_precision = get_be32(pb);
314             codec->me_method = get_be32(pb);
315             codec->mb_decision = get_be32(pb);
316             codec->nsse_weight = get_be32(pb);
317             codec->frame_skip_cmp = get_be32(pb);
318             codec->rc_buffer_aggressivity = av_int2dbl(get_be64(pb));
319             codec->codec_tag = get_be32(pb);
320             break;
321         case CODEC_TYPE_AUDIO:
322             codec->sample_rate = get_be32(pb);
323             codec->channels = get_le16(pb);
324             codec->frame_size = get_le16(pb);
325             break;
326         default:
327             goto fail;
328         }
329
330     }
331
332     /* get until end of block reached */
333     while ((url_ftell(pb) % ffm->packet_size) != 0)
334         get_byte(pb);
335
336     /* init packet demux */
337     ffm->packet_ptr = ffm->packet;
338     ffm->packet_end = ffm->packet;
339     ffm->frame_offset = 0;
340     ffm->pts = 0;
341     ffm->read_state = READ_HEADER;
342     ffm->first_packet = 1;
343     return 0;
344  fail:
345     for(i=0;i<s->nb_streams;i++) {
346         st = s->streams[i];
347         if (st) {
348             av_freep(&st->priv_data);
349             av_free(st);
350         }
351     }
352     return -1;
353 }
354
355 /* return < 0 if eof */
356 static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
357 {
358     int size;
359     FFMContext *ffm = s->priv_data;
360     int duration;
361
362     switch(ffm->read_state) {
363     case READ_HEADER:
364         if (!ffm_is_avail_data(s, FRAME_HEADER_SIZE)) {
365             return AVERROR(EAGAIN);
366         }
367 #if 0
368         printf("pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
369                url_ftell(s->pb), s->pb.pos, ffm->write_index, ffm->file_size);
370 #endif
371         if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
372             FRAME_HEADER_SIZE)
373             return AVERROR(EAGAIN);
374 #if 0
375         {
376             int i;
377             for(i=0;i<FRAME_HEADER_SIZE;i++)
378                 printf("%02x ", ffm->header[i]);
379             printf("\n");
380         }
381 #endif
382         ffm->read_state = READ_DATA;
383         /* fall thru */
384     case READ_DATA:
385         size = AV_RB24(ffm->header + 2);
386         if (!ffm_is_avail_data(s, size)) {
387             return AVERROR(EAGAIN);
388         }
389
390         duration = AV_RB24(ffm->header + 5);
391
392         av_new_packet(pkt, size);
393         pkt->stream_index = ffm->header[0];
394         if ((unsigned)pkt->stream_index >= s->nb_streams) {
395             av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index);
396             av_free_packet(pkt);
397             ffm->read_state = READ_HEADER;
398             return AVERROR(EAGAIN);
399         }
400         pkt->pos = url_ftell(s->pb);
401         if (ffm->header[1] & FLAG_KEY_FRAME)
402             pkt->flags |= PKT_FLAG_KEY;
403
404         ffm->read_state = READ_HEADER;
405         if (ffm_read_data(s, pkt->data, size, 0) != size) {
406             /* bad case: desynchronized packet. we cancel all the packet loading */
407             av_free_packet(pkt);
408             return AVERROR(EAGAIN);
409         }
410         if (ffm->first_frame_in_packet)
411         {
412             pkt->pts = ffm->pts;
413             ffm->first_frame_in_packet = 0;
414         }
415         pkt->duration = duration;
416         break;
417     }
418     return 0;
419 }
420
421 /* seek to a given time in the file. The file read pointer is
422    positioned at or before pts. XXX: the following code is quite
423    approximative */
424 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
425 {
426     FFMContext *ffm = s->priv_data;
427     offset_t pos_min, pos_max, pos;
428     int64_t pts_min, pts_max, pts;
429     double pos1;
430
431 #ifdef DEBUG_SEEK
432     printf("wanted_pts=%0.6f\n", wanted_pts / 1000000.0);
433 #endif
434     /* find the position using linear interpolation (better than
435        dichotomy in typical cases) */
436     pos_min = 0;
437     pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
438     while (pos_min <= pos_max) {
439         pts_min = get_pts(s, pos_min);
440         pts_max = get_pts(s, pos_max);
441         /* linear interpolation */
442         pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) /
443             (double)(pts_max - pts_min);
444         pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE;
445         if (pos <= pos_min)
446             pos = pos_min;
447         else if (pos >= pos_max)
448             pos = pos_max;
449         pts = get_pts(s, pos);
450         /* check if we are lucky */
451         if (pts == wanted_pts) {
452             goto found;
453         } else if (pts > wanted_pts) {
454             pos_max = pos - FFM_PACKET_SIZE;
455         } else {
456             pos_min = pos + FFM_PACKET_SIZE;
457         }
458     }
459     pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max;
460     if (pos > 0)
461         pos -= FFM_PACKET_SIZE;
462  found:
463     ffm_seek1(s, pos);
464     return 0;
465 }
466
467 static int ffm_read_close(AVFormatContext *s)
468 {
469     AVStream *st;
470     int i;
471
472     for(i=0;i<s->nb_streams;i++) {
473         st = s->streams[i];
474         av_freep(&st->priv_data);
475     }
476     return 0;
477 }
478
479 static int ffm_probe(AVProbeData *p)
480 {
481     if (
482         p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' &&
483         p->buf[3] == '1')
484         return AVPROBE_SCORE_MAX + 1;
485     return 0;
486 }
487
488 AVInputFormat ffm_demuxer = {
489     "ffm",
490     "ffm format",
491     sizeof(FFMContext),
492     ffm_probe,
493     ffm_read_header,
494     ffm_read_packet,
495     ffm_read_close,
496     ffm_seek,
497 };