Mercurial > libavformat.hg
annotate img2.c @ 5063:dcaea581e24d libavformat
mov_read_packet: extract code that searches for the stream/sample to demux next
into a separate function.
author | reimar |
---|---|
date | Wed, 24 Jun 2009 08:57:53 +0000 |
parents | 4d9e9f6407df |
children | e88e7ac64898 |
rev | line source |
---|---|
497 | 1 /* |
2 * Image format | |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4247
diff
changeset
|
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard |
497 | 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 */ |
3286 | 22 |
4208
af07c3bd3bfa
include intreadwrite.h, fix compilation, img2.c use AV_RL32
bcoudurier
parents:
4206
diff
changeset
|
23 #include "libavutil/intreadwrite.h" |
3286 | 24 #include "libavutil/avstring.h" |
497 | 25 #include "avformat.h" |
3288 | 26 #include <strings.h> |
497 | 27 |
28 typedef struct { | |
29 int img_first; | |
30 int img_last; | |
31 int img_number; | |
32 int img_count; | |
33 int is_pipe; | |
34 char path[1024]; | |
35 } VideoData; | |
36 | |
37 typedef struct { | |
38 enum CodecID id; | |
39 const char *str; | |
40 } IdStrMap; | |
41 | |
42 static const IdStrMap img_tags[] = { | |
43 { CODEC_ID_MJPEG , "jpeg"}, | |
44 { CODEC_ID_MJPEG , "jpg"}, | |
5052 | 45 { CODEC_ID_LJPEG , "ljpg"}, |
581 | 46 { CODEC_ID_PNG , "png"}, |
3080 | 47 { CODEC_ID_PNG , "mng"}, |
583 | 48 { CODEC_ID_PPM , "ppm"}, |
4064 | 49 { CODEC_ID_PPM , "pnm"}, |
583 | 50 { CODEC_ID_PGM , "pgm"}, |
51 { CODEC_ID_PGMYUV , "pgmyuv"}, | |
52 { CODEC_ID_PBM , "pbm"}, | |
53 { CODEC_ID_PAM , "pam"}, | |
497 | 54 { CODEC_ID_MPEG1VIDEO, "mpg1-img"}, |
55 { CODEC_ID_MPEG2VIDEO, "mpg2-img"}, | |
56 { CODEC_ID_MPEG4 , "mpg4-img"}, | |
57 { CODEC_ID_FFV1 , "ffv1-img"}, | |
635 | 58 { CODEC_ID_RAWVIDEO , "y"}, |
875 | 59 { CODEC_ID_BMP , "bmp"}, |
1409 | 60 { CODEC_ID_GIF , "gif"}, |
1416 | 61 { CODEC_ID_TARGA , "tga"}, |
62 { CODEC_ID_TIFF , "tiff"}, | |
3404 | 63 { CODEC_ID_TIFF , "tif"}, |
1985 | 64 { CODEC_ID_SGI , "sgi"}, |
2074 | 65 { CODEC_ID_PTX , "ptx"}, |
2859 | 66 { CODEC_ID_PCX , "pcx"}, |
2867 | 67 { CODEC_ID_SUNRAST , "sun"}, |
68 { CODEC_ID_SUNRAST , "ras"}, | |
69 { CODEC_ID_SUNRAST , "rs"}, | |
70 { CODEC_ID_SUNRAST , "im1"}, | |
71 { CODEC_ID_SUNRAST , "im8"}, | |
72 { CODEC_ID_SUNRAST , "im24"}, | |
73 { CODEC_ID_SUNRAST , "sunras"}, | |
4119 | 74 { CODEC_ID_JPEG2000 , "jp2"}, |
5022 | 75 { CODEC_ID_DPX , "dpx"}, |
3289 | 76 { CODEC_ID_NONE , NULL} |
497 | 77 }; |
78 | |
3769 | 79 static const int sizes[][2] = { |
635 | 80 { 640, 480 }, |
81 { 720, 480 }, | |
82 { 720, 576 }, | |
83 { 352, 288 }, | |
84 { 352, 240 }, | |
85 { 160, 128 }, | |
86 { 512, 384 }, | |
87 { 640, 352 }, | |
88 { 640, 240 }, | |
89 }; | |
90 | |
91 static int infer_size(int *width_ptr, int *height_ptr, int size) | |
92 { | |
93 int i; | |
94 | |
4001 | 95 for(i=0;i<FF_ARRAY_ELEMS(sizes);i++) { |
635 | 96 if ((sizes[i][0] * sizes[i][1]) == size) { |
97 *width_ptr = sizes[i][0]; | |
98 *height_ptr = sizes[i][1]; | |
99 return 0; | |
100 } | |
101 } | |
102 return -1; | |
103 } | |
497 | 104 static enum CodecID av_str2id(const IdStrMap *tags, const char *str) |
105 { | |
530 | 106 str= strrchr(str, '.'); |
107 if(!str) return CODEC_ID_NONE; | |
108 str++; | |
497 | 109 |
110 while (tags->id) { | |
3288 | 111 if (!strcasecmp(str, tags->str)) |
112 return tags->id; | |
497 | 113 |
114 tags++; | |
115 } | |
116 return CODEC_ID_NONE; | |
117 } | |
118 | |
119 /* return -1 if no image found */ | |
885 | 120 static int find_image_range(int *pfirst_index, int *plast_index, |
497 | 121 const char *path) |
122 { | |
123 char buf[1024]; | |
124 int range, last_index, range1, first_index; | |
125 | |
126 /* find the first image */ | |
127 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
|
128 if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){ |
885 | 129 *pfirst_index = |
498 | 130 *plast_index = 1; |
131 return 0; | |
132 } | |
497 | 133 if (url_exist(buf)) |
134 break; | |
135 } | |
136 if (first_index == 5) | |
137 goto fail; | |
885 | 138 |
497 | 139 /* find the last image */ |
140 last_index = first_index; | |
141 for(;;) { | |
142 range = 0; | |
143 for(;;) { | |
144 if (!range) | |
145 range1 = 1; | |
146 else | |
147 range1 = 2 * range; | |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
148 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
|
149 last_index + range1) < 0) |
497 | 150 goto fail; |
151 if (!url_exist(buf)) | |
152 break; | |
153 range = range1; | |
154 /* just in case... */ | |
155 if (range >= (1 << 30)) | |
156 goto fail; | |
157 } | |
158 /* we are sure than image last_index + range exists */ | |
159 if (!range) | |
160 break; | |
161 last_index += range; | |
162 } | |
163 *pfirst_index = first_index; | |
164 *plast_index = last_index; | |
165 return 0; | |
166 fail: | |
167 return -1; | |
168 } | |
169 | |
170 | |
171 static int image_probe(AVProbeData *p) | |
172 { | |
1594
ffb64cb62cc9
Fix a crash when probing img2 format with a NULL filename.
aurel
parents:
1551
diff
changeset
|
173 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
|
174 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
|
175 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
|
176 else |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
177 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
|
178 } |
ee4ef413497e
probe with some success image files not containing number pattern but having recognized image extension
bcoudurier
parents:
1416
diff
changeset
|
179 return 0; |
497 | 180 } |
181 | |
583 | 182 enum CodecID av_guess_image2_codec(const char *filename){ |
183 return av_str2id(img_tags, filename); | |
184 } | |
185 | |
497 | 186 static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap) |
187 { | |
188 VideoData *s = s1->priv_data; | |
189 int first_index, last_index; | |
190 AVStream *st; | |
191 | |
192 s1->ctx_flags |= AVFMTCTX_NOHEADER; | |
193 | |
194 st = av_new_stream(s1, 0); | |
195 if (!st) { | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1594
diff
changeset
|
196 return AVERROR(ENOMEM); |
497 | 197 } |
198 | |
2189 | 199 av_strlcpy(s->path, s1->filename, sizeof(s->path)); |
497 | 200 s->img_number = 0; |
201 s->img_count = 0; | |
885 | 202 |
497 | 203 /* find format */ |
204 if (s1->iformat->flags & AVFMT_NOFILE) | |
205 s->is_pipe = 0; | |
574 | 206 else{ |
497 | 207 s->is_pipe = 1; |
2023 | 208 st->need_parsing = AVSTREAM_PARSE_FULL; |
574 | 209 } |
885 | 210 |
1003 | 211 if (!ap->time_base.num) { |
743 | 212 av_set_pts_info(st, 60, 1, 25); |
497 | 213 } else { |
743 | 214 av_set_pts_info(st, 60, ap->time_base.num, ap->time_base.den); |
497 | 215 } |
885 | 216 |
1003 | 217 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
|
218 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
|
219 st->codec->height= ap->height; |
635 | 220 } |
885 | 221 |
497 | 222 if (!s->is_pipe) { |
223 if (find_image_range(&first_index, &last_index, s->path) < 0) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
224 return AVERROR(EIO); |
497 | 225 s->img_first = first_index; |
226 s->img_last = last_index; | |
227 s->img_number = first_index; | |
228 /* compute duration */ | |
229 st->start_time = 0; | |
743 | 230 st->duration = last_index - first_index + 1; |
497 | 231 } |
885 | 232 |
583 | 233 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
|
234 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
|
235 st->codec->codec_id = ap->video_codec_id; |
583 | 236 }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
|
237 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
|
238 st->codec->codec_id = ap->audio_codec_id; |
583 | 239 }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
|
240 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
|
241 st->codec->codec_id = av_str2id(img_tags, s->path); |
583 | 242 } |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
243 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
|
244 st->codec->pix_fmt = ap->pix_fmt; |
497 | 245 |
246 return 0; | |
247 } | |
248 | |
249 static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) | |
250 { | |
251 VideoData *s = s1->priv_data; | |
252 char filename[1024]; | |
635 | 253 int i; |
254 int size[3]={0}, ret[3]={0}; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
255 ByteIOContext *f[3]; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
764
diff
changeset
|
256 AVCodecContext *codec= s1->streams[0]->codec; |
497 | 257 |
258 if (!s->is_pipe) { | |
259 /* loop over input */ | |
1175
8b53c0f3e7ad
add loop_input to AVFormatContext, getting rid of old hack
mru
parents:
1169
diff
changeset
|
260 if (s1->loop_input && s->img_number > s->img_last) { |
497 | 261 s->img_number = s->img_first; |
590 | 262 } |
1291
185190bdc185
Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A mediaxim P be %
gpoirier
parents:
1175
diff
changeset
|
263 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
|
264 s->path, s->img_number)<0 && s->img_number > 1) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
265 return AVERROR(EIO); |
635 | 266 for(i=0; i<3; i++){ |
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
267 if (url_fopen(&f[i], filename, URL_RDONLY) < 0) { |
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
268 av_log(s1, AV_LOG_ERROR, "Could not open file : %s\n",filename); |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
269 return AVERROR(EIO); |
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
270 } |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
743
diff
changeset
|
271 size[i]= url_fsize(f[i]); |
885 | 272 |
635 | 273 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
274 break; | |
275 filename[ strlen(filename) - 1 ]= 'U' + i; | |
276 } | |
885 | 277 |
635 | 278 if(codec->codec_id == CODEC_ID_RAWVIDEO && !codec->width) |
279 infer_size(&codec->width, &codec->height, size[0]); | |
497 | 280 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
281 f[0] = s1->pb; |
635 | 282 if (url_feof(f[0])) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
283 return AVERROR(EIO); |
635 | 284 size[0]= 4096; |
497 | 285 } |
286 | |
635 | 287 av_new_packet(pkt, size[0] + size[1] + size[2]); |
497 | 288 pkt->stream_index = 0; |
289 pkt->flags |= PKT_FLAG_KEY; | |
290 | |
635 | 291 pkt->size= 0; |
292 for(i=0; i<3; i++){ | |
293 if(size[i]){ | |
294 ret[i]= get_buffer(f[i], pkt->data + pkt->size, size[i]); | |
295 if (!s->is_pipe) | |
296 url_fclose(f[i]); | |
297 if(ret[i]>0) | |
298 pkt->size += ret[i]; | |
299 } | |
497 | 300 } |
301 | |
635 | 302 if (ret[0] <= 0 || ret[1]<0 || ret[2]<0) { |
497 | 303 av_free_packet(pkt); |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
304 return AVERROR(EIO); /* signal EOF */ |
497 | 305 } else { |
306 s->img_count++; | |
307 s->img_number++; | |
308 return 0; | |
309 } | |
310 } | |
311 | |
4206 | 312 #if CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER |
497 | 313 /******************************************************/ |
314 /* image output */ | |
315 | |
316 static int img_write_header(AVFormatContext *s) | |
317 { | |
318 VideoData *img = s->priv_data; | |
319 | |
320 img->img_number = 1; | |
2189 | 321 av_strlcpy(img->path, s->filename, sizeof(img->path)); |
497 | 322 |
323 /* find format */ | |
324 if (s->oformat->flags & AVFMT_NOFILE) | |
325 img->is_pipe = 0; | |
326 else | |
327 img->is_pipe = 1; | |
885 | 328 |
497 | 329 return 0; |
330 } | |
331 | |
332 static int img_write_packet(AVFormatContext *s, AVPacket *pkt) | |
333 { | |
334 VideoData *img = s->priv_data; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
335 ByteIOContext *pb[3]; |
497 | 336 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
|
337 AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec; |
635 | 338 int i; |
497 | 339 |
340 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
|
341 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
|
342 img->path, img->img_number) < 0 && img->img_number>1) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
343 return AVERROR(EIO); |
635 | 344 for(i=0; i<3; i++){ |
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
345 if (url_fopen(&pb[i], filename, URL_WRONLY) < 0) { |
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
346 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename); |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
347 return AVERROR(EIO); |
5049
d8613bee3863
Print meaningful error messages when url_fopen fails.
jai_menon
parents:
5022
diff
changeset
|
348 } |
885 | 349 |
635 | 350 if(codec->codec_id != CODEC_ID_RAWVIDEO) |
351 break; | |
352 filename[ strlen(filename) - 1 ]= 'U' + i; | |
353 } | |
497 | 354 } else { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2274
diff
changeset
|
355 pb[0] = s->pb; |
497 | 356 } |
885 | 357 |
635 | 358 if(codec->codec_id == CODEC_ID_RAWVIDEO){ |
731 | 359 int ysize = codec->width * codec->height; |
360 put_buffer(pb[0], pkt->data , ysize); | |
361 put_buffer(pb[1], pkt->data + ysize, (pkt->size - ysize)/2); | |
362 put_buffer(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2); | |
635 | 363 put_flush_packet(pb[1]); |
364 put_flush_packet(pb[2]); | |
365 url_fclose(pb[1]); | |
366 url_fclose(pb[2]); | |
367 }else{ | |
4247 | 368 if(av_str2id(img_tags, s->filename) == CODEC_ID_JPEG2000){ |
369 AVStream *st = s->streams[0]; | |
370 if(st->codec->extradata_size > 8 && | |
371 AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){ | |
372 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c')) | |
373 goto error; | |
374 put_be32(pb[0], 12); | |
375 put_tag (pb[0], "jP "); | |
376 put_be32(pb[0], 0x0D0A870A); // signature | |
377 put_be32(pb[0], 20); | |
378 put_tag (pb[0], "ftyp"); | |
379 put_tag (pb[0], "jp2 "); | |
380 put_be32(pb[0], 0); | |
381 put_tag (pb[0], "jp2 "); | |
382 put_buffer(pb[0], st->codec->extradata, st->codec->extradata_size); | |
383 }else if(pkt->size < 8 || | |
384 (!st->codec->extradata_size && | |
385 AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature | |
386 error: | |
387 av_log(s, AV_LOG_ERROR, "malformated jpeg2000 codestream\n"); | |
388 return -1; | |
389 } | |
390 } | |
635 | 391 put_buffer(pb[0], pkt->data, pkt->size); |
392 } | |
393 put_flush_packet(pb[0]); | |
497 | 394 if (!img->is_pipe) { |
635 | 395 url_fclose(pb[0]); |
497 | 396 } |
397 | |
398 img->img_number++; | |
399 return 0; | |
400 } | |
401 | |
4206 | 402 #endif /* CONFIG_IMAGE2_MUXER || CONFIG_IMAGE2PIPE_MUXER */ |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
403 |
497 | 404 /* input */ |
4206 | 405 #if CONFIG_IMAGE2_DEMUXER |
1169 | 406 AVInputFormat image2_demuxer = { |
497 | 407 "image2", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
408 NULL_IF_CONFIG_SMALL("image2 sequence"), |
497 | 409 sizeof(VideoData), |
410 image_probe, | |
411 img_read_header, | |
412 img_read_packet, | |
3431 | 413 NULL, |
497 | 414 NULL, |
415 NULL, | |
498 | 416 AVFMT_NOFILE, |
497 | 417 }; |
1169 | 418 #endif |
4206 | 419 #if CONFIG_IMAGE2PIPE_DEMUXER |
1169 | 420 AVInputFormat image2pipe_demuxer = { |
497 | 421 "image2pipe", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
422 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
497 | 423 sizeof(VideoData), |
424 NULL, /* no probe */ | |
425 img_read_header, | |
426 img_read_packet, | |
427 }; | |
1169 | 428 #endif |
497 | 429 |
430 /* output */ | |
4206 | 431 #if CONFIG_IMAGE2_MUXER |
1169 | 432 AVOutputFormat image2_muxer = { |
497 | 433 "image2", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
434 NULL_IF_CONFIG_SMALL("image2 sequence"), |
497 | 435 "", |
4759
0c9699c40b66
PCX encoder that handles 1-, 8-, and 24-bpp pixfmts.
cehoyos
parents:
4251
diff
changeset
|
436 "bmp,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,ppm,sgi,tif,tiff,jp2", |
497 | 437 sizeof(VideoData), |
438 CODEC_ID_NONE, | |
439 CODEC_ID_MJPEG, | |
440 img_write_header, | |
441 img_write_packet, | |
3140 | 442 NULL, |
3940
77f3d0224ee9
Prevent image2 from complaining about non monotone timestamps as
michael
parents:
3871
diff
changeset
|
443 .flags= AVFMT_NOTIMESTAMPS | AVFMT_NOFILE |
497 | 444 }; |
1169 | 445 #endif |
4206 | 446 #if CONFIG_IMAGE2PIPE_MUXER |
1169 | 447 AVOutputFormat image2pipe_muxer = { |
497 | 448 "image2pipe", |
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3404
diff
changeset
|
449 NULL_IF_CONFIG_SMALL("piped image2 sequence"), |
497 | 450 "", |
451 "", | |
452 sizeof(VideoData), | |
453 CODEC_ID_NONE, | |
454 CODEC_ID_MJPEG, | |
455 img_write_header, | |
456 img_write_packet, | |
3940
77f3d0224ee9
Prevent image2 from complaining about non monotone timestamps as
michael
parents:
3871
diff
changeset
|
457 .flags= AVFMT_NOTIMESTAMPS |
497 | 458 }; |
903
68bc3ca12e79
Put muxer-specific code parts in #ifdef CONFIG_MUXERS.
diego
parents:
896
diff
changeset
|
459 #endif |