Mercurial > libavformat.hg
annotate img2.c @ 2018:0d9b233dff9b libavformat
DVR-MS probe audio format
patch by John Donaghy \ johnfdonaghy chez gmail dot com /
Original thread:
date: 03/13/2007 04:56 PM
subject: [Ffmpeg-devel] [PATCH] DVR-MS probe audio format - was DVR-MS bug (MP2 decoding)
author | benoit |
---|---|
date | Thu, 12 Apr 2007 08:11:33 +0000 |
parents | b5e15030d788 |
children | a3e79d6e4e3c |
rev | line source |
---|---|
497 | 1 /* |
2 * Image format | |
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard. | |
4 * Copyright (c) 2004 Michael Niedermayer | |
5 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
6 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
7 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
497 | 9 * modify it under the terms of the GNU Lesser General Public |
10 * 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:
1291
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
497 | 12 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1291
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
497 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Lesser General Public License for more details. | |
17 * | |
18 * 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:
1291
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
497 | 21 */ |
22 #include "avformat.h" | |
23 | |
24 typedef struct { | |
25 int img_first; | |
26 int img_last; | |
27 int img_number; | |
28 int img_count; | |
29 int is_pipe; | |
30 char path[1024]; | |
31 } VideoData; | |
32 | |
33 typedef struct { | |
34 enum CodecID id; | |
35 const char *str; | |
36 } IdStrMap; | |
37 | |
38 static const IdStrMap img_tags[] = { | |
39 { CODEC_ID_MJPEG , "jpeg"}, | |
40 { CODEC_ID_MJPEG , "jpg"}, | |
41 { CODEC_ID_LJPEG , "ljpg"}, | |
581 | 42 { CODEC_ID_PNG , "png"}, |
583 | 43 { CODEC_ID_PPM , "ppm"}, |
44 { CODEC_ID_PGM , "pgm"}, | |
45 { CODEC_ID_PGMYUV , "pgmyuv"}, | |
46 { CODEC_ID_PBM , "pbm"}, | |
47 { CODEC_ID_PAM , "pam"}, | |
497 | 48 { CODEC_ID_MPEG1VIDEO, "mpg1-img"}, |
49 { CODEC_ID_MPEG2VIDEO, "mpg2-img"}, | |
50 { CODEC_ID_MPEG4 , "mpg4-img"}, | |
51 { CODEC_ID_FFV1 , "ffv1-img"}, | |
635 | 52 { CODEC_ID_RAWVIDEO , "y"}, |
875 | 53 { CODEC_ID_BMP , "bmp"}, |
1409 | 54 { CODEC_ID_GIF , "gif"}, |
1416 | 55 { CODEC_ID_TARGA , "tga"}, |
56 { CODEC_ID_TIFF , "tiff"}, | |
1985 | 57 { CODEC_ID_SGI , "sgi"}, |
497 | 58 {0, NULL} |
59 }; | |
60 | |
635 | 61 static int sizes[][2] = { |
62 { 640, 480 }, | |
63 { 720, 480 }, | |
64 { 720, 576 }, | |
65 { 352, 288 }, | |
66 { 352, 240 }, | |
67 { 160, 128 }, | |
68 { 512, 384 }, | |
69 { 640, 352 }, | |
70 { 640, 240 }, | |
71 }; | |
72 | |
73 static int infer_size(int *width_ptr, int *height_ptr, int size) | |
74 { | |
75 int i; | |
76 | |
77 for(i=0;i<sizeof(sizes)/sizeof(sizes[0]);i++) { | |
78 if ((sizes[i][0] * sizes[i][1]) == size) { | |
79 *width_ptr = sizes[i][0]; | |
80 *height_ptr = sizes[i][1]; | |
81 return 0; | |
82 } | |
83 } | |
84 return -1; | |
85 } | |
497 | 86 static enum CodecID av_str2id(const IdStrMap *tags, const char *str) |
87 { | |
530 | 88 str= strrchr(str, '.'); |
89 if(!str) return CODEC_ID_NONE; | |
90 str++; | |
497 | 91 |
92 while (tags->id) { | |
93 int i; | |
94 for(i=0; toupper(tags->str[i]) == toupper(str[i]); i++){ | |
95 if(tags->str[i]==0 && str[i]==0) | |
96 return tags->id; | |
97 } | |
98 | |
99 tags++; | |
100 } | |
101 return CODEC_ID_NONE; | |
102 } | |
103 | |
104 /* return -1 if no image found */ | |
885 | 105 static int find_image_range(int *pfirst_index, int *plast_index, |
497 | 106 const char *path) |
107 { | |
108 char buf[1024]; | |
109 int range, last_index, range1, first_index; | |
110 | |
111 /* find the first image */ | |
112 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
|
113 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){ |
885 | 114 *pfirst_index = |
498 | 115 *plast_index = 1; |
116 return 0; | |
117 } | |
497 | 118 if (url_exist(buf)) |
119 break; | |
120 } | |
121 if (first_index == 5) | |
122 goto fail; | |
885 | 123 |
497 | 124 /* find the last image */ |
125 last_index = first_index; | |
126 for(;;) { | |
127 range = 0; | |
128 for(;;) { | |
129 if (!range) | |
130 range1 = 1; | |
131 else | |
132 range1 = 2 * range; | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
133 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
|
134 last_index + range1) < 0) |
497 | 135 goto fail; |
136 if (!url_exist(buf)) | |
137 break; | |
138 range = range1; | |
139 /* just in case... */ | |
140 if (range >= (1 << 30)) | |
141 goto fail; | |
142 } | |
143 /* we are sure than image last_index + range exists */ | |
144 if (!range) | |
145 break; | |
146 last_index += range; | |
147 } | |
148 *pfirst_index = first_index; | |
149 *plast_index = last_index; | |
150 return 0; | |
151 fail: | |
152 return -1; | |
153 } | |
154 | |
155 | |
156 static int image_probe(AVProbeData *p) | |
157 { | |
1594
ffb64cb62cc9
Fix a crash when probing img2 format with a NULL filename.
aurel
parents:
1551
diff
changeset
|
158 if (p->filename && av_str2id(img_tags, p->filename)) { |
1551
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
159 if (av_filename_number_test(p->filename)) |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
160 return AVPROBE_SCORE_MAX; |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
161 else |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
162 return AVPROBE_SCORE_MAX/2; |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
163 } |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
164 return 0; |
497 | 165 } |
166 | |
583 | 167 enum CodecID av_guess_image2_codec(const char *filename){ |
168 return av_str2id(img_tags, filename); | |
169 } | |
170 | |
497 | 171 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap) |
172 { | |
173 VideoData *s = s1->priv_data; | |
174 int first_index, last_index; | |
175 AVStream *st; | |
176 | |
177 s1->ctx_flags |= AVFMTCTX_NOHEADER; | |
178 | |
179 st = av_new_stream(s1, 0); | |
180 if (!st) { | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1594
diff
changeset
|
181 return AVERROR(ENOMEM); |
497 | 182 } |
183 | |
639 | 184 pstrcpy(s->path, sizeof(s->path), s1->filename); |
497 | 185 s->img_number = 0; |
186 s->img_count = 0; | |
885 | 187 |
497 | 188 /* find format */ |
189 if (s1->iformat->flags & AVFMT_NOFILE) | |
190 s->is_pipe = 0; | |
574 | 191 else{ |
497 | 192 s->is_pipe = 1; |
574 | 193 st->need_parsing= 1; |
194 } | |
885 | 195 |
1003 | 196 if (!ap->time_base.num) { |
743 | 197 av_set_pts_info(st, 60, 1, 25); |
497 | 198 } else { |
743 | 199 av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den); |
497 | 200 } |
885 | 201 |
1003 | 202 if(ap->width && ap->height){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
203 st->codec->width = ap->width; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
204 st->codec->height= ap->height; |
635 | 205 } |
885 | 206 |
497 | 207 if (!s->is_pipe) { |
208 if (find_image_range(&first_index, &last_index, s->path) < 0) | |
622 | 209 return AVERROR_IO; |
497 | 210 s->img_first = first_index; |
211 s->img_last = last_index; | |
212 s->img_number = first_index; | |
213 /* compute duration */ | |
214 st->start_time = 0; | |
743 | 215 st->duration = last_index - first_index + 1; |
497 | 216 } |
885 | 217 |
583 | 218 if(ap->video_codec_id){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
219 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:
764
diff
changeset
|
220 st->codec->codec_id = ap->video_codec_id; |
583 | 221 }else if(ap->audio_codec_id){ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
222 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
223 st->codec->codec_id = ap->audio_codec_id; |
583 | 224 }else{ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
225 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:
764
diff
changeset
|
226 st->codec->codec_id = av_str2id(img_tags, s->path); |
583 | 227 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
228 if(st->codec->codec_type == CODEC_TYPE_VIDEO && ap->pix_fmt != PIX_FMT_NONE) |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
229 st->codec->pix_fmt = ap->pix_fmt; |
497 | 230 |
231 return 0; | |
232 } | |
233 | |
234 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) | |
235 { | |
236 VideoData *s = s1->priv_data; | |
237 char filename[1024]; | |
635 | 238 int i; |
239 int size[3]={0}, ret[3]={0}; | |
240 ByteIOContext f1[3], *f[3]= {&f1[0], &f1[1], &f1[2]}; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
241 AVCodecContext *codec= s1->streams[0]->codec; |
497 | 242 |
243 if (!s->is_pipe) { | |
244 /* loop over input */ | |
1175
8b53c0f3e7ad
add loop_input to AVFormatContext, getting rid of old hack
mru
parents:
1169
diff
changeset
|
245 if (s1->loop_input && s->img_number > s->img_last) { |
497 | 246 s->img_number = s->img_first; |
590 | 247 } |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
248 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
|
249 s->path, s->img_number)<0 && s->img_number > 1) |
497 | 250 return AVERROR_IO; |
635 | 251 for(i=0; i<3; i++){ |
252 if (url_fopen(f[i], filename, URL_RDONLY) < 0) | |
253 return AVERROR_IO; | |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
743
diff
changeset
|
254 size[i]= url_fsize(f[i]); |
885 | 255 |
635 | 256 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
257 break; | |
258 filename[ strlen(filename) - 1 ]= 'U' + i; | |
259 } | |
885 | 260 |
635 | 261 if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width) |
262 infer_size(&codec->width, &codec->height, size[0]); | |
497 | 263 } else { |
635 | 264 f[0] = &s1->pb; |
265 if (url_feof(f[0])) | |
497 | 266 return AVERROR_IO; |
635 | 267 size[0]= 4096; |
497 | 268 } |
269 | |
635 | 270 av_new_packet(pkt, size[0] + size[1] + size[2]); |
497 | 271 pkt->stream_index = 0; |
272 pkt->flags |= PKT_FLAG_KEY; | |
273 | |
635 | 274 pkt->size= 0; |
275 for(i=0; i<3; i++){ | |
276 if(size[i]){ | |
277 ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]); | |
278 if (!s->is_pipe) | |
279 url_fclose(f[i]); | |
280 if(ret[i]>0) | |
281 pkt->size += ret[i]; | |
282 } | |
497 | 283 } |
284 | |
635 | 285 if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) { |
497 | 286 av_free_packet(pkt); |
287 return AVERROR_IO; /* signal EOF */ | |
288 } else { | |
289 s->img_count++; | |
290 s->img_number++; | |
291 return 0; | |
292 } | |
293 } | |
294 | |
295 static int img_read_close(AVFormatContext *s1) | |
296 { | |
297 return 0; | |
298 } | |
299 | |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
300 #ifdef CONFIG_MUXERS |
497 | 301 /******************************************************/ |
302 /* image output */ | |
303 | |
304 static int img_write_header(AVFormatContext *s) | |
305 { | |
306 VideoData *img = s->priv_data; | |
307 | |
308 img->img_number = 1; | |
639 | 309 pstrcpy(img->path, sizeof(img->path), s->filename); |
497 | 310 |
311 /* find format */ | |
312 if (s->oformat->flags & AVFMT_NOFILE) | |
313 img->is_pipe = 0; | |
314 else | |
315 img->is_pipe = 1; | |
885 | 316 |
497 | 317 return 0; |
318 } | |
319 | |
320 static int img_write_packet(AVFormatContext *s, AVPacket *pkt) | |
321 { | |
322 VideoData *img = s->priv_data; | |
635 | 323 ByteIOContext pb1[3], *pb[3]= {&pb1[0], &pb1[1], &pb1[2]}; |
497 | 324 char filename[1024]; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
325 AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec; |
635 | 326 int i; |
497 | 327 |
328 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
|
329 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
|
330 img->path, img->img_number) < 0 && img->img_number>1) |
497 | 331 return AVERROR_IO; |
635 | 332 for(i=0; i<3; i++){ |
333 if (url_fopen(pb[i], filename, URL_WRONLY) < 0) | |
334 return AVERROR_IO; | |
885 | 335 |
635 | 336 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
337 break; | |
338 filename[ strlen(filename) - 1 ]= 'U' + i; | |
339 } | |
497 | 340 } else { |
635 | 341 pb[0] = &s->pb; |
497 | 342 } |
885 | 343 |
635 | 344 if(codec->codec_id == CODEC_ID_RAWVIDEO){ |
731 | 345 int ysize = codec->width * codec->height; |
346 put_buffer(pb[0], pkt->data , ysize); | |
347 put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2); | |
348 put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2); | |
635 | 349 put_flush_packet(pb[1]); |
350 put_flush_packet(pb[2]); | |
351 url_fclose(pb[1]); | |
352 url_fclose(pb[2]); | |
353 }else{ | |
354 put_buffer(pb[0], pkt->data, pkt->size); | |
355 } | |
356 put_flush_packet(pb[0]); | |
497 | 357 if (!img->is_pipe) { |
635 | 358 url_fclose(pb[0]); |
497 | 359 } |
360 | |
361 img->img_number++; | |
362 return 0; | |
363 } | |
364 | |
365 static int img_write_trailer(AVFormatContext *s) | |
366 { | |
367 return 0; | |
368 } | |
369 | |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
370 #endif /* CONFIG_MUXERS */ |
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
371 |
497 | 372 /* input */ |
1169 | 373 #ifdef CONFIG_IMAGE2_DEMUXER |
374 AVInputFormat image2_demuxer = { | |
497 | 375 "image2", |
376 "image2 sequence", | |
377 sizeof(VideoData), | |
378 image_probe, | |
379 img_read_header, | |
380 img_read_packet, | |
381 img_read_close, | |
382 NULL, | |
383 NULL, | |
498 | 384 AVFMT_NOFILE, |
497 | 385 }; |
1169 | 386 #endif |
387 #ifdef CONFIG_IMAGE2PIPE_DEMUXER | |
388 AVInputFormat image2pipe_demuxer = { | |
497 | 389 "image2pipe", |
390 "piped image2 sequence", | |
391 sizeof(VideoData), | |
392 NULL, /* no probe */ | |
393 img_read_header, | |
394 img_read_packet, | |
395 img_read_close, | |
396 NULL, | |
397 }; | |
1169 | 398 #endif |
497 | 399 |
400 /* output */ | |
1169 | 401 #ifdef CONFIG_IMAGE2_MUXER |
402 AVOutputFormat image2_muxer = { | |
497 | 403 "image2", |
404 "image2 sequence", | |
405 "", | |
406 "", | |
407 sizeof(VideoData), | |
408 CODEC_ID_NONE, | |
409 CODEC_ID_MJPEG, | |
410 img_write_header, | |
411 img_write_packet, | |
412 img_write_trailer, | |
498 | 413 AVFMT_NOFILE, |
497 | 414 }; |
1169 | 415 #endif |
416 #ifdef CONFIG_IMAGE2PIPE_MUXER | |
417 AVOutputFormat image2pipe_muxer = { | |
497 | 418 "image2pipe", |
419 "piped image2 sequence", | |
420 "", | |
421 "", | |
422 sizeof(VideoData), | |
423 CODEC_ID_NONE, | |
424 CODEC_ID_MJPEG, | |
425 img_write_header, | |
426 img_write_packet, | |
427 img_write_trailer, | |
428 }; | |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
429 #endif |