]> git.sesse.net Git - ffmpeg/blob - libavformat/img2enc.c
img2enc: ensure that the codec is rawvideo for split planes mode.
[ffmpeg] / libavformat / img2enc.c
1 /*
2  * Image format
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * Copyright (c) 2004 Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
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
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/log.h"
26 #include "libavutil/opt.h"
27 #include "avformat.h"
28 #include "avio_internal.h"
29 #include "internal.h"
30 #include "libavutil/opt.h"
31
32 typedef struct {
33     const AVClass *class;  /**< Class for private options. */
34     int img_number;
35     int is_pipe;
36     int split_planes;       /**< use independent file for each Y, U, V plane */
37     char path[1024];
38     int updatefirst;
39 } VideoMuxData;
40
41 static int write_header(AVFormatContext *s)
42 {
43     VideoMuxData *img = s->priv_data;
44     AVStream *st = s->streams[0];
45     const char *str;
46
47     av_strlcpy(img->path, s->filename, sizeof(img->path));
48
49     /* find format */
50     if (s->oformat->flags & AVFMT_NOFILE)
51         img->is_pipe = 0;
52     else
53         img->is_pipe = 1;
54
55     str = strrchr(img->path, '.');
56     img->split_planes =     str
57                          && !av_strcasecmp(str + 1, "y")
58                          && s->nb_streams == 1
59                          && st->codec->codec_id == AV_CODEC_ID_RAWVIDEO;
60     return 0;
61 }
62
63 static int write_packet(AVFormatContext *s, AVPacket *pkt)
64 {
65     VideoMuxData *img = s->priv_data;
66     AVIOContext *pb[3];
67     char filename[1024];
68     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
69     int i;
70
71     if (!img->is_pipe) {
72         if (av_get_frame_filename(filename, sizeof(filename),
73                                   img->path, img->img_number) < 0 && img->img_number>1 && !img->updatefirst) {
74             av_log(s, AV_LOG_ERROR,
75                    "Could not get frame filename number %d from pattern '%s'\n",
76                    img->img_number, img->path);
77             return AVERROR(EINVAL);
78         }
79         for(i=0; i<3; i++){
80             if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
81                            &s->interrupt_callback, NULL) < 0) {
82                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
83                 return AVERROR(EIO);
84             }
85
86             if(!img->split_planes)
87                 break;
88             filename[ strlen(filename) - 1 ]= 'U' + i;
89         }
90     } else {
91         pb[0] = s->pb;
92     }
93
94     if(img->split_planes){
95         int ysize = codec->width * codec->height;
96         avio_write(pb[0], pkt->data        , ysize);
97         avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
98         avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
99         avio_close(pb[1]);
100         avio_close(pb[2]);
101     }else{
102         if(ff_guess_image2_codec(s->filename) == AV_CODEC_ID_JPEG2000){
103             AVStream *st = s->streams[0];
104             if(st->codec->extradata_size > 8 &&
105                AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
106                 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
107                     goto error;
108                 avio_wb32(pb[0], 12);
109                 ffio_wfourcc(pb[0], "jP  ");
110                 avio_wb32(pb[0], 0x0D0A870A); // signature
111                 avio_wb32(pb[0], 20);
112                 ffio_wfourcc(pb[0], "ftyp");
113                 ffio_wfourcc(pb[0], "jp2 ");
114                 avio_wb32(pb[0], 0);
115                 ffio_wfourcc(pb[0], "jp2 ");
116                 avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
117             }else if(pkt->size >= 8 && AV_RB32(pkt->data) == 0xFF4FFF51){
118                 //jpeg2000 codestream
119             }else if(pkt->size < 8 ||
120                      (!st->codec->extradata_size &&
121                       AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
122             error:
123                 av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream %X\n", AV_RB32(pkt->data));
124                 return -1;
125             }
126         }
127         avio_write(pb[0], pkt->data, pkt->size);
128     }
129     avio_flush(pb[0]);
130     if (!img->is_pipe) {
131         avio_close(pb[0]);
132     }
133
134     img->img_number++;
135     return 0;
136 }
137
138 #define OFFSET(x) offsetof(VideoMuxData, x)
139 #define ENC AV_OPT_FLAG_ENCODING_PARAM
140 static const AVOption muxoptions[] = {
141     { "updatefirst",  "", OFFSET(updatefirst),  AV_OPT_TYPE_INT,    {.i64 = 0},    0, 1, ENC },
142     { "start_number", "first number in the sequence", OFFSET(img_number), AV_OPT_TYPE_INT, {.i64 = 1}, 1, INT_MAX, ENC },
143     { NULL },
144 };
145
146 #if CONFIG_IMAGE2_MUXER
147 static const AVClass img2mux_class = {
148     .class_name = "image2 muxer",
149     .item_name  = av_default_item_name,
150     .option     = muxoptions,
151     .version    = LIBAVUTIL_VERSION_INT,
152 };
153
154 AVOutputFormat ff_image2_muxer = {
155     .name           = "image2",
156     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
157     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
158                       "ppm,sgi,tga,tif,tiff,jp2,j2c,xwd,sun,ras,rs,im1,im8,im24,"
159                       "sunras,xbm,xface",
160     .priv_data_size = sizeof(VideoMuxData),
161     .video_codec    = AV_CODEC_ID_MJPEG,
162     .write_header   = write_header,
163     .write_packet   = write_packet,
164     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
165     .priv_class     = &img2mux_class,
166 };
167 #endif
168 #if CONFIG_IMAGE2PIPE_MUXER
169 AVOutputFormat ff_image2pipe_muxer = {
170     .name           = "image2pipe",
171     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
172     .priv_data_size = sizeof(VideoMuxData),
173     .video_codec    = AV_CODEC_ID_MJPEG,
174     .write_header   = write_header,
175     .write_packet   = write_packet,
176     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
177 };
178 #endif