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