4 * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
6 * This file is part of FFmpeg.
8 * FFmpeg 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.
13 * FFmpeg 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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "bytestream.h"
25 #include "libavutil/intreadwrite.h"
27 static av_cold
int decode_init(AVCodecContext
*avctx
)
29 if (avctx
->width
& 1) {
30 av_log(avctx
, AV_LOG_ERROR
, "FRWU needs even width\n");
33 avctx
->pix_fmt
= PIX_FMT_UYVY422
;
35 avctx
->coded_frame
= avcodec_alloc_frame();
40 static int decode_frame(AVCodecContext
*avctx
, void *data
, int *data_size
,
44 AVFrame
*pic
= avctx
->coded_frame
;
45 const uint8_t *buf
= avpkt
->data
;
46 const uint8_t *buf_end
= buf
+ avpkt
->size
;
49 avctx
->release_buffer(avctx
, pic
);
51 if (avpkt
->size
< avctx
->width
* 2 * avctx
->height
+ 4 + 2*8) {
52 av_log(avctx
, AV_LOG_ERROR
, "Packet is too small.\n");
55 if (bytestream_get_le32(&buf
) != AV_RL32("FRW1")) {
56 av_log(avctx
, AV_LOG_ERROR
, "incorrect marker\n");
61 if (avctx
->get_buffer(avctx
, pic
) < 0)
64 pic
->pict_type
= FF_I_TYPE
;
66 pic
->interlaced_frame
= 1;
67 pic
->top_field_first
= 1;
69 for (field
= 0; field
< 2; field
++) {
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)
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
);
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
));
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;
93 buf
+= field_size
- min_field_size
;
96 *data_size
= sizeof(AVFrame
);
97 *(AVFrame
*)data
= *pic
;
102 static av_cold
int decode_close(AVCodecContext
*avctx
)
104 AVFrame
*pic
= avctx
->coded_frame
;
106 avctx
->release_buffer(avctx
, pic
);
107 av_freep(&avctx
->coded_frame
);
112 AVCodec frwu_decoder
= {
122 .long_name
= NULL_IF_CONFIG_SMALL("Forward Uncompressed"),