Mercurial > libavformat.hg
annotate ffmdec.c @ 3406:ea339cc7c630 libavformat
flvenc.o depends on avc.o (for H.264 support functions).
patch by Peter Ross, pross xvid org
author | diego |
---|---|
date | Sat, 31 May 2008 14:26:56 +0000 |
parents | a14d34ce6828 |
children | 7a0230981402 |
rev | line source |
---|---|
0 | 1 /* |
3348 | 2 * FFM (ffserver live feed) demuxer |
0 | 3 * Copyright (c) 2001 Fabrice Bellard. |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
3348 | 21 |
0 | 22 #include "avformat.h" |
3348 | 23 #include "ffm.h" |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
24 #ifdef CONFIG_FFSERVER |
0 | 25 #include <unistd.h> |
26 | |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
27 offset_t ffm_read_write_index(int fd) |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
28 { |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
29 uint8_t buf[8]; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
30 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
31 lseek(fd, 8, SEEK_SET); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
32 read(fd, buf, 8); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
33 return AV_RB64(buf); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
34 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
35 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
36 void ffm_write_write_index(int fd, offset_t pos) |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
37 { |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
38 uint8_t buf[8]; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
39 int i; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
40 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
41 for(i=0;i<8;i++) |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
42 buf[i] = (pos >> (56 - i * 8)) & 0xff; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
43 lseek(fd, 8, SEEK_SET); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
44 write(fd, buf, 8); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
45 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
46 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
47 void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size) |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
48 { |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
49 FFMContext *ffm = s->priv_data; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
50 ffm->write_index = pos; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
51 ffm->file_size = file_size; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
52 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
53 #endif // CONFIG_FFSERVER |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
54 |
0 | 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; | |
3347 | 62 if (size <= len) |
63 return 1; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
64 pos = url_ftell(s->pb); |
0 | 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, | |
65 | 82 uint8_t *buf, int size, int first) |
0 | 83 { |
84 FFMContext *ffm = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
85 ByteIOContext *pb = s->pb; |
0 | 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; | |
3354
5be8d622e458
return error if len is negative, prevent segfault
bcoudurier
parents:
3353
diff
changeset
|
92 if (len < 0) |
5be8d622e458
return error if len is negative, prevent segfault
bcoudurier
parents:
3353
diff
changeset
|
93 return -1; |
0 | 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); | |
901
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
103 ffm->first_frame_in_packet = 1; |
0 | 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); | |
3355
fa366fc51861
return error if frame_offset is negative, prevent segfault
bcoudurier
parents:
3354
diff
changeset
|
107 if (ffm->packet_end < ffm->packet || frame_offset < 0) |
537 | 108 return -1; |
0 | 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; | |
3366 | 122 if ((frame_offset & 0x7fff) < FFM_HEADER_SIZE) |
537 | 123 return -1; |
0 | 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 | |
3351
6063f3cf59e6
move DEBUG_SEEK definition before get_pts since func uses it
bcoudurier
parents:
3350
diff
changeset
|
141 //#define DEBUG_SEEK |
6063f3cf59e6
move DEBUG_SEEK definition before get_pts since func uses it
bcoudurier
parents:
3350
diff
changeset
|
142 |
3352
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
143 /* pos is between 0 and file_size - FFM_PACKET_SIZE. It is translated |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
144 by the write position inside this function */ |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
145 static void ffm_seek1(AVFormatContext *s, offset_t pos1) |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
146 { |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
147 FFMContext *ffm = s->priv_data; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
148 ByteIOContext *pb = s->pb; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
149 offset_t pos; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
150 |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
151 pos = pos1 + ffm->write_index; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
152 if (pos >= ffm->file_size) |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
153 pos -= (ffm->file_size - FFM_PACKET_SIZE); |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
154 #ifdef DEBUG_SEEK |
3360 | 155 av_log(s, AV_LOG_DEBUG, "seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos); |
3352
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
156 #endif |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
157 url_fseek(pb, pos, SEEK_SET); |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
158 } |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
159 |
3350
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
160 static int64_t get_pts(AVFormatContext *s, offset_t pos) |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
161 { |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
162 ByteIOContext *pb = s->pb; |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
163 int64_t pts; |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
164 |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
165 ffm_seek1(s, pos); |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
166 url_fskip(pb, 4); |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
167 pts = get_be64(pb); |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
168 #ifdef DEBUG_SEEK |
3360 | 169 av_log(s, AV_LOG_DEBUG, "pts=%0.6f\n", pts / 1000000.0); |
3350
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
170 #endif |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
171 return pts; |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
172 } |
0 | 173 |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
174 static void adjust_write_index(AVFormatContext *s) |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
175 { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
176 FFMContext *ffm = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
177 ByteIOContext *pb = s->pb; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
178 int64_t pts; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
179 //offset_t orig_write_index = ffm->write_index; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
180 offset_t pos_min, pos_max; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
181 int64_t pts_start; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
182 offset_t ptr = url_ftell(pb); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
183 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
184 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
185 pos_min = 0; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
186 pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
187 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
188 pts_start = get_pts(s, pos_min); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
189 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
190 pts = get_pts(s, pos_max); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
191 |
885 | 192 if (pts - 100000 > pts_start) |
390
3a40642dc4df
adjust_write_index() fix by ("Curi Fabio Eduardo (SFL)" <curif at TELEFONICA dot COM dot AR>)
michael
parents:
318
diff
changeset
|
193 goto end; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
194 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
195 ffm->write_index = FFM_PACKET_SIZE; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
196 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
197 pts_start = get_pts(s, pos_min); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
198 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
199 pts = get_pts(s, pos_max); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
200 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
201 if (pts - 100000 <= pts_start) { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
202 while (1) { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
203 offset_t newpos; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
204 int64_t newpts; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
205 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
206 newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
207 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
208 if (newpos == pos_min) |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
209 break; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
210 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
211 newpts = get_pts(s, newpos); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
212 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
213 if (newpts - 100000 <= pts) { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
214 pos_max = newpos; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
215 pts = newpts; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
216 } else { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
217 pos_min = newpos; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
218 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
219 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
220 ffm->write_index += pos_max; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
221 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
222 |
1443
404048ea11bc
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
1415
diff
changeset
|
223 //printf("Adjusted write index from %"PRId64" to %"PRId64": pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
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. ); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
225 |
390
3a40642dc4df
adjust_write_index() fix by ("Curi Fabio Eduardo (SFL)" <curif at TELEFONICA dot COM dot AR>)
michael
parents:
318
diff
changeset
|
226 end: |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
227 url_fseek(pb, ptr, SEEK_SET); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
228 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
229 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
230 |
0 | 231 static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) |
232 { | |
233 FFMContext *ffm = s->priv_data; | |
234 AVStream *st; | |
235 FFMStream *fst; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
236 ByteIOContext *pb = s->pb; |
0 | 237 AVCodecContext *codec; |
187 | 238 int i, nb_streams; |
65 | 239 uint32_t tag; |
0 | 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)) { | |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
751
diff
changeset
|
251 ffm->file_size = url_fsize(pb); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
252 adjust_write_index(s); |
0 | 253 } else { |
1556 | 254 ffm->file_size = (UINT64_C(1) << 63) - 1; |
0 | 255 } |
256 | |
187 | 257 nb_streams = get_be32(pb); |
0 | 258 get_be32(pb); /* total bitrate */ |
259 /* read each stream */ | |
187 | 260 for(i=0;i<nb_streams;i++) { |
0 | 261 char rc_eq_buf[128]; |
262 | |
187 | 263 st = av_new_stream(s, 0); |
0 | 264 if (!st) |
265 goto fail; | |
266 fst = av_mallocz(sizeof(FFMStream)); | |
267 if (!fst) | |
268 goto fail; | |
862
aa0abab5e320
fix feed read_header, avoid using put_tag in write_header, to be consistent with read_header, also some minor cosmetics
alex
parents:
858
diff
changeset
|
269 s->streams[i] = st; |
885 | 270 |
468 | 271 av_set_pts_info(st, 64, 1, 1000000); |
885 | 272 |
0 | 273 st->priv_data = fst; |
274 | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
275 codec = st->codec; |
0 | 276 /* generic info */ |
862
aa0abab5e320
fix feed read_header, avoid using put_tag in write_header, to be consistent with read_header, also some minor cosmetics
alex
parents:
858
diff
changeset
|
277 codec->codec_id = get_be32(pb); |
aa0abab5e320
fix feed read_header, avoid using put_tag in write_header, to be consistent with read_header, also some minor cosmetics
alex
parents:
858
diff
changeset
|
278 codec->codec_type = get_byte(pb); /* codec_type */ |
0 | 279 codec->bit_rate = get_be32(pb); |
862
aa0abab5e320
fix feed read_header, avoid using put_tag in write_header, to be consistent with read_header, also some minor cosmetics
alex
parents:
858
diff
changeset
|
280 st->quality = get_be32(pb); |
0 | 281 codec->flags = get_be32(pb); |
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
282 codec->flags2 = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
283 codec->debug = get_be32(pb); |
0 | 284 /* specific info */ |
285 switch(codec->codec_type) { | |
286 case CODEC_TYPE_VIDEO: | |
743 | 287 codec->time_base.num = get_be32(pb); |
288 codec->time_base.den = get_be32(pb); | |
0 | 289 codec->width = get_be16(pb); |
290 codec->height = get_be16(pb); | |
291 codec->gop_size = get_be16(pb); | |
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
292 codec->pix_fmt = get_be32(pb); |
0 | 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); | |
34 | 299 codec->rc_eq = av_strdup(get_strz(pb, rc_eq_buf, sizeof(rc_eq_buf))); |
0 | 300 codec->rc_max_rate = get_be32(pb); |
301 codec->rc_min_rate = get_be32(pb); | |
302 codec->rc_buffer_size = get_be32(pb); | |
823 | 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)); | |
0 | 307 codec->dct_algo = get_be32(pb); |
744
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
308 codec->strict_std_compliance = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
309 codec->max_b_frames = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
310 codec->luma_elim_threshold = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
311 codec->chroma_elim_threshold = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
312 codec->mpeg_quant = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
313 codec->intra_dc_precision = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
314 codec->me_method = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
315 codec->mb_decision = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
316 codec->nsse_weight = get_be32(pb); |
da5b3b9e898e
Add in many fields that have been added to the Codec structure. This means
philipjsg
parents:
743
diff
changeset
|
317 codec->frame_skip_cmp = get_be32(pb); |
823 | 318 codec->rc_buffer_aggressivity = av_int2dbl(get_be64(pb)); |
1809
491581a2b9a7
codec_tag settable via VideoTag, and transmit codec_tag in ffm
alex
parents:
1787
diff
changeset
|
319 codec->codec_tag = get_be32(pb); |
0 | 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)) { | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
365 return AVERROR(EAGAIN); |
0 | 366 } |
3358 | 367 dprintf(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n", |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
368 url_ftell(s->pb), s->pb.pos, ffm->write_index, ffm->file_size); |
885 | 369 if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) != |
0 | 370 FRAME_HEADER_SIZE) |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
371 return AVERROR(EAGAIN); |
0 | 372 #if 0 |
3359 | 373 av_hexdump_log(s, AV_LOG_DEBUG, ffm->header, FRAME_HEADER_SIZE); |
0 | 374 #endif |
375 ffm->read_state = READ_DATA; | |
376 /* fall thru */ | |
377 case READ_DATA: | |
2222 | 378 size = AV_RB24(ffm->header + 2); |
0 | 379 if (!ffm_is_avail_data(s, size)) { |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
380 return AVERROR(EAGAIN); |
0 | 381 } |
382 | |
2222 | 383 duration = AV_RB24(ffm->header + 5); |
0 | 384 |
385 av_new_packet(pkt, size); | |
386 pkt->stream_index = ffm->header[0]; | |
3307
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
387 if ((unsigned)pkt->stream_index >= s->nb_streams) { |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
388 av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index); |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
389 av_free_packet(pkt); |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
390 ffm->read_state = READ_HEADER; |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
391 return AVERROR(EAGAIN); |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
392 } |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
393 pkt->pos = url_ftell(s->pb); |
0 | 394 if (ffm->header[1] & FLAG_KEY_FRAME) |
395 pkt->flags |= PKT_FLAG_KEY; | |
396 | |
397 ffm->read_state = READ_HEADER; | |
398 if (ffm_read_data(s, pkt->data, size, 0) != size) { | |
399 /* bad case: desynchronized packet. we cancel all the packet loading */ | |
400 av_free_packet(pkt); | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
401 return AVERROR(EAGAIN); |
0 | 402 } |
901
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
403 if (ffm->first_frame_in_packet) |
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
404 { |
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
405 pkt->pts = ffm->pts; |
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
406 ffm->first_frame_in_packet = 0; |
c1a07d63a66d
pts fix by (Bryan Mayland / bmayland O leoninedev o com)
michael
parents:
896
diff
changeset
|
407 } |
0 | 408 pkt->duration = duration; |
409 break; | |
410 } | |
411 return 0; | |
412 } | |
413 | |
414 /* seek to a given time in the file. The file read pointer is | |
2915 | 415 positioned at or before pts. XXX: the following code is quite |
0 | 416 approximative */ |
558 | 417 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags) |
0 | 418 { |
419 FFMContext *ffm = s->priv_data; | |
420 offset_t pos_min, pos_max, pos; | |
65 | 421 int64_t pts_min, pts_max, pts; |
0 | 422 double pos1; |
423 | |
424 #ifdef DEBUG_SEEK | |
3360 | 425 av_log(s, AV_LOG_DEBUG, "wanted_pts=%0.6f\n", wanted_pts / 1000000.0); |
0 | 426 #endif |
427 /* find the position using linear interpolation (better than | |
428 dichotomy in typical cases) */ | |
429 pos_min = 0; | |
430 pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE; | |
431 while (pos_min <= pos_max) { | |
432 pts_min = get_pts(s, pos_min); | |
433 pts_max = get_pts(s, pos_max); | |
434 /* linear interpolation */ | |
435 pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) / | |
436 (double)(pts_max - pts_min); | |
65 | 437 pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE; |
0 | 438 if (pos <= pos_min) |
439 pos = pos_min; | |
440 else if (pos >= pos_max) | |
441 pos = pos_max; | |
442 pts = get_pts(s, pos); | |
443 /* check if we are lucky */ | |
444 if (pts == wanted_pts) { | |
445 goto found; | |
446 } else if (pts > wanted_pts) { | |
447 pos_max = pos - FFM_PACKET_SIZE; | |
448 } else { | |
449 pos_min = pos + FFM_PACKET_SIZE; | |
450 } | |
451 } | |
558 | 452 pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max; |
0 | 453 if (pos > 0) |
454 pos -= FFM_PACKET_SIZE; | |
455 found: | |
456 ffm_seek1(s, pos); | |
457 return 0; | |
458 } | |
459 | |
460 static int ffm_read_close(AVFormatContext *s) | |
461 { | |
462 AVStream *st; | |
463 int i; | |
464 | |
465 for(i=0;i<s->nb_streams;i++) { | |
466 st = s->streams[i]; | |
467 av_freep(&st->priv_data); | |
468 } | |
469 return 0; | |
470 } | |
471 | |
472 static int ffm_probe(AVProbeData *p) | |
473 { | |
2001
1a3c9056982a
allocate 32 extra bytes at the end of the probe buffer and remove most probe buf_size checks
michael
parents:
1809
diff
changeset
|
474 if ( |
885 | 475 p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' && |
0 | 476 p->buf[3] == '1') |
477 return AVPROBE_SCORE_MAX + 1; | |
478 return 0; | |
479 } | |
480 | |
1169 | 481 AVInputFormat ffm_demuxer = { |
0 | 482 "ffm", |
483 "ffm format", | |
484 sizeof(FFMContext), | |
485 ffm_probe, | |
486 ffm_read_header, | |
487 ffm_read_packet, | |
488 ffm_read_close, | |
489 ffm_seek, | |
490 }; |