Libav
roqvideodec.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2003 the ffmpeg project
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 
32 #include "avcodec.h"
33 #include "bytestream.h"
34 #include "internal.h"
35 #include "roqvideo.h"
36 
38 {
39  unsigned int chunk_id = 0, chunk_arg = 0;
40  unsigned long chunk_size = 0;
41  int i, j, k, nv1, nv2, vqflg = 0, vqflg_pos = -1;
42  int vqid, xpos, ypos, xp, yp, x, y, mx, my;
43  int frame_stats[2][4] = {{0},{0}};
44  roq_qcell *qcell;
45  int64_t chunk_start;
46 
47  while (bytestream2_get_bytes_left(&ri->gb) >= 8) {
48  chunk_id = bytestream2_get_le16(&ri->gb);
49  chunk_size = bytestream2_get_le32(&ri->gb);
50  chunk_arg = bytestream2_get_le16(&ri->gb);
51 
52  if(chunk_id == RoQ_QUAD_VQ)
53  break;
54  if(chunk_id == RoQ_QUAD_CODEBOOK) {
55  if((nv1 = chunk_arg >> 8) == 0)
56  nv1 = 256;
57  if((nv2 = chunk_arg & 0xff) == 0 && nv1 * 6 < chunk_size)
58  nv2 = 256;
59  for(i = 0; i < nv1; i++) {
60  ri->cb2x2[i].y[0] = bytestream2_get_byte(&ri->gb);
61  ri->cb2x2[i].y[1] = bytestream2_get_byte(&ri->gb);
62  ri->cb2x2[i].y[2] = bytestream2_get_byte(&ri->gb);
63  ri->cb2x2[i].y[3] = bytestream2_get_byte(&ri->gb);
64  ri->cb2x2[i].u = bytestream2_get_byte(&ri->gb);
65  ri->cb2x2[i].v = bytestream2_get_byte(&ri->gb);
66  }
67  for(i = 0; i < nv2; i++)
68  for(j = 0; j < 4; j++)
69  ri->cb4x4[i].idx[j] = bytestream2_get_byte(&ri->gb);
70  }
71  }
72 
73  chunk_start = bytestream2_tell(&ri->gb);
74  xpos = ypos = 0;
75  while (bytestream2_tell(&ri->gb) < chunk_start + chunk_size) {
76  for (yp = ypos; yp < ypos + 16; yp += 8)
77  for (xp = xpos; xp < xpos + 16; xp += 8) {
78  if (vqflg_pos < 0) {
79  vqflg = bytestream2_get_le16(&ri->gb);
80  vqflg_pos = 7;
81  }
82  vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
83  frame_stats[0][vqid]++;
84  vqflg_pos--;
85 
86  switch(vqid) {
87  case RoQ_ID_MOT:
88  break;
89  case RoQ_ID_FCC: {
90  int byte = bytestream2_get_byte(&ri->gb);
91  mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
92  my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
93  ff_apply_motion_8x8(ri, xp, yp, mx, my);
94  break;
95  }
96  case RoQ_ID_SLD:
97  qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
98  ff_apply_vector_4x4(ri, xp, yp, ri->cb2x2 + qcell->idx[0]);
99  ff_apply_vector_4x4(ri, xp + 4, yp, ri->cb2x2 + qcell->idx[1]);
100  ff_apply_vector_4x4(ri, xp, yp + 4, ri->cb2x2 + qcell->idx[2]);
101  ff_apply_vector_4x4(ri, xp + 4, yp + 4, ri->cb2x2 + qcell->idx[3]);
102  break;
103  case RoQ_ID_CCC:
104  for (k = 0; k < 4; k++) {
105  x = xp; y = yp;
106  if(k & 0x01) x += 4;
107  if(k & 0x02) y += 4;
108 
109  if (vqflg_pos < 0) {
110  vqflg = bytestream2_get_le16(&ri->gb);
111  vqflg_pos = 7;
112  }
113  vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
114  frame_stats[1][vqid]++;
115  vqflg_pos--;
116  switch(vqid) {
117  case RoQ_ID_MOT:
118  break;
119  case RoQ_ID_FCC: {
120  int byte = bytestream2_get_byte(&ri->gb);
121  mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
122  my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
123  ff_apply_motion_4x4(ri, x, y, mx, my);
124  break;
125  }
126  case RoQ_ID_SLD:
127  qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
128  ff_apply_vector_2x2(ri, x, y, ri->cb2x2 + qcell->idx[0]);
129  ff_apply_vector_2x2(ri, x + 2, y, ri->cb2x2 + qcell->idx[1]);
130  ff_apply_vector_2x2(ri, x, y + 2, ri->cb2x2 + qcell->idx[2]);
131  ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + qcell->idx[3]);
132  break;
133  case RoQ_ID_CCC:
134  ff_apply_vector_2x2(ri, x, y, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
135  ff_apply_vector_2x2(ri, x + 2, y, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
136  ff_apply_vector_2x2(ri, x, y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
137  ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
138  break;
139  }
140  }
141  break;
142  default:
143  av_log(ri->avctx, AV_LOG_ERROR, "Unknown vq code: %d\n", vqid);
144  }
145  }
146 
147  xpos += 16;
148  if (xpos >= ri->width) {
149  xpos -= ri->width;
150  ypos += 16;
151  }
152  if(ypos >= ri->height)
153  break;
154  }
155 }
156 
157 
159 {
160  RoqContext *s = avctx->priv_data;
161 
162  s->avctx = avctx;
163 
164  if (avctx->width % 16 || avctx->height % 16) {
165  av_log(avctx, AV_LOG_ERROR,
166  "Dimensions must be a multiple of 16\n");
167  return AVERROR_PATCHWELCOME;
168  }
169 
170  s->width = avctx->width;
171  s->height = avctx->height;
172 
173  s->last_frame = av_frame_alloc();
175  if (!s->current_frame || !s->last_frame) {
178  return AVERROR(ENOMEM);
179  }
180 
181  avctx->pix_fmt = AV_PIX_FMT_YUV444P;
182 
183  return 0;
184 }
185 
187  void *data, int *got_frame,
188  AVPacket *avpkt)
189 {
190  const uint8_t *buf = avpkt->data;
191  int buf_size = avpkt->size;
192  RoqContext *s = avctx->priv_data;
193  int copy= !s->current_frame->data[0];
194  int ret;
195 
196  if ((ret = ff_reget_buffer(avctx, s->current_frame)) < 0) {
197  av_log(avctx, AV_LOG_ERROR, " RoQ: get_buffer() failed\n");
198  return ret;
199  }
200 
201  if(copy)
203  avctx->pix_fmt, avctx->width, avctx->height);
204 
205  bytestream2_init(&s->gb, buf, buf_size);
207 
208  if ((ret = av_frame_ref(data, s->current_frame)) < 0)
209  return ret;
210  *got_frame = 1;
211 
212  /* shuffle frames */
214 
215  return buf_size;
216 }
217 
219 {
220  RoqContext *s = avctx->priv_data;
221 
224 
225  return 0;
226 }
227 
229  .name = "roqvideo",
230  .long_name = NULL_IF_CONFIG_SMALL("id RoQ video"),
231  .type = AVMEDIA_TYPE_VIDEO,
232  .id = AV_CODEC_ID_ROQ,
233  .priv_data_size = sizeof(RoqContext),
237  .capabilities = CODEC_CAP_DR1,
238 };
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:70
void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell)
Definition: roqvideo.c:41
int size
Definition: avcodec.h:974
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1254
#define RoQ_ID_FCC
Definition: roqvideo.h:81
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:130
AVFrame * current_frame
Definition: roqvideo.h:48
four components are given, that's all.
Definition: avcodec.h:3026
AVCodec.
Definition: avcodec.h:2796
int width
Definition: roqvideo.h:55
#define RoQ_ID_MOT
Definition: roqvideo.h:80
void av_picture_copy(AVPicture *dst, const AVPicture *src, enum AVPixelFormat pix_fmt, int width, int height)
Copy image src to dst.
Definition: avpicture.c:119
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
uint8_t
#define av_cold
Definition: attributes.h:66
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:57
#define RoQ_QUAD_CODEBOOK
Definition: roqvideo.h:75
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:188
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
const char data[16]
Definition: mxf.c:70
uint8_t * data
Definition: avcodec.h:973
static void copy(LZOContext *c, int cnt)
Copies bytes from input to output buffer with checking.
Definition: lzo.c:79
void ff_apply_motion_4x4(RoqContext *ri, int x, int y, int deltax, int deltay)
Definition: roqvideo.c:133
void ff_apply_motion_8x8(RoqContext *ri, int x, int y, int deltax, int deltay)
Definition: roqvideo.c:139
static av_cold int roq_decode_end(AVCodecContext *avctx)
Definition: roqvideodec.c:218
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
static void roqvideo_decode_frame(RoqContext *ri)
Definition: roqvideodec.c:37
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:69
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:150
static int roq_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: roqvideodec.c:186
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:149
roq_qcell cb4x4[256]
Definition: roqvideo.h:52
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
const char * name
Name of the codec implementation.
Definition: avcodec.h:2803
#define RoQ_ID_CCC
Definition: roqvideo.h:83
unsigned char u
Definition: roqvideo.h:31
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
Definition: utils.c:808
int width
picture width / height.
Definition: avcodec.h:1224
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
Definition: error.h:57
int idx[4]
Definition: roqvideo.h:35
static av_always_inline int bytestream2_tell(GetByteContext *g)
Definition: bytestream.h:183
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1050
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:490
GetByteContext gb
Definition: roqvideo.h:54
#define RoQ_ID_SLD
Definition: roqvideo.h:82
unsigned char y[4]
Definition: roqvideo.h:30
static av_cold int roq_decode_init(AVCodecContext *avctx)
Definition: roqvideodec.c:158
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
AVCodecContext * avctx
Definition: roqvideo.h:46
common internal api header.
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
#define RoQ_QUAD_VQ
Definition: roqvideo.h:76
AVCodec ff_roq_decoder
Definition: roqvideodec.c:228
void * priv_data
Definition: avcodec.h:1092
void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell)
Definition: roqvideo.c:71
roq_cell cb2x2[256]
Definition: roqvideo.h:51
AVFrame * last_frame
Definition: roqvideo.h:47
#define FFSWAP(type, a, b)
Definition: common.h:60
This structure stores compressed data.
Definition: avcodec.h:950
unsigned char v
Definition: roqvideo.h:31
int height
Definition: roqvideo.h:55