1 /*
2 * Copyright (c) 2011 Derek Buitenhuis
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation;
9 * version 2 of the License.
10 *
11 * FFmpeg 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 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * Known FOURCCs:
24 * 'ULY0' (YCbCr 4:2:0), 'ULY2' (YCbCr 4:2:2), 'ULRG' (RGB), 'ULRA' (RGBA),
25 * 'ULH0' (YCbCr 4:2:0 BT.709), 'ULH2' (YCbCr 4:2:2 BT.709)
26 */
27
28 extern "C" {
31 }
32
35
37 {
41 int begin_ret;
42
45 return -1;
46 }
47
48 /* Read extradata */
53
54 /* Pick format based on FOURCC */
56 #ifdef UTV_BT709
57 case MKTAG(
'U',
'L',
'H',
'0'):
61 break;
62 case MKTAG(
'U',
'L',
'H',
'2'):
66 break;
67 #endif
68 case MKTAG(
'U',
'L',
'Y',
'0'):
71 break;
72 case MKTAG(
'U',
'L',
'Y',
'2'):
75 break;
76 case MKTAG(
'U',
'L',
'R',
'G'):
79 break;
80 case MKTAG(
'U',
'L',
'R',
'A'):
83 break;
84 #ifdef UTVF_UQY2
85 case MKTAG(
'U',
'Q',
'Y',
'2'):
88 break;
89 #endif
90 default:
92 "Not a Ut Video FOURCC: %X\n", avctx->
codec_tag);
93 return -1;
94 }
95
96 /* Only allocate the buffer once */
98 #ifdef UTVF_UQY2
100 utv->
buf_size += avctx->
height * ((avctx->
width + 47) / 48) * 128;
// the linesize used by the decoder, this does not seem to be exported
101 #endif
103
106 return -1;
107 }
108
109 /* Allocate the output frame */
111
112 /* Ut Video only supports 8-bit */
114
115 /* Is it interlaced? */
117
118 /* Apparently Ut Video doesn't store this info... */
120
121 /*
122 * Create a Ut Video instance. Since the function wants
123 * an "interface name" string, pass it the name of the lib.
124 */
125 utv->
codec = CCodec::CreateInstance(UNFCC(avctx->
codec_tag),
"libavcodec");
126
127 /* Initialize Decoding */
130
131 /* Check to see if the decoder initlized properly */
132 if (begin_ret != 0) {
134 "Could not initialize decoder: %d\n", begin_ret);
135 return -1;
136 }
137
138 return 0;
139 }
140
143 {
147
148 /* Set flags */
150 pic->key_frame = 1;
151
152 /* Decode the frame */
154
155 /* Set the output data depending on the colorspace */
158 pic->linesize[0] = w;
159 pic->linesize[1] = pic->linesize[2] = w / 2;
160 pic->data[0] = utv->
buffer;
161 pic->data[2] = utv->
buffer + (w *
h);
162 pic->data[1] = pic->data[2] + (w *
h / 4);
163 break;
165 pic->linesize[0] = w * 2;
166 pic->data[0] = utv->
buffer;
167 break;
169 uint16_t *y, *u, *v;
170 int i,j;
171 int linesize = ((w + 47) / 48) * 128;
172
173 pic->linesize[0] = w * 2;
174 pic->linesize[1] =
175 pic->linesize[2] = w;
176 pic->data[0] = utv->
buffer + linesize *
h;
177 pic->data[1] = pic->data[0] + h*pic->linesize[0];
178 pic->data[2] = pic->data[1] + h*pic->linesize[1];
179 y = (uint16_t*)pic->data[0];
180 u = (uint16_t*)pic->data[1];
181 v = (uint16_t*)pic->data[2];
182 for (j = 0; j <
h; j++) {
184
185 for (i = 0; i + 1 < w; i += 6, in += 4) {
188 in += 4;
191 *y++ = (a>>10) & 0x3FF;
192 *v++ = (a>>20) & 0x3FF;
194
195 if (i + 3 >= w)
196 break;
197
198 in += 4;
200 *u++ = (b>>10) & 0x3FF;
201 *y++ = (b>>20) & 0x3FF;
203 *y++ = (a>>10) & 0x3FF;
204
205 if (i + 5 >= w)
206 break;
207
208 in += 4;
210 *u++ = (a>>20) & 0x3FF;
212 *v++ = (b>>10) & 0x3FF;
213 *y++ = (b>>20) & 0x3FF;
214 }
215 }
216 break;
217 }
220 /* Make the linesize negative, since Ut Video uses bottom-up BGR */
223 break;
224 }
225
226 *got_frame = 1;
228
230 }
231
233 {
235
236 /* Free output */
239
240 /* Finish decoding and clean up the instance */
241 utv->
codec->DecodeEnd();
242 CCodec::DeleteInstance(utv->
codec);
243
244 return 0;
245 }
246
248 "libutvideo",
252 0, //capabilities
253 NULL,
//supported_framerates
255 NULL,
//supported_samplerates
257 NULL,
//channel_layouts
258 0, //max_lowres
262 NULL, //next
263 NULL, //init_thread_copy
264 NULL, //update_thread_context
265 NULL, //defaults
266 NULL, //init_static_data
268 NULL, //encode
269 NULL, //encode2
272 };
also ITU-R BT1361 / IEC 61966-2-4 xvYCC709 / SMPTE RP177 Annex B
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
bitstream reader API header.
int interlaced_frame
The content of the picture is interlaced.
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters...
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int width
picture width / height.
Known FOURCCs: 'ULY0' (YCbCr 4:2:0), 'ULY2' (YCbCr 4:2:2), 'ULRG' (RGB), 'ULRA' (RGBA), 'ULH0' (YCbCr 4:2:0 BT.709), 'ULH2' (YCbCr 4:2:2 BT.709)
packed RGB 8:8:8, 24bpp, BGRBGR...
Libavcodec external API header.
main external API structure.
static const char * format
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
static av_cold int utvideo_decode_close(AVCodecContext *avctx)
enum AVColorSpace colorspace
YUV colorspace type.
#define AV_PIX_FMT_YUV422P10
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
int top_field_first
If the content is interlaced, is top field displayed first.
static av_cold int utvideo_decode_init(AVCodecContext *avctx)
AVCodec ff_libutvideo_decoder
static int utvideo_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#define MKTAG(a, b, c, d)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
This structure stores compressed data.
#define UTVF_NFCC_BGRA_BU