frwu.c
Go to the documentation of this file.
1 /*
2  * Forward Uncompressed
3  *
4  * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 "avcodec.h"
24 #include "bytestream.h"
25 #include "libavutil/intreadwrite.h"
26 
28 {
29  if (avctx->width & 1) {
30  av_log(avctx, AV_LOG_ERROR, "FRWU needs even width\n");
31  return -1;
32  }
33  avctx->pix_fmt = PIX_FMT_UYVY422;
34 
36 
37  return 0;
38 }
39 
40 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
41  AVPacket *avpkt)
42 {
43  int field;
44  AVFrame *pic = avctx->coded_frame;
45  const uint8_t *buf = avpkt->data;
46  const uint8_t *buf_end = buf + avpkt->size;
47 
48  if (pic->data[0])
49  avctx->release_buffer(avctx, pic);
50 
51  if (avpkt->size < avctx->width * 2 * avctx->height + 4 + 2*8) {
52  av_log(avctx, AV_LOG_ERROR, "Packet is too small.\n");
53  return -1;
54  }
55  if (bytestream_get_le32(&buf) != AV_RL32("FRW1")) {
56  av_log(avctx, AV_LOG_ERROR, "incorrect marker\n");
57  return -1;
58  }
59 
60  pic->reference = 0;
61  if (avctx->get_buffer(avctx, pic) < 0)
62  return -1;
63 
65  pic->key_frame = 1;
66  pic->interlaced_frame = 1;
67  pic->top_field_first = 1;
68 
69  for (field = 0; field < 2; field++) {
70  int i;
71  int field_h = (avctx->height + !field) >> 1;
72  int field_size, min_field_size = avctx->width * 2 * field_h;
73  uint8_t *dst = pic->data[0];
74  if (buf_end - buf < 8)
75  return -1;
76  buf += 4; // flags? 0x80 == bottom field maybe?
77  field_size = bytestream_get_le32(&buf);
78  if (field_size < min_field_size) {
79  av_log(avctx, AV_LOG_ERROR, "Field size %i is too small (required %i)\n", field_size, min_field_size);
80  return -1;
81  }
82  if (buf_end - buf < field_size) {
83  av_log(avctx, AV_LOG_ERROR, "Packet is too small, need %i, have %i\n", field_size, (int)(buf_end - buf));
84  return -1;
85  }
86  if (field)
87  dst += pic->linesize[0];
88  for (i = 0; i < field_h; i++) {
89  memcpy(dst, buf, avctx->width * 2);
90  buf += avctx->width * 2;
91  dst += pic->linesize[0] << 1;
92  }
93  buf += field_size - min_field_size;
94  }
95 
96  *data_size = sizeof(AVFrame);
97  *(AVFrame*)data = *pic;
98 
99  return avpkt->size;
100 }
101 
103 {
104  AVFrame *pic = avctx->coded_frame;
105  if (pic->data[0])
106  avctx->release_buffer(avctx, pic);
107  av_freep(&avctx->coded_frame);
108 
109  return 0;
110 }
111 
113  .name = "FRWU",
114  .type = AVMEDIA_TYPE_VIDEO,
115  .id = CODEC_ID_FRWU,
116  .init = decode_init,
117  .close = decode_close,
118  .decode = decode_frame,
119  .capabilities = CODEC_CAP_DR1,
120  .long_name = NULL_IF_CONFIG_SMALL("Forward Uncompressed"),
121 };
int(* get_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called at the beginning of each frame to get a buffer for it.
Definition: avcodec.h:1726
enum PixelFormat pix_fmt
Pixel format, see PIX_FMT_xxx.
Definition: avcodec.h:1426
Audio Video Frame.
Definition: avcodec.h:985
void(* release_buffer)(struct AVCodecContext *c, AVFrame *pic)
Called to release buffers which were allocated with get_buffer.
Definition: avcodec.h:1737
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2000
static av_cold int decode_close(AVCodecContext *avctx)
Definition: frwu.c:102
int size
Definition: avcodec.h:909
AVCodec.
Definition: avcodec.h:3189
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:147
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
Definition: frwu.c:40
AVCodec ff_frwu_decoder
Definition: frwu.c:112
#define av_cold
Definition: attributes.h:71
const char data[16]
Definition: mxf.c:60
uint8_t * data
Definition: avcodec.h:908
int interlaced_frame
The content of the picture is interlaced.
Definition: avcodec.h:1167
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:719
int reference
is this picture used as reference The values for this are the same as the MpegEncContext.picture_structure variable, that is 1->top field, 2->bottom field, 3->frame/both fields.
Definition: avcodec.h:1074
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
AV_RL32
Definition: bytestream.h:89
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
const char * name
Name of the codec implementation.
Definition: avcodec.h:3196
static av_cold int decode_init(AVCodecContext *avctx)
Definition: frwu.c:27
AVFrame * avcodec_alloc_frame(void)
Allocate an AVFrame and set its fields to default values.
Definition: utils.c:618
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1029
int width
picture width / height.
Definition: avcodec.h:1408
struct AVFrame AVFrame
Audio Video Frame.
external API header
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
main external API structure.
Definition: avcodec.h:1329
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition: pixfmt.h:81
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: avcodec.h:1174
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1022