FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fitsenc.c
Go to the documentation of this file.
1 /*
2  * FITS muxer
3  * Copyright (c) 2017 Paras Chadha
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21 
22 /**
23  * @file
24  * FITS muxer.
25  */
26 
27 #include "internal.h"
28 
29 typedef struct FITSContext {
30  int first_image;
31 } FITSContext;
32 
34 {
35  FITSContext *fitsctx = s->priv_data;
36  fitsctx->first_image = 1;
37  return 0;
38 }
39 
40 /**
41  * Write one header line comprising of keyword and value(int)
42  * @param s AVFormat Context
43  * @param keyword pointer to the char array in which keyword is stored
44  * @param value the value corresponding to the keyword
45  * @param lines_written to keep track of lines written so far
46  * @return 0
47  */
48 static int write_keyword_value(AVFormatContext *s, const char *keyword, int value, int *lines_written)
49 {
50  int len, ret;
51  uint8_t header[80];
52 
53  len = strlen(keyword);
54  memset(header, ' ', sizeof(header));
55  memcpy(header, keyword, len);
56 
57  header[8] = '=';
58  header[9] = ' ';
59 
60  ret = snprintf(header + 10, 70, "%d", value);
61  memset(&header[ret + 10], ' ', sizeof(header) - (ret + 10));
62 
63  avio_write(s->pb, header, sizeof(header));
64  *lines_written += 1;
65  return 0;
66 }
67 
69 {
70  AVStream *st = s->streams[0];
71  AVCodecParameters *encctx = st->codecpar;
72  FITSContext *fitsctx = s->priv_data;
73  uint8_t buffer[80];
74  int bitpix, naxis, naxis3 = 1, bzero = 0, rgb = 0, lines_written = 0, lines_left;
75 
76  switch (encctx->format) {
77  case AV_PIX_FMT_GRAY8:
78  bitpix = 8;
79  naxis = 2;
80  break;
82  bitpix = 16;
83  naxis = 2;
84  bzero = 32768;
85  break;
86  case AV_PIX_FMT_GBRP:
87  case AV_PIX_FMT_GBRAP:
88  bitpix = 8;
89  naxis = 3;
90  rgb = 1;
91  if (encctx->format == AV_PIX_FMT_GBRP) {
92  naxis3 = 3;
93  } else {
94  naxis3 = 4;
95  }
96  break;
99  bitpix = 16;
100  naxis = 3;
101  rgb = 1;
102  if (encctx->format == AV_PIX_FMT_GBRP16BE) {
103  naxis3 = 3;
104  } else {
105  naxis3 = 4;
106  }
107  bzero = 32768;
108  break;
109  }
110 
111  if (fitsctx->first_image) {
112  memcpy(buffer, "SIMPLE = ", 10);
113  memset(buffer + 10, ' ', 70);
114  buffer[29] = 'T';
115  avio_write(s->pb, buffer, sizeof(buffer));
116  } else {
117  memcpy(buffer, "XTENSION= 'IMAGE '", 20);
118  memset(buffer + 20, ' ', 60);
119  avio_write(s->pb, buffer, sizeof(buffer));
120  }
121  lines_written++;
122 
123  write_keyword_value(s, "BITPIX", bitpix, &lines_written); // no of bits per pixel
124  write_keyword_value(s, "NAXIS", naxis, &lines_written); // no of dimensions of image
125  write_keyword_value(s, "NAXIS1", encctx->width, &lines_written); // first dimension i.e. width
126  write_keyword_value(s, "NAXIS2", encctx->height, &lines_written); // second dimension i.e. height
127 
128  if (rgb)
129  write_keyword_value(s, "NAXIS3", naxis3, &lines_written); // third dimension to store RGBA planes
130 
131  if (!fitsctx->first_image) {
132  write_keyword_value(s, "PCOUNT", 0, &lines_written);
133  write_keyword_value(s, "GCOUNT", 1, &lines_written);
134  } else {
135  fitsctx->first_image = 0;
136  }
137 
138  /*
139  * Since FITS does not support unsigned 16 bit integers,
140  * BZERO = 32768 is used to store unsigned 16 bit integers as
141  * signed integers so that it can be read properly.
142  */
143  if (bitpix == 16)
144  write_keyword_value(s, "BZERO", bzero, &lines_written);
145 
146  if (rgb) {
147  memcpy(buffer, "CTYPE3 = 'RGB '", 20);
148  memset(buffer + 20, ' ', 60);
149  avio_write(s->pb, buffer, sizeof(buffer));
150  lines_written++;
151  }
152 
153  memcpy(buffer, "END", 3);
154  memset(buffer + 3, ' ', 77);
155  avio_write(s->pb, buffer, sizeof(buffer));
156  lines_written++;
157 
158  lines_left = ((lines_written + 35) / 36) * 36 - lines_written;
159  memset(buffer, ' ', 80);
160  while (lines_left > 0) {
161  avio_write(s->pb, buffer, sizeof(buffer));
162  lines_left--;
163  }
164  return 0;
165 }
166 
168 {
170  avio_write(s->pb, pkt->data, pkt->size);
171  return 0;
172 }
173 
175  .name = "fits",
176  .long_name = NULL_IF_CONFIG_SMALL("Flexible Image Transport System"),
177  .extensions = "fits",
178  .priv_data_size = sizeof(FITSContext),
179  .audio_codec = AV_CODEC_ID_NONE,
180  .video_codec = AV_CODEC_ID_FITS,
183 };
static void write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost, int unqueue)
Definition: ffmpeg.c:671
const char * s
Definition: avisynth_c.h:768
static int write_image_header(AVFormatContext *s)
Definition: fitsenc.c:68
planar GBR 4:4:4 24bpp
Definition: pixfmt.h:180
int size
Definition: avcodec.h:1680
static int fits_write_header(AVFormatContext *s)
Definition: fitsenc.c:33
static AVPacket pkt
This struct describes the properties of an encoded stream.
Definition: avcodec.h:4144
Format I/O context.
Definition: avformat.h:1349
planar GBRA 4:4:4:4 64bpp, big-endian
Definition: pixfmt.h:230
uint8_t
int width
Video only.
Definition: avcodec.h:4218
int first_image
Definition: fitsdec.c:38
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1417
uint8_t * data
Definition: avcodec.h:1679
planar GBR 4:4:4 48bpp, big-endian
Definition: pixfmt.h:186
static const uint8_t header[24]
Definition: sdr2.c:67
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:216
static int write_keyword_value(AVFormatContext *s, const char *keyword, int value, int *lines_written)
Write one header line comprising of keyword and value(int)
Definition: fitsenc.c:48
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
AVOutputFormat ff_fits_muxer
Definition: fitsenc.c:174
GLsizei GLboolean const GLfloat * value
Definition: opengl_enc.c:109
const char * name
Definition: avformat.h:524
Stream structure.
Definition: avformat.h:889
AVIOContext * pb
I/O context.
Definition: avformat.h:1391
Y , 16bpp, big-endian.
Definition: pixfmt.h:98
#define snprintf
Definition: snprintf.h:34
static int fits_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: fitsenc.c:167
Y , 8bpp.
Definition: pixfmt.h:70
planar GBRA 4:4:4:4 32bpp
Definition: pixfmt.h:229
int len
void * priv_data
Format private data.
Definition: avformat.h:1377
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:337
AVCodecParameters * codecpar
Definition: avformat.h:1252
This structure stores compressed data.
Definition: avcodec.h:1656
GLuint buffer
Definition: opengl_enc.c:102