]> git.sesse.net Git - ffmpeg/blob - libavformat/img2enc.c
Merge remote-tracking branch 'qatar/master'
[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
31 typedef struct {
32     const AVClass *class;  /**< Class for private options. */
33     int img_number;
34     int is_pipe;
35     int split_planes;       /**< use independent file for each Y, U, V plane */
36     char path[1024];
37     int updatefirst;
38 } VideoMuxData;
39
40 static int write_header(AVFormatContext *s)
41 {
42     VideoMuxData *img = s->priv_data;
43     const char *str;
44
45     img->img_number = 1;
46     av_strlcpy(img->path, s->filename, sizeof(img->path));
47
48     /* find format */
49     if (s->oformat->flags & AVFMT_NOFILE)
50         img->is_pipe = 0;
51     else
52         img->is_pipe = 1;
53
54     str = strrchr(img->path, '.');
55     img->split_planes = str && !av_strcasecmp(str + 1, "y");
56     return 0;
57 }
58
59 static int write_packet(AVFormatContext *s, AVPacket *pkt)
60 {
61     VideoMuxData *img = s->priv_data;
62     AVIOContext *pb[3];
63     char filename[1024];
64     AVCodecContext *codec= s->streams[ pkt->stream_index ]->codec;
65     int i;
66
67     if (!img->is_pipe) {
68         if (av_get_frame_filename(filename, sizeof(filename),
69                                   img->path, img->img_number) < 0 && img->img_number>1 && !img->updatefirst) {
70             av_log(s, AV_LOG_ERROR,
71                    "Could not get frame filename number %d from pattern '%s'\n",
72                    img->img_number, img->path);
73             return AVERROR(EINVAL);
74         }
75         for(i=0; i<3; i++){
76             if (avio_open2(&pb[i], filename, AVIO_FLAG_WRITE,
77                            &s->interrupt_callback, NULL) < 0) {
78                 av_log(s, AV_LOG_ERROR, "Could not open file : %s\n",filename);
79                 return AVERROR(EIO);
80             }
81
82             if(!img->split_planes)
83                 break;
84             filename[ strlen(filename) - 1 ]= 'U' + i;
85         }
86     } else {
87         pb[0] = s->pb;
88     }
89
90     if(img->split_planes){
91         int ysize = codec->width * codec->height;
92         avio_write(pb[0], pkt->data        , ysize);
93         avio_write(pb[1], pkt->data + ysize, (pkt->size - ysize)/2);
94         avio_write(pb[2], pkt->data + ysize +(pkt->size - ysize)/2, (pkt->size - ysize)/2);
95         avio_flush(pb[1]);
96         avio_flush(pb[2]);
97         avio_close(pb[1]);
98         avio_close(pb[2]);
99     }else{
100         if(ff_guess_image2_codec(s->filename) == CODEC_ID_JPEG2000){
101             AVStream *st = s->streams[0];
102             if(st->codec->extradata_size > 8 &&
103                AV_RL32(st->codec->extradata+4) == MKTAG('j','p','2','h')){
104                 if(pkt->size < 8 || AV_RL32(pkt->data+4) != MKTAG('j','p','2','c'))
105                     goto error;
106                 avio_wb32(pb[0], 12);
107                 ffio_wfourcc(pb[0], "jP  ");
108                 avio_wb32(pb[0], 0x0D0A870A); // signature
109                 avio_wb32(pb[0], 20);
110                 ffio_wfourcc(pb[0], "ftyp");
111                 ffio_wfourcc(pb[0], "jp2 ");
112                 avio_wb32(pb[0], 0);
113                 ffio_wfourcc(pb[0], "jp2 ");
114                 avio_write(pb[0], st->codec->extradata, st->codec->extradata_size);
115             }else if(pkt->size >= 8 && AV_RB32(pkt->data) == 0xFF4FFF51){
116                 //jpeg2000 codestream
117             }else if(pkt->size < 8 ||
118                      (!st->codec->extradata_size &&
119                       AV_RL32(pkt->data+4) != MKTAG('j','P',' ',' '))){ // signature
120             error:
121                 av_log(s, AV_LOG_ERROR, "malformed JPEG 2000 codestream %X\n", AV_RB32(pkt->data));
122                 return -1;
123             }
124         }
125         avio_write(pb[0], pkt->data, pkt->size);
126     }
127     avio_flush(pb[0]);
128     if (!img->is_pipe) {
129         avio_close(pb[0]);
130     }
131
132     img->img_number++;
133     return 0;
134 }
135
136 #define OFFSET(x) offsetof(VideoMuxData, x)
137 #define ENC AV_OPT_FLAG_ENCODING_PARAM
138 static const AVOption muxoptions[] = {
139     { "updatefirst",  "", OFFSET(updatefirst),  AV_OPT_TYPE_INT,    {.dbl = 0},    0, 1, ENC },
140     { NULL },
141 };
142
143
144 #if CONFIG_IMAGE2_MUXER
145 static const AVClass img2mux_class = {
146     .class_name = "image2 muxer",
147     .item_name  = av_default_item_name,
148     .option     = muxoptions,
149     .version    = LIBAVUTIL_VERSION_INT,
150 };
151 AVOutputFormat ff_image2_muxer = {
152     .name           = "image2",
153     .long_name      = NULL_IF_CONFIG_SMALL("image2 sequence"),
154     .extensions     = "bmp,dpx,jls,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,"
155                       "ppm,sgi,tga,tif,tiff,jp2,j2c,xwd,sun,ras,rs,im1,im8,im24,"
156                       "sunras,xbm",
157     .priv_data_size = sizeof(VideoMuxData),
158     .video_codec    = CODEC_ID_MJPEG,
159     .write_header   = write_header,
160     .write_packet   = write_packet,
161     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS | AVFMT_NOFILE,
162     .priv_class     = &img2mux_class,
163 };
164 #endif
165 #if CONFIG_IMAGE2PIPE_MUXER
166 AVOutputFormat ff_image2pipe_muxer = {
167     .name           = "image2pipe",
168     .long_name      = NULL_IF_CONFIG_SMALL("piped image2 sequence"),
169     .priv_data_size = sizeof(VideoMuxData),
170     .video_codec    = CODEC_ID_MJPEG,
171     .write_header   = write_header,
172     .write_packet   = write_packet,
173     .flags          = AVFMT_NOTIMESTAMPS | AVFMT_NODIMENSIONS
174 };
175 #endif