FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fic.c
Go to the documentation of this file.
1 /*
2  * Mirillis FIC decoder
3  *
4  * Copyright (c) 2014 Konstantin Shishkov
5  * Copyright (c) 2014 Derek Buitenhuis
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #include "libavutil/common.h"
25 #include "avcodec.h"
26 #include "internal.h"
27 #include "dsputil.h"
28 #include "get_bits.h"
29 #include "golomb.h"
30 
31 typedef struct FICThreadContext {
32  DECLARE_ALIGNED(16, int16_t, block)[64];
34  int slice_h;
35  int src_size;
36  int y_off;
38 
39 typedef struct FICContext {
42 
45 
48 
49  const uint8_t *qmat;
50 
52 
55 } FICContext;
56 
57 static const uint8_t fic_qmat_hq[64] = {
58  1, 2, 2, 2, 3, 3, 3, 4,
59  2, 2, 2, 3, 3, 3, 4, 4,
60  2, 2, 3, 3, 3, 4, 4, 4,
61  2, 2, 3, 3, 3, 4, 4, 5,
62  2, 3, 3, 3, 4, 4, 5, 6,
63  3, 3, 3, 4, 4, 5, 6, 7,
64  3, 3, 3, 4, 4, 5, 7, 7,
65  3, 3, 4, 4, 5, 7, 7, 7,
66 };
67 
68 static const uint8_t fic_qmat_lq[64] = {
69  1, 5, 6, 7, 8, 9, 9, 11,
70  5, 5, 7, 8, 9, 9, 11, 12,
71  6, 7, 8, 9, 9, 11, 11, 12,
72  7, 7, 8, 9, 9, 11, 12, 13,
73  7, 8, 9, 9, 10, 11, 13, 16,
74  8, 9, 9, 10, 11, 13, 16, 19,
75  8, 9, 9, 11, 12, 15, 18, 23,
76  9, 9, 11, 12, 15, 18, 23, 27
77 };
78 
79 static const uint8_t fic_header[7] = { 0, 0, 1, 'F', 'I', 'C', 'V' };
80 
81 #define FIC_HEADER_SIZE 27
82 
84  uint8_t *dst, int stride, int16_t *block)
85 {
86  int i, num_coeff;
87 
88  /* Is it a skip block? */
89  if (get_bits1(gb)) {
90  /* This is a P-frame. */
91  ctx->frame->key_frame = 0;
93 
94  return 0;
95  }
96 
97  ctx->dsp.clear_block(block);
98 
99  num_coeff = get_bits(gb, 7);
100  if (num_coeff > 64)
101  return AVERROR_INVALIDDATA;
102 
103  for (i = 0; i < num_coeff; i++)
104  block[ctx->scantable.permutated[i]] = get_se_golomb(gb) * ctx->qmat[i];
105 
106  ctx->dsp.idct_put(dst, stride, block);
107 
108  return 0;
109 }
110 
111 static int fic_decode_slice(AVCodecContext *avctx, void *tdata)
112 {
113  FICContext *ctx = avctx->priv_data;
114  FICThreadContext *tctx = tdata;
115  GetBitContext gb;
116  uint8_t *src = tctx->src;
117  int slice_h = tctx->slice_h;
118  int src_size = tctx->src_size;
119  int y_off = tctx->y_off;
120  int x, y, p;
121 
122  init_get_bits(&gb, src, src_size * 8);
123 
124  for (p = 0; p < 3; p++) {
125  int stride = ctx->frame->linesize[p];
126  uint8_t* dst = ctx->frame->data[p] + (y_off >> !!p) * stride;
127 
128  for (y = 0; y < (slice_h >> !!p); y += 8) {
129  for (x = 0; x < (ctx->aligned_width >> !!p); x += 8) {
130  int ret;
131 
132  if ((ret = fic_decode_block(ctx, &gb, dst + x, stride, tctx->block)) != 0)
133  return ret;
134  }
135 
136  dst += 8 * stride;
137  }
138  }
139 
140  return 0;
141 }
142 
143 static int fic_decode_frame(AVCodecContext *avctx, void *data,
144  int *got_frame, AVPacket *avpkt)
145 {
146  FICContext *ctx = avctx->priv_data;
147  uint8_t *src = avpkt->data;
148  int ret;
149  int slice, nslices;
150  int msize;
151  int tsize;
152  uint8_t *sdata;
153 
154  if ((ret = ff_reget_buffer(avctx, ctx->frame)) < 0) {
155  av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
156  return ret;
157  }
158 
159  /* Header + at least one slice (4) */
160  if (avpkt->size < FIC_HEADER_SIZE + 4) {
161  av_log(avctx, AV_LOG_ERROR, "Frame data is too small.\n");
162  return AVERROR_INVALIDDATA;
163  }
164 
165  /* Check for header. */
166  if (memcmp(src, fic_header, 7))
167  av_log(avctx, AV_LOG_WARNING, "Invalid FIC Header.\n");
168 
169  /* Is it a skip frame? */
170  if (src[17])
171  goto skip;
172 
173  nslices = src[13];
174  if (!nslices) {
175  av_log(avctx, AV_LOG_ERROR, "Zero slices found.\n");
176  return AVERROR_INVALIDDATA;
177  }
178 
179  /* High or Low Quality Matrix? */
180  ctx->qmat = src[23] ? fic_qmat_hq : fic_qmat_lq;
181 
182  /* Skip cursor data. */
183  tsize = AV_RB24(src + 24);
184  if (tsize > avpkt->size - FIC_HEADER_SIZE) {
185  av_log(avctx, AV_LOG_ERROR, "Invalid cursor data size.\n");
186  return AVERROR_INVALIDDATA;
187  }
188 
189  /* Slice height for all but the last slice. */
190  ctx->slice_h = 16 * (ctx->aligned_height >> 4) / nslices;
191  if (ctx->slice_h % 16)
192  ctx->slice_h = FFALIGN(ctx->slice_h - 16, 16);
193 
194  /* First slice offset and remaining data. */
195  sdata = src + tsize + FIC_HEADER_SIZE + 4 * nslices;
196  msize = avpkt->size - nslices * 4 - tsize - FIC_HEADER_SIZE;
197 
198  if (msize <= 0) {
199  av_log(avctx, AV_LOG_ERROR, "Not enough frame data to decode.\n");
200  return AVERROR_INVALIDDATA;
201  }
202 
203  /*
204  * Set the frametype to I initially. It will be set to P if the frame
205  * has any dependencies (skip blocks). There will be a race condition
206  * inside the slice decode function to set these, but we do not care.
207  * since they will only ever be set to 0/P.
208  */
209  ctx->frame->key_frame = 1;
211 
212  /* Allocate slice data. */
214  nslices * sizeof(ctx->slice_data[0]));
215  if (!ctx->slice_data_size) {
216  av_log(avctx, AV_LOG_ERROR, "Could not allocate slice data.\n");
217  return AVERROR(ENOMEM);
218  }
219  memset(ctx->slice_data, 0, nslices * sizeof(ctx->slice_data[0]));
220 
221  for (slice = 0; slice < nslices; slice++) {
222  unsigned slice_off = AV_RB32(src + tsize + FIC_HEADER_SIZE + slice * 4);
223  unsigned slice_size;
224  int y_off = ctx->slice_h * slice;
225  int slice_h = ctx->slice_h;
226 
227  /*
228  * Either read the slice size, or consume all data left.
229  * Also, special case the last slight height.
230  */
231  if (slice == nslices - 1) {
232  slice_size = msize;
233  slice_h = FFALIGN(avctx->height - ctx->slice_h * (nslices - 1), 16);
234  } else {
235  slice_size = AV_RB32(src + tsize + FIC_HEADER_SIZE + slice * 4 + 4);
236  }
237 
238  if (slice_size < slice_off || slice_size > msize)
239  continue;
240 
241  slice_size -= slice_off;
242 
243  ctx->slice_data[slice].src = sdata + slice_off;
244  ctx->slice_data[slice].src_size = slice_size;
245  ctx->slice_data[slice].slice_h = slice_h;
246  ctx->slice_data[slice].y_off = y_off;
247  }
248 
249  if (ret = avctx->execute(avctx, fic_decode_slice, ctx->slice_data,
250  NULL, nslices, sizeof(ctx->slice_data[0])) < 0)
251  return ret;
252 
253 skip:
254  *got_frame = 1;
255  if ((ret = av_frame_ref(data, ctx->frame)) < 0)
256  return ret;
257 
258  return avpkt->size;
259 }
260 
262 {
263  FICContext *ctx = avctx->priv_data;
264 
265  av_freep(&ctx->slice_data);
266  av_frame_free(&ctx->frame);
267 
268  return 0;
269 }
270 
272 {
273  FICContext *ctx = avctx->priv_data;
274 
275  /* Initialize various context values */
276  ctx->avctx = avctx;
277  ctx->aligned_width = FFALIGN(avctx->width, 16);
278  ctx->aligned_height = FFALIGN(avctx->height, 16);
279 
280  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
281  avctx->bits_per_raw_sample = 8;
282 
283  ctx->frame = av_frame_alloc();
284  if (!ctx->frame)
285  return AVERROR(ENOMEM);
286 
287  ff_dsputil_init(&ctx->dsp, avctx);
288 
290 
291  return 0;
292 }
293 
295  .name = "fic",
296  .long_name = NULL_IF_CONFIG_SMALL("Mirillis FIC"),
297  .type = AVMEDIA_TYPE_VIDEO,
298  .id = AV_CODEC_ID_FIC,
299  .priv_data_size = sizeof(FICContext),
303  .capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
304 };