Mercurial > libavformat.hg
annotate ffmdec.c @ 4595:af7b24671b7d libavformat
Mark as "internal but installed" the avio.h file.
This should prevent its direct inclusion in an external project, which
results broken if avformat.h is not included before.
author | stefano |
---|---|
date | Thu, 26 Feb 2009 22:34:18 +0000 |
parents | 241532434509 |
children | d426504e401b |
rev | line source |
---|---|
0 | 1 /* |
3348 | 2 * FFM (ffserver live feed) demuxer |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4206
diff
changeset
|
3 * Copyright (c) 2001 Fabrice Bellard |
0 | 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 |
4201
7d2f3f1b68d8
Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
diego
parents:
3973
diff
changeset
|
22 #include "libavutil/intreadwrite.h" |
0 | 23 #include "avformat.h" |
3348 | 24 #include "ffm.h" |
4206 | 25 #if CONFIG_FFSERVER |
0 | 26 #include <unistd.h> |
27 | |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
28 int64_t ffm_read_write_index(int fd) |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
29 { |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
30 uint8_t buf[8]; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
31 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
32 lseek(fd, 8, SEEK_SET); |
4459 | 33 if (read(fd, buf, 8) != 8) |
34 return AVERROR(EIO); | |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
35 return AV_RB64(buf); |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
36 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
37 |
4458
f734aba9452e
Change ffm_write_write_index to return int, and return if error occured.
bcoudurier
parents:
4334
diff
changeset
|
38 int ffm_write_write_index(int fd, int64_t pos) |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
39 { |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
40 uint8_t buf[8]; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
41 int i; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
42 |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
43 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
|
44 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
|
45 lseek(fd, 8, SEEK_SET); |
4458
f734aba9452e
Change ffm_write_write_index to return int, and return if error occured.
bcoudurier
parents:
4334
diff
changeset
|
46 if (write(fd, buf, 8) != 8) |
f734aba9452e
Change ffm_write_write_index to return int, and return if error occured.
bcoudurier
parents:
4334
diff
changeset
|
47 return AVERROR(EIO); |
f734aba9452e
Change ffm_write_write_index to return int, and return if error occured.
bcoudurier
parents:
4334
diff
changeset
|
48 return 8; |
3353
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
49 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
50 |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
51 void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size) |
3353
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 FFMContext *ffm = s->priv_data; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
54 ffm->write_index = pos; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
55 ffm->file_size = file_size; |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
56 } |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
57 #endif // CONFIG_FFSERVER |
b643008b9dcf
move ffserver specific functions up and only include unistd.h in this case
bcoudurier
parents:
3352
diff
changeset
|
58 |
0 | 59 static int ffm_is_avail_data(AVFormatContext *s, int size) |
60 { | |
61 FFMContext *ffm = s->priv_data; | |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
62 int64_t pos, avail_size; |
0 | 63 int len; |
64 | |
65 len = ffm->packet_end - ffm->packet_ptr; | |
3347 | 66 if (size <= len) |
67 return 1; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
68 pos = url_ftell(s->pb); |
0 | 69 if (pos == ffm->write_index) { |
70 /* exactly at the end of stream */ | |
71 return 0; | |
72 } else if (pos < ffm->write_index) { | |
73 avail_size = ffm->write_index - pos; | |
74 } else { | |
75 avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE); | |
76 } | |
77 avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len; | |
78 if (size <= avail_size) | |
79 return 1; | |
80 else | |
81 return 0; | |
82 } | |
83 | |
84 /* first is true if we read the frame header */ | |
85 static int ffm_read_data(AVFormatContext *s, | |
3434
3224f8d495a8
cosmetics, rename first to header, more explicit name
bcoudurier
parents:
3424
diff
changeset
|
86 uint8_t *buf, int size, int header) |
0 | 87 { |
88 FFMContext *ffm = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
89 ByteIOContext *pb = s->pb; |
0 | 90 int len, fill_size, size1, frame_offset; |
91 | |
92 size1 = size; | |
93 while (size > 0) { | |
94 redo: | |
95 len = ffm->packet_end - ffm->packet_ptr; | |
3354
5be8d622e458
return error if len is negative, prevent segfault
bcoudurier
parents:
3353
diff
changeset
|
96 if (len < 0) |
5be8d622e458
return error if len is negative, prevent segfault
bcoudurier
parents:
3353
diff
changeset
|
97 return -1; |
0 | 98 if (len > size) |
99 len = size; | |
100 if (len == 0) { | |
101 if (url_ftell(pb) == ffm->file_size) | |
102 url_fseek(pb, ffm->packet_size, SEEK_SET); | |
103 retry_read: | |
104 get_be16(pb); /* PACKET_ID */ | |
105 fill_size = get_be16(pb); | |
3492 | 106 ffm->dts = get_be64(pb); |
0 | 107 frame_offset = get_be16(pb); |
108 get_buffer(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE); | |
109 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
|
110 if (ffm->packet_end < ffm->packet || frame_offset < 0) |
537 | 111 return -1; |
0 | 112 /* if first packet or resynchronization packet, we must |
113 handle it specifically */ | |
114 if (ffm->first_packet || (frame_offset & 0x8000)) { | |
115 if (!frame_offset) { | |
116 /* This packet has no frame headers in it */ | |
117 if (url_ftell(pb) >= ffm->packet_size * 3) { | |
118 url_fseek(pb, -ffm->packet_size * 2, SEEK_CUR); | |
119 goto retry_read; | |
120 } | |
121 /* This is bad, we cannot find a valid frame header */ | |
122 return 0; | |
123 } | |
124 ffm->first_packet = 0; | |
3366 | 125 if ((frame_offset & 0x7fff) < FFM_HEADER_SIZE) |
537 | 126 return -1; |
0 | 127 ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE; |
3434
3224f8d495a8
cosmetics, rename first to header, more explicit name
bcoudurier
parents:
3424
diff
changeset
|
128 if (!header) |
0 | 129 break; |
130 } else { | |
131 ffm->packet_ptr = ffm->packet; | |
132 } | |
133 goto redo; | |
134 } | |
135 memcpy(buf, ffm->packet_ptr, len); | |
136 buf += len; | |
137 ffm->packet_ptr += len; | |
138 size -= len; | |
3434
3224f8d495a8
cosmetics, rename first to header, more explicit name
bcoudurier
parents:
3424
diff
changeset
|
139 header = 0; |
0 | 140 } |
141 return size1 - size; | |
142 } | |
143 | |
3351
6063f3cf59e6
move DEBUG_SEEK definition before get_pts since func uses it
bcoudurier
parents:
3350
diff
changeset
|
144 //#define DEBUG_SEEK |
6063f3cf59e6
move DEBUG_SEEK definition before get_pts since func uses it
bcoudurier
parents:
3350
diff
changeset
|
145 |
3352
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
146 /* 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
|
147 by the write position inside this function */ |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
148 static void ffm_seek1(AVFormatContext *s, int64_t pos1) |
3352
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
149 { |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
150 FFMContext *ffm = s->priv_data; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
151 ByteIOContext *pb = s->pb; |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
152 int64_t pos; |
3352
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
153 |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
154 pos = pos1 + ffm->write_index; |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
155 if (pos >= ffm->file_size) |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
156 pos -= (ffm->file_size - FFM_PACKET_SIZE); |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
157 #ifdef DEBUG_SEEK |
3360 | 158 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
|
159 #endif |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
160 url_fseek(pb, pos, SEEK_SET); |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
161 } |
10fe58a8cc8b
move ffm_seek1 before get_pts function since func uses it
bcoudurier
parents:
3351
diff
changeset
|
162 |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
163 static int64_t get_dts(AVFormatContext *s, int64_t pos) |
3350
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 ByteIOContext *pb = s->pb; |
3492 | 166 int64_t dts; |
3350
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
167 |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
168 ffm_seek1(s, pos); |
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
169 url_fskip(pb, 4); |
3492 | 170 dts = get_be64(pb); |
3350
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
171 #ifdef DEBUG_SEEK |
3360 | 172 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
|
173 #endif |
3492 | 174 return dts; |
3350
e092bf9b744f
move get_pts function to avoid useless declaration
bcoudurier
parents:
3348
diff
changeset
|
175 } |
0 | 176 |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
177 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
|
178 { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
179 FFMContext *ffm = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
180 ByteIOContext *pb = s->pb; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
181 int64_t pts; |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
182 //int64_t orig_write_index = ffm->write_index; |
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
183 int64_t pos_min, pos_max; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
184 int64_t pts_start; |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
185 int64_t ptr = url_ftell(pb); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
186 |
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 pos_min = 0; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
189 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
|
190 |
3492 | 191 pts_start = get_dts(s, pos_min); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
192 |
3492 | 193 pts = get_dts(s, pos_max); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
194 |
885 | 195 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
|
196 goto end; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
197 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
198 ffm->write_index = FFM_PACKET_SIZE; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
199 |
3492 | 200 pts_start = get_dts(s, pos_min); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
201 |
3492 | 202 pts = get_dts(s, pos_max); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
203 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
204 if (pts - 100000 <= pts_start) { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
205 while (1) { |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
206 int64_t newpos; |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
207 int64_t newpts; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
208 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
209 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
|
210 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
211 if (newpos == pos_min) |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
212 break; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
213 |
3492 | 214 newpts = get_dts(s, newpos); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
215 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
216 if (newpts - 100000 <= pts) { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
217 pos_max = newpos; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
218 pts = newpts; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
219 } else { |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
220 pos_min = newpos; |
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 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
223 ffm->write_index += pos_max; |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
224 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
225 |
1443
404048ea11bc
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
1415
diff
changeset
|
226 //printf("Adjusted write index from %"PRId64" to %"PRId64": pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.); |
3492 | 227 //printf("pts range %0.6f - %0.6f\n", get_dts(s, 0) / 1000000. , get_dts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. ); |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
228 |
390
3a40642dc4df
adjust_write_index() fix by ("Curi Fabio Eduardo (SFL)" <curif at TELEFONICA dot COM dot AR>)
michael
parents:
318
diff
changeset
|
229 end: |
318
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
230 url_fseek(pb, ptr, SEEK_SET); |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
231 } |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
232 |
54e915169d48
Add more resilience in reading ffm files. In particular, don't assume
philipjsg
parents:
277
diff
changeset
|
233 |
0 | 234 static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) |
235 { | |
236 FFMContext *ffm = s->priv_data; | |
237 AVStream *st; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
238 ByteIOContext *pb = s->pb; |
0 | 239 AVCodecContext *codec; |
187 | 240 int i, nb_streams; |
65 | 241 uint32_t tag; |
0 | 242 |
243 /* header */ | |
244 tag = get_le32(pb); | |
245 if (tag != MKTAG('F', 'F', 'M', '1')) | |
246 goto fail; | |
247 ffm->packet_size = get_be32(pb); | |
248 if (ffm->packet_size != FFM_PACKET_SIZE) | |
249 goto fail; | |
250 ffm->write_index = get_be64(pb); | |
251 /* get also filesize */ | |
252 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
|
253 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
|
254 adjust_write_index(s); |
0 | 255 } else { |
1556 | 256 ffm->file_size = (UINT64_C(1) << 63) - 1; |
0 | 257 } |
258 | |
187 | 259 nb_streams = get_be32(pb); |
0 | 260 get_be32(pb); /* total bitrate */ |
261 /* read each stream */ | |
187 | 262 for(i=0;i<nb_streams;i++) { |
0 | 263 char rc_eq_buf[128]; |
264 | |
187 | 265 st = av_new_stream(s, 0); |
0 | 266 if (!st) |
267 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
|
268 s->streams[i] = st; |
885 | 269 |
468 | 270 av_set_pts_info(st, 64, 1, 1000000); |
885 | 271 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
272 codec = st->codec; |
0 | 273 /* 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
|
274 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
|
275 codec->codec_type = get_byte(pb); /* codec_type */ |
0 | 276 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
|
277 st->quality = get_be32(pb); |
0 | 278 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
|
279 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
|
280 codec->debug = get_be32(pb); |
0 | 281 /* specific info */ |
282 switch(codec->codec_type) { | |
283 case CODEC_TYPE_VIDEO: | |
743 | 284 codec->time_base.num = get_be32(pb); |
285 codec->time_base.den = get_be32(pb); | |
0 | 286 codec->width = get_be16(pb); |
287 codec->height = get_be16(pb); | |
288 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
|
289 codec->pix_fmt = get_be32(pb); |
0 | 290 codec->qmin = get_byte(pb); |
291 codec->qmax = get_byte(pb); | |
292 codec->max_qdiff = get_byte(pb); | |
293 codec->qcompress = get_be16(pb) / 10000.0; | |
294 codec->qblur = get_be16(pb) / 10000.0; | |
295 codec->bit_rate_tolerance = get_be32(pb); | |
34 | 296 codec->rc_eq = av_strdup(get_strz(pb, rc_eq_buf, sizeof(rc_eq_buf))); |
0 | 297 codec->rc_max_rate = get_be32(pb); |
298 codec->rc_min_rate = get_be32(pb); | |
299 codec->rc_buffer_size = get_be32(pb); | |
823 | 300 codec->i_quant_factor = av_int2dbl(get_be64(pb)); |
301 codec->b_quant_factor = av_int2dbl(get_be64(pb)); | |
302 codec->i_quant_offset = av_int2dbl(get_be64(pb)); | |
303 codec->b_quant_offset = av_int2dbl(get_be64(pb)); | |
0 | 304 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
|
305 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
|
306 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
|
307 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
|
308 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
|
309 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
|
310 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
|
311 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
|
312 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
|
313 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
|
314 codec->frame_skip_cmp = get_be32(pb); |
823 | 315 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
|
316 codec->codec_tag = get_be32(pb); |
3489 | 317 codec->thread_count = get_byte(pb); |
0 | 318 break; |
319 case CODEC_TYPE_AUDIO: | |
320 codec->sample_rate = get_be32(pb); | |
321 codec->channels = get_le16(pb); | |
322 codec->frame_size = get_le16(pb); | |
323 break; | |
324 default: | |
325 goto fail; | |
326 } | |
3441 | 327 if (codec->flags & CODEC_FLAG_GLOBAL_HEADER) { |
328 codec->extradata_size = get_be32(pb); | |
329 codec->extradata = av_malloc(codec->extradata_size); | |
330 if (!codec->extradata) | |
331 return AVERROR(ENOMEM); | |
332 get_buffer(pb, codec->extradata, codec->extradata_size); | |
333 } | |
0 | 334 } |
335 | |
336 /* get until end of block reached */ | |
337 while ((url_ftell(pb) % ffm->packet_size) != 0) | |
338 get_byte(pb); | |
339 | |
340 /* init packet demux */ | |
341 ffm->packet_ptr = ffm->packet; | |
342 ffm->packet_end = ffm->packet; | |
343 ffm->frame_offset = 0; | |
3492 | 344 ffm->dts = 0; |
0 | 345 ffm->read_state = READ_HEADER; |
346 ffm->first_packet = 1; | |
347 return 0; | |
348 fail: | |
349 for(i=0;i<s->nb_streams;i++) { | |
350 st = s->streams[i]; | |
351 if (st) { | |
352 av_free(st); | |
353 } | |
354 } | |
355 return -1; | |
356 } | |
357 | |
358 /* return < 0 if eof */ | |
359 static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt) | |
360 { | |
361 int size; | |
362 FFMContext *ffm = s->priv_data; | |
363 int duration; | |
364 | |
4334
376664156fe2
return eof/error if only ffm header has been written, should fix #815
bcoudurier
parents:
4251
diff
changeset
|
365 if (url_fsize(s->pb) == FFM_PACKET_SIZE) |
376664156fe2
return eof/error if only ffm header has been written, should fix #815
bcoudurier
parents:
4251
diff
changeset
|
366 return -1; |
376664156fe2
return eof/error if only ffm header has been written, should fix #815
bcoudurier
parents:
4251
diff
changeset
|
367 |
0 | 368 switch(ffm->read_state) { |
369 case READ_HEADER: | |
3442
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
370 if (!ffm_is_avail_data(s, FRAME_HEADER_SIZE+4)) { |
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 } |
3358 | 373 dprintf(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n", |
3444
59989e1a2154
Fix compilation with -DDEBUG, patch by Albert Astals Cid, aastals tv-wan es.
diego
parents:
3442
diff
changeset
|
374 url_ftell(s->pb), s->pb->pos, ffm->write_index, ffm->file_size); |
885 | 375 if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) != |
0 | 376 FRAME_HEADER_SIZE) |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
377 return AVERROR(EAGAIN); |
3442
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
378 if (ffm->header[1] & FLAG_DTS) |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
379 if (ffm_read_data(s, ffm->header+16, 4, 1) != 4) |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
380 return AVERROR(EAGAIN); |
0 | 381 #if 0 |
3359 | 382 av_hexdump_log(s, AV_LOG_DEBUG, ffm->header, FRAME_HEADER_SIZE); |
0 | 383 #endif |
384 ffm->read_state = READ_DATA; | |
385 /* fall thru */ | |
386 case READ_DATA: | |
2222 | 387 size = AV_RB24(ffm->header + 2); |
0 | 388 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
|
389 return AVERROR(EAGAIN); |
0 | 390 } |
391 | |
2222 | 392 duration = AV_RB24(ffm->header + 5); |
0 | 393 |
394 av_new_packet(pkt, size); | |
395 pkt->stream_index = ffm->header[0]; | |
3307
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
396 if ((unsigned)pkt->stream_index >= s->nb_streams) { |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
397 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
|
398 av_free_packet(pkt); |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
399 ffm->read_state = READ_HEADER; |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
400 return AVERROR(EAGAIN); |
e4ff879325c0
check pkt stream index before returning packet, prevent segfault
bcoudurier
parents:
2915
diff
changeset
|
401 } |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2222
diff
changeset
|
402 pkt->pos = url_ftell(s->pb); |
0 | 403 if (ffm->header[1] & FLAG_KEY_FRAME) |
404 pkt->flags |= PKT_FLAG_KEY; | |
405 | |
406 ffm->read_state = READ_HEADER; | |
407 if (ffm_read_data(s, pkt->data, size, 0) != size) { | |
408 /* bad case: desynchronized packet. we cancel all the packet loading */ | |
409 av_free_packet(pkt); | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1556
diff
changeset
|
410 return AVERROR(EAGAIN); |
0 | 411 } |
3442
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
412 pkt->pts = AV_RB64(ffm->header+8); |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
413 if (ffm->header[1] & FLAG_DTS) |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
414 pkt->dts = pkt->pts - AV_RB32(ffm->header+16); |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
415 else |
a6f4d53b738d
pass dts and pts through ffm, should fix streaming b frames
bcoudurier
parents:
3441
diff
changeset
|
416 pkt->dts = pkt->pts; |
0 | 417 pkt->duration = duration; |
418 break; | |
419 } | |
420 return 0; | |
421 } | |
422 | |
423 /* seek to a given time in the file. The file read pointer is | |
2915 | 424 positioned at or before pts. XXX: the following code is quite |
0 | 425 approximative */ |
558 | 426 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags) |
0 | 427 { |
428 FFMContext *ffm = s->priv_data; | |
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3603
diff
changeset
|
429 int64_t pos_min, pos_max, pos; |
65 | 430 int64_t pts_min, pts_max, pts; |
0 | 431 double pos1; |
432 | |
433 #ifdef DEBUG_SEEK | |
3360 | 434 av_log(s, AV_LOG_DEBUG, "wanted_pts=%0.6f\n", wanted_pts / 1000000.0); |
0 | 435 #endif |
436 /* find the position using linear interpolation (better than | |
437 dichotomy in typical cases) */ | |
438 pos_min = 0; | |
439 pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE; | |
440 while (pos_min <= pos_max) { | |
3492 | 441 pts_min = get_dts(s, pos_min); |
442 pts_max = get_dts(s, pos_max); | |
0 | 443 /* linear interpolation */ |
444 pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) / | |
445 (double)(pts_max - pts_min); | |
65 | 446 pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE; |
0 | 447 if (pos <= pos_min) |
448 pos = pos_min; | |
449 else if (pos >= pos_max) | |
450 pos = pos_max; | |
3492 | 451 pts = get_dts(s, pos); |
0 | 452 /* check if we are lucky */ |
453 if (pts == wanted_pts) { | |
454 goto found; | |
455 } else if (pts > wanted_pts) { | |
456 pos_max = pos - FFM_PACKET_SIZE; | |
457 } else { | |
458 pos_min = pos + FFM_PACKET_SIZE; | |
459 } | |
460 } | |
558 | 461 pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max; |
0 | 462 if (pos > 0) |
463 pos -= FFM_PACKET_SIZE; | |
464 found: | |
465 ffm_seek1(s, pos); | |
3437 | 466 |
467 /* reset read state */ | |
468 ffm->read_state = READ_HEADER; | |
469 ffm->packet_ptr = ffm->packet; | |
470 ffm->packet_end = ffm->packet; | |
471 ffm->first_packet = 1; | |
472 | |
0 | 473 return 0; |
474 } | |
475 | |
476 static int ffm_probe(AVProbeData *p) | |
477 { | |
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
|
478 if ( |
885 | 479 p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' && |
0 | 480 p->buf[3] == '1') |
481 return AVPROBE_SCORE_MAX + 1; | |
482 return 0; | |
483 } | |
484 | |
1169 | 485 AVInputFormat ffm_demuxer = { |
0 | 486 "ffm", |
3603 | 487 NULL_IF_CONFIG_SMALL("FFM (FFserver live feed) format"), |
0 | 488 sizeof(FFMContext), |
489 ffm_probe, | |
490 ffm_read_header, | |
491 ffm_read_packet, | |
3481 | 492 NULL, |
0 | 493 ffm_seek, |
494 }; |