Mercurial > libavformat.hg
annotate img.c @ 1330:18d9db9590e6 libavformat
fix r_frame_rate init code for groundhog.vob
author | michael |
---|---|
date | Tue, 26 Sep 2006 18:34:07 +0000 |
parents | 185190bdc185 |
children | 0899bfe4105c |
rev | line source |
---|---|
0 | 1 /* |
2 * Image format | |
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 */ |
19 #include "avformat.h" | |
11
932b59c66c60
mingw patch by (Bill Eldridge <bill at rfa dot org>)
michaelni
parents:
10
diff
changeset
|
20 |
0 | 21 typedef struct { |
22 int width; | |
23 int height; | |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
24 int img_first; |
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
25 int img_last; |
0 | 26 int img_number; |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
27 int img_count; |
0 | 28 int img_size; |
20 | 29 AVImageFormat *img_fmt; |
30 int pix_fmt; | |
0 | 31 int is_pipe; |
32 char path[1024]; | |
20 | 33 /* temporary usage */ |
34 void *ptr; | |
0 | 35 } VideoData; |
36 | |
189 | 37 |
38 /* return -1 if no image found */ | |
885 | 39 static int find_image_range(int *pfirst_index, int *plast_index, |
189 | 40 const char *path) |
41 { | |
42 char buf[1024]; | |
43 int range, last_index, range1, first_index; | |
44 | |
45 /* find the first image */ | |
46 for(first_index = 0; first_index < 5; first_index++) { | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
47 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0) |
189 | 48 goto fail; |
49 if (url_exist(buf)) | |
50 break; | |
51 } | |
52 if (first_index == 5) | |
53 goto fail; | |
885 | 54 |
189 | 55 /* find the last image */ |
56 last_index = first_index; | |
57 for(;;) { | |
58 range = 0; | |
59 for(;;) { | |
60 if (!range) | |
61 range1 = 1; | |
62 else | |
63 range1 = 2 * range; | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
64 if (av_get_frame_filename(buf, sizeof(buf), path, |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
65 last_index + range1) < 0) |
189 | 66 goto fail; |
67 if (!url_exist(buf)) | |
68 break; | |
69 range = range1; | |
70 /* just in case... */ | |
71 if (range >= (1 << 30)) | |
72 goto fail; | |
73 } | |
74 /* we are sure than image last_index + range exists */ | |
75 if (!range) | |
76 break; | |
77 last_index += range; | |
78 } | |
79 *pfirst_index = first_index; | |
80 *plast_index = last_index; | |
81 return 0; | |
82 fail: | |
83 return -1; | |
84 } | |
85 | |
86 | |
20 | 87 static int image_probe(AVProbeData *p) |
0 | 88 { |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
89 if (av_filename_number_test(p->filename) && guess_image_format(p->filename)) |
582 | 90 return AVPROBE_SCORE_MAX-1; |
20 | 91 else |
92 return 0; | |
0 | 93 } |
94 | |
20 | 95 static int read_header_alloc_cb(void *opaque, AVImageInfo *info) |
0 | 96 { |
20 | 97 VideoData *s = opaque; |
98 | |
99 s->width = info->width; | |
100 s->height = info->height; | |
101 s->pix_fmt = info->pix_fmt; | |
102 /* stop image reading but no error */ | |
103 return 1; | |
0 | 104 } |
105 | |
20 | 106 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap) |
0 | 107 { |
20 | 108 VideoData *s = s1->priv_data; |
189 | 109 int ret, first_index, last_index; |
20 | 110 char buf[1024]; |
111 ByteIOContext pb1, *f = &pb1; | |
112 AVStream *st; | |
113 | |
114 st = av_new_stream(s1, 0); | |
115 if (!st) { | |
116 return -ENOMEM; | |
117 } | |
118 | |
1003 | 119 if (ap->image_format) |
20 | 120 s->img_fmt = ap->image_format; |
121 | |
639 | 122 pstrcpy(s->path, sizeof(s->path), s1->filename); |
20 | 123 s->img_number = 0; |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
124 s->img_count = 0; |
885 | 125 |
20 | 126 /* find format */ |
127 if (s1->iformat->flags & AVFMT_NOFILE) | |
128 s->is_pipe = 0; | |
129 else | |
130 s->is_pipe = 1; | |
743 | 131 |
1003 | 132 if (!ap->time_base.num) { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
133 st->codec->time_base= (AVRational){1,25}; |
189 | 134 } else { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
135 st->codec->time_base= ap->time_base; |
189 | 136 } |
885 | 137 |
20 | 138 if (!s->is_pipe) { |
189 | 139 if (find_image_range(&first_index, &last_index, s->path) < 0) |
140 goto fail; | |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
141 s->img_first = first_index; |
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
142 s->img_last = last_index; |
189 | 143 s->img_number = first_index; |
144 /* compute duration */ | |
145 st->start_time = 0; | |
743 | 146 st->duration = last_index - first_index + 1; |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
147 if (av_get_frame_filename(buf, sizeof(buf), s->path, s->img_number) < 0) |
189 | 148 goto fail; |
149 if (url_fopen(f, buf, URL_RDONLY) < 0) | |
20 | 150 goto fail; |
151 } else { | |
152 f = &s1->pb; | |
0 | 153 } |
885 | 154 |
20 | 155 ret = av_read_image(f, s1->filename, s->img_fmt, read_header_alloc_cb, s); |
156 if (ret < 0) | |
157 goto fail1; | |
158 | |
159 if (!s->is_pipe) { | |
160 url_fclose(f); | |
161 } else { | |
162 url_fseek(f, 0, SEEK_SET); | |
163 } | |
885 | 164 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
165 st->codec->codec_type = CODEC_TYPE_VIDEO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
166 st->codec->codec_id = CODEC_ID_RAWVIDEO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
167 st->codec->width = s->width; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
168 st->codec->height = s->height; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
169 st->codec->pix_fmt = s->pix_fmt; |
459 | 170 s->img_size = avpicture_get_size(s->pix_fmt, (s->width+15)&(~15), (s->height+15)&(~15)); |
20 | 171 |
0 | 172 return 0; |
20 | 173 fail1: |
174 if (!s->is_pipe) | |
175 url_fclose(f); | |
176 fail: | |
482 | 177 return AVERROR_IO; |
0 | 178 } |
179 | |
20 | 180 static int read_packet_alloc_cb(void *opaque, AVImageInfo *info) |
0 | 181 { |
20 | 182 VideoData *s = opaque; |
0 | 183 |
20 | 184 if (info->width != s->width || |
185 info->height != s->height) | |
186 return -1; | |
459 | 187 avpicture_fill(&info->pict, s->ptr, info->pix_fmt, (info->width+15)&(~15), (info->height+15)&(~15)); |
0 | 188 return 0; |
189 } | |
190 | |
191 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) | |
192 { | |
193 VideoData *s = s1->priv_data; | |
194 char filename[1024]; | |
195 int ret; | |
196 ByteIOContext f1, *f; | |
197 | |
198 if (!s->is_pipe) { | |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
199 /* loop over input */ |
1175
8b53c0f3e7ad
add loop_input to AVFormatContext, getting rid of old hack
mru
parents:
1169
diff
changeset
|
200 if (s1->loop_input && s->img_number > s->img_last) { |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
201 s->img_number = s->img_first; |
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
202 } |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
203 if (av_get_frame_filename(filename, sizeof(filename), |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
204 s->path, s->img_number) < 0) |
482 | 205 return AVERROR_IO; |
0 | 206 f = &f1; |
207 if (url_fopen(f, filename, URL_RDONLY) < 0) | |
482 | 208 return AVERROR_IO; |
0 | 209 } else { |
210 f = &s1->pb; | |
211 if (url_feof(f)) | |
482 | 212 return AVERROR_IO; |
0 | 213 } |
214 | |
215 av_new_packet(pkt, s->img_size); | |
216 pkt->stream_index = 0; | |
217 | |
20 | 218 s->ptr = pkt->data; |
219 ret = av_read_image(f, filename, s->img_fmt, read_packet_alloc_cb, s); | |
0 | 220 if (!s->is_pipe) { |
221 url_fclose(f); | |
222 } | |
223 | |
224 if (ret < 0) { | |
225 av_free_packet(pkt); | |
482 | 226 return AVERROR_IO; /* signal EOF */ |
0 | 227 } else { |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
228 /* XXX: computing this pts is not necessary as it is done in |
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
229 the generic code too */ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
230 pkt->pts = av_rescale((int64_t)s->img_count * s1->streams[0]->codec->time_base.num, s1->streams[0]->time_base.den, s1->streams[0]->codec->time_base.den) / s1->streams[0]->time_base.num; |
199
66a05c4f8350
suppressed frame number modulus hack - added loop_input hack which I find easier to understand
bellard
parents:
189
diff
changeset
|
231 s->img_count++; |
0 | 232 s->img_number++; |
233 return 0; | |
234 } | |
235 } | |
236 | |
237 static int img_read_close(AVFormatContext *s1) | |
238 { | |
239 return 0; | |
240 } | |
241 | |
242 /******************************************************/ | |
243 /* image output */ | |
244 | |
20 | 245 static int img_set_parameters(AVFormatContext *s, AVFormatParameters *ap) |
0 | 246 { |
20 | 247 VideoData *img = s->priv_data; |
248 AVStream *st; | |
249 AVImageFormat *img_fmt; | |
0 | 250 int i; |
251 | |
20 | 252 /* find output image format */ |
1003 | 253 if (ap->image_format) { |
20 | 254 img_fmt = ap->image_format; |
255 } else { | |
256 img_fmt = guess_image_format(s->filename); | |
257 } | |
258 if (!img_fmt) | |
259 return -1; | |
0 | 260 |
20 | 261 if (s->nb_streams != 1) |
262 return -1; | |
885 | 263 |
20 | 264 st = s->streams[0]; |
265 /* we select the first matching format */ | |
266 for(i=0;i<PIX_FMT_NB;i++) { | |
267 if (img_fmt->supported_pixel_formats & (1 << i)) | |
268 break; | |
0 | 269 } |
20 | 270 if (i >= PIX_FMT_NB) |
271 return -1; | |
272 img->img_fmt = img_fmt; | |
273 img->pix_fmt = i; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
274 st->codec->pix_fmt = img->pix_fmt; |
0 | 275 return 0; |
276 } | |
277 | |
278 static int img_write_header(AVFormatContext *s) | |
279 { | |
280 VideoData *img = s->priv_data; | |
281 | |
282 img->img_number = 1; | |
639 | 283 pstrcpy(img->path, sizeof(img->path), s->filename); |
0 | 284 |
285 /* find format */ | |
286 if (s->oformat->flags & AVFMT_NOFILE) | |
287 img->is_pipe = 0; | |
288 else | |
289 img->is_pipe = 1; | |
885 | 290 |
0 | 291 return 0; |
292 } | |
293 | |
468 | 294 static int img_write_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 295 { |
296 VideoData *img = s->priv_data; | |
468 | 297 AVStream *st = s->streams[pkt->stream_index]; |
0 | 298 ByteIOContext pb1, *pb; |
20 | 299 AVPicture *picture; |
300 int width, height, ret; | |
0 | 301 char filename[1024]; |
20 | 302 AVImageInfo info; |
0 | 303 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
304 width = st->codec->width; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
305 height = st->codec->height; |
885 | 306 |
468 | 307 picture = (AVPicture *)pkt->data; |
0 | 308 |
20 | 309 if (!img->is_pipe) { |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
310 if (av_get_frame_filename(filename, sizeof(filename), |
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
311 img->path, img->img_number) < 0) |
482 | 312 return AVERROR_IO; |
0 | 313 pb = &pb1; |
314 if (url_fopen(pb, filename, URL_WRONLY) < 0) | |
482 | 315 return AVERROR_IO; |
0 | 316 } else { |
317 pb = &s->pb; | |
318 } | |
20 | 319 info.width = width; |
320 info.height = height; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
743
diff
changeset
|
321 info.pix_fmt = st->codec->pix_fmt; |
280 | 322 info.interleaved = 0; /* FIXME: there should be a way to set it right */ |
20 | 323 info.pict = *picture; |
324 ret = av_write_image(pb, img->img_fmt, &info); | |
0 | 325 if (!img->is_pipe) { |
326 url_fclose(pb); | |
327 } | |
328 | |
329 img->img_number++; | |
330 return 0; | |
331 } | |
332 | |
333 static int img_write_trailer(AVFormatContext *s) | |
334 { | |
335 return 0; | |
336 } | |
337 | |
20 | 338 /* input */ |
1169 | 339 #ifdef CONFIG_IMAGE_DEMUXER |
340 AVInputFormat image_demuxer = { | |
20 | 341 "image", |
342 "image sequence", | |
0 | 343 sizeof(VideoData), |
20 | 344 image_probe, |
0 | 345 img_read_header, |
346 img_read_packet, | |
347 img_read_close, | |
348 NULL, | |
439 | 349 NULL, |
0 | 350 AVFMT_NOFILE | AVFMT_NEEDNUMBER, |
351 }; | |
1169 | 352 #endif |
353 #ifdef CONFIG_IMAGEPIPE_DEMUXER | |
354 AVInputFormat imagepipe_demuxer = { | |
20 | 355 "imagepipe", |
356 "piped image sequence", | |
0 | 357 sizeof(VideoData), |
358 NULL, /* no probe */ | |
359 img_read_header, | |
360 img_read_packet, | |
361 img_read_close, | |
362 NULL, | |
363 }; | |
1169 | 364 #endif |
20 | 365 |
366 /* output */ | |
1169 | 367 #ifdef CONFIG_IMAGE_MUXER |
368 AVOutputFormat image_muxer = { | |
20 | 369 "image", |
370 "image sequence", | |
0 | 371 "", |
20 | 372 "", |
0 | 373 sizeof(VideoData), |
374 CODEC_ID_NONE, | |
375 CODEC_ID_RAWVIDEO, | |
376 img_write_header, | |
377 img_write_packet, | |
378 img_write_trailer, | |
20 | 379 AVFMT_NOFILE | AVFMT_NEEDNUMBER | AVFMT_RAWPICTURE, |
380 img_set_parameters, | |
0 | 381 }; |
1169 | 382 #endif |
383 #ifdef CONFIG_IMAGEPIPE_MUXER | |
384 AVOutputFormat imagepipe_muxer = { | |
20 | 385 "imagepipe", |
386 "piped image sequence", | |
0 | 387 "", |
20 | 388 "", |
0 | 389 sizeof(VideoData), |
390 CODEC_ID_NONE, | |
391 CODEC_ID_RAWVIDEO, | |
392 img_write_header, | |
393 img_write_packet, | |
394 img_write_trailer, | |
21 | 395 AVFMT_RAWPICTURE, |
20 | 396 img_set_parameters, |
0 | 397 }; |
1169 | 398 #endif |