3 * Copyright (c) 2001, 2002, 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #define Y4M_MAGIC "YUV4MPEG2"
24 #define Y4M_FRAME_MAGIC "FRAME"
25 #define Y4M_LINE_MAX 256
27 struct frame_attributes
{
32 #if CONFIG_YUV4MPEGPIPE_MUXER
33 static int yuv4_generate_header(AVFormatContext
*s
, char* buf
)
37 int raten
, rated
, aspectn
, aspectd
, n
;
39 const char *colorspace
= "";
42 width
= st
->codec
->width
;
43 height
= st
->codec
->height
;
45 av_reduce(&raten
, &rated
, st
->codec
->time_base
.den
, st
->codec
->time_base
.num
, (1UL<<31)-1);
47 aspectn
= st
->sample_aspect_ratio
.num
;
48 aspectd
= st
->sample_aspect_ratio
.den
;
50 if ( aspectn
== 0 && aspectd
== 1 ) aspectd
= 0; // 0:0 means unknown
52 inter
= 'p'; /* progressive is the default */
53 if (st
->codec
->coded_frame
&& st
->codec
->coded_frame
->interlaced_frame
) {
54 inter
= st
->codec
->coded_frame
->top_field_first
? 't' : 'b';
57 switch(st
->codec
->pix_fmt
) {
59 colorspace
= " Cmono";
62 colorspace
= " C411 XYSCSS=411";
65 colorspace
= (st
->codec
->chroma_sample_location
== AVCHROMA_LOC_TOPLEFT
)?" C420paldv XYSCSS=420PALDV":
66 (st
->codec
->chroma_sample_location
== AVCHROMA_LOC_LEFT
) ?" C420mpeg2 XYSCSS=420MPEG2":
67 " C420jpeg XYSCSS=420JPEG";
70 colorspace
= " C422 XYSCSS=422";
73 colorspace
= " C444 XYSCSS=444";
77 /* construct stream header, if this is the first frame */
78 n
= snprintf(buf
, Y4M_LINE_MAX
, "%s W%d H%d F%d:%d I%c A%d:%d%s\n",
90 static int yuv4_write_packet(AVFormatContext
*s
, AVPacket
*pkt
)
92 AVStream
*st
= s
->streams
[pkt
->stream_index
];
93 ByteIOContext
*pb
= s
->pb
;
95 int* first_pkt
= s
->priv_data
;
96 int width
, height
, h_chroma_shift
, v_chroma_shift
;
98 char buf2
[Y4M_LINE_MAX
+1];
100 uint8_t *ptr
, *ptr1
, *ptr2
;
102 picture
= (AVPicture
*)pkt
->data
;
104 /* for the first packet we have to output the header as well */
107 if (yuv4_generate_header(s
, buf2
) < 0) {
108 av_log(s
, AV_LOG_ERROR
, "Error. YUV4MPEG stream header write failed.\n");
111 put_buffer(pb
, buf2
, strlen(buf2
));
115 /* construct frame header */
117 m
= snprintf(buf1
, sizeof(buf1
), "%s\n", Y4M_FRAME_MAGIC
);
118 put_buffer(pb
, buf1
, strlen(buf1
));
120 width
= st
->codec
->width
;
121 height
= st
->codec
->height
;
123 ptr
= picture
->data
[0];
124 for(i
=0;i
<height
;i
++) {
125 put_buffer(pb
, ptr
, width
);
126 ptr
+= picture
->linesize
[0];
129 if (st
->codec
->pix_fmt
!= PIX_FMT_GRAY8
){
130 // Adjust for smaller Cb and Cr planes
131 avcodec_get_chroma_sub_sample(st
->codec
->pix_fmt
, &h_chroma_shift
, &v_chroma_shift
);
132 width
>>= h_chroma_shift
;
133 height
>>= v_chroma_shift
;
135 ptr1
= picture
->data
[1];
136 ptr2
= picture
->data
[2];
137 for(i
=0;i
<height
;i
++) { /* Cb */
138 put_buffer(pb
, ptr1
, width
);
139 ptr1
+= picture
->linesize
[1];
141 for(i
=0;i
<height
;i
++) { /* Cr */
142 put_buffer(pb
, ptr2
, width
);
143 ptr2
+= picture
->linesize
[2];
146 put_flush_packet(pb
);
150 static int yuv4_write_header(AVFormatContext
*s
)
152 int* first_pkt
= s
->priv_data
;
154 if (s
->nb_streams
!= 1)
157 if (s
->streams
[0]->codec
->pix_fmt
== PIX_FMT_YUV411P
) {
158 av_log(s
, AV_LOG_ERROR
, "Warning: generating rarely used 4:1:1 YUV stream, some mjpegtools might not work.\n");
160 else if ((s
->streams
[0]->codec
->pix_fmt
!= PIX_FMT_YUV420P
) &&
161 (s
->streams
[0]->codec
->pix_fmt
!= PIX_FMT_YUV422P
) &&
162 (s
->streams
[0]->codec
->pix_fmt
!= PIX_FMT_GRAY8
) &&
163 (s
->streams
[0]->codec
->pix_fmt
!= PIX_FMT_YUV444P
)) {
164 av_log(s
, AV_LOG_ERROR
, "ERROR: yuv4mpeg only handles yuv444p, yuv422p, yuv420p, yuv411p and gray pixel formats. Use -pix_fmt to select one.\n");
172 AVOutputFormat yuv4mpegpipe_muxer
= {
174 NULL_IF_CONFIG_SMALL("YUV4MPEG pipe format"),
182 .flags
= AVFMT_RAWPICTURE
,
186 /* Header size increased to allow room for optional flags */
187 #define MAX_YUV4_HEADER 80
188 #define MAX_FRAME_HEADER 80
190 static int yuv4_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
192 char header
[MAX_YUV4_HEADER
+10]; // Include headroom for the longest option
193 char *tokstart
,*tokend
,*header_end
;
195 ByteIOContext
*pb
= s
->pb
;
196 int width
=-1, height
=-1, raten
=0, rated
=0, aspectn
=0, aspectd
=0;
197 enum PixelFormat pix_fmt
=PIX_FMT_NONE
,alt_pix_fmt
=PIX_FMT_NONE
;
198 enum AVChromaLocation chroma_sample_location
= AVCHROMA_LOC_UNSPECIFIED
;
200 struct frame_attributes
*s1
= s
->priv_data
;
202 for (i
=0; i
<MAX_YUV4_HEADER
; i
++) {
203 header
[i
] = get_byte(pb
);
204 if (header
[i
] == '\n') {
205 header
[i
+1] = 0x20; // Add a space after last option. Makes parsing "444" vs "444alpha" easier.
210 if (i
== MAX_YUV4_HEADER
) return -1;
211 if (strncmp(header
, Y4M_MAGIC
, strlen(Y4M_MAGIC
))) return -1;
213 s1
->interlaced_frame
= 0;
214 s1
->top_field_first
= 0;
215 header_end
= &header
[i
+1]; // Include space
216 for(tokstart
= &header
[strlen(Y4M_MAGIC
) + 1]; tokstart
< header_end
; tokstart
++) {
217 if (*tokstart
==0x20) continue;
218 switch (*tokstart
++) {
219 case 'W': // Width. Required.
220 width
= strtol(tokstart
, &tokend
, 10);
223 case 'H': // Height. Required.
224 height
= strtol(tokstart
, &tokend
, 10);
227 case 'C': // Color space
228 if (strncmp("420jpeg",tokstart
,7)==0) {
229 pix_fmt
= PIX_FMT_YUV420P
;
230 chroma_sample_location
= AVCHROMA_LOC_CENTER
;
231 } else if (strncmp("420mpeg2",tokstart
,8)==0) {
232 pix_fmt
= PIX_FMT_YUV420P
;
233 chroma_sample_location
= AVCHROMA_LOC_LEFT
;
234 } else if (strncmp("420paldv", tokstart
, 8)==0) {
235 pix_fmt
= PIX_FMT_YUV420P
;
236 chroma_sample_location
= AVCHROMA_LOC_TOPLEFT
;
237 } else if (strncmp("411", tokstart
, 3)==0)
238 pix_fmt
= PIX_FMT_YUV411P
;
239 else if (strncmp("422", tokstart
, 3)==0)
240 pix_fmt
= PIX_FMT_YUV422P
;
241 else if (strncmp("444alpha", tokstart
, 8)==0) {
242 av_log(s
, AV_LOG_ERROR
, "Cannot handle 4:4:4:4 YUV4MPEG stream.\n");
244 } else if (strncmp("444", tokstart
, 3)==0)
245 pix_fmt
= PIX_FMT_YUV444P
;
246 else if (strncmp("mono",tokstart
, 4)==0) {
247 pix_fmt
= PIX_FMT_GRAY8
;
249 av_log(s
, AV_LOG_ERROR
, "YUV4MPEG stream contains an unknown pixel format.\n");
252 while(tokstart
<header_end
&&*tokstart
!=0x20) tokstart
++;
254 case 'I': // Interlace type
255 switch (*tokstart
++){
259 s1
->interlaced_frame
=0;
262 s1
->interlaced_frame
=1;
263 s1
->top_field_first
=1;
266 s1
->interlaced_frame
=1;
267 s1
->top_field_first
=0;
270 av_log(s
, AV_LOG_ERROR
, "YUV4MPEG stream contains mixed interlaced and non-interlaced frames.\n");
273 av_log(s
, AV_LOG_ERROR
, "YUV4MPEG has invalid header.\n");
277 case 'F': // Frame rate
278 sscanf(tokstart
,"%d:%d",&raten
,&rated
); // 0:0 if unknown
279 while(tokstart
<header_end
&&*tokstart
!=0x20) tokstart
++;
281 case 'A': // Pixel aspect
282 sscanf(tokstart
,"%d:%d",&aspectn
,&aspectd
); // 0:0 if unknown
283 while(tokstart
<header_end
&&*tokstart
!=0x20) tokstart
++;
285 case 'X': // Vendor extensions
286 if (strncmp("YSCSS=",tokstart
,6)==0) {
287 // Older nonstandard pixel format representation
289 if (strncmp("420JPEG",tokstart
,7)==0)
290 alt_pix_fmt
=PIX_FMT_YUV420P
;
291 else if (strncmp("420MPEG2",tokstart
,8)==0)
292 alt_pix_fmt
=PIX_FMT_YUV420P
;
293 else if (strncmp("420PALDV",tokstart
,8)==0)
294 alt_pix_fmt
=PIX_FMT_YUV420P
;
295 else if (strncmp("411",tokstart
,3)==0)
296 alt_pix_fmt
=PIX_FMT_YUV411P
;
297 else if (strncmp("422",tokstart
,3)==0)
298 alt_pix_fmt
=PIX_FMT_YUV422P
;
299 else if (strncmp("444",tokstart
,3)==0)
300 alt_pix_fmt
=PIX_FMT_YUV444P
;
302 while(tokstart
<header_end
&&*tokstart
!=0x20) tokstart
++;
307 if ((width
== -1) || (height
== -1)) {
308 av_log(s
, AV_LOG_ERROR
, "YUV4MPEG has invalid header.\n");
312 if (pix_fmt
== PIX_FMT_NONE
) {
313 if (alt_pix_fmt
== PIX_FMT_NONE
)
314 pix_fmt
= PIX_FMT_YUV420P
;
316 pix_fmt
= alt_pix_fmt
;
319 if (raten
== 0 && rated
== 0) {
320 // Frame rate unknown
325 if (aspectn
== 0 && aspectd
== 0) {
326 // Pixel aspect unknown
330 st
= av_new_stream(s
, 0);
332 return AVERROR(ENOMEM
);
333 st
->codec
->width
= width
;
334 st
->codec
->height
= height
;
335 av_reduce(&raten
, &rated
, raten
, rated
, (1UL<<31)-1);
336 av_set_pts_info(st
, 64, rated
, raten
);
337 st
->codec
->pix_fmt
= pix_fmt
;
338 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
339 st
->codec
->codec_id
= CODEC_ID_RAWVIDEO
;
340 st
->sample_aspect_ratio
= (AVRational
){aspectn
, aspectd
};
341 st
->codec
->chroma_sample_location
= chroma_sample_location
;
346 static int yuv4_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
349 char header
[MAX_FRAME_HEADER
+1];
350 int packet_size
, width
, height
;
351 AVStream
*st
= s
->streams
[0];
352 struct frame_attributes
*s1
= s
->priv_data
;
354 for (i
=0; i
<MAX_FRAME_HEADER
; i
++) {
355 header
[i
] = get_byte(s
->pb
);
356 if (header
[i
] == '\n') {
361 if (i
== MAX_FRAME_HEADER
) return -1;
362 if (strncmp(header
, Y4M_FRAME_MAGIC
, strlen(Y4M_FRAME_MAGIC
))) return -1;
364 width
= st
->codec
->width
;
365 height
= st
->codec
->height
;
367 packet_size
= avpicture_get_size(st
->codec
->pix_fmt
, width
, height
);
371 if (av_get_packet(s
->pb
, pkt
, packet_size
) != packet_size
)
374 if (s
->streams
[0]->codec
->coded_frame
) {
375 s
->streams
[0]->codec
->coded_frame
->interlaced_frame
= s1
->interlaced_frame
;
376 s
->streams
[0]->codec
->coded_frame
->top_field_first
= s1
->top_field_first
;
379 pkt
->stream_index
= 0;
383 static int yuv4_probe(AVProbeData
*pd
)
385 /* check file header */
386 if (strncmp(pd
->buf
, Y4M_MAGIC
, sizeof(Y4M_MAGIC
)-1)==0)
387 return AVPROBE_SCORE_MAX
;
392 #if CONFIG_YUV4MPEGPIPE_DEMUXER
393 AVInputFormat yuv4mpegpipe_demuxer
= {
395 NULL_IF_CONFIG_SMALL("YUV4MPEG pipe format"),
396 sizeof(struct frame_attributes
),