2 * - CrystalHD decoder module -
4 * Copyright(C) 2010,2011 Philip Langdale <ffmpeg.philipl@overt.org>
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 * - Principles of Operation -
26 * The CrystalHD decoder operates at the bitstream level - which is an even
27 * higher level than the decoding hardware you typically see in modern GPUs.
28 * This means it has a very simple interface, in principle. You feed demuxed
29 * packets in one end and get decoded picture (fields/frames) out the other.
31 * Of course, nothing is ever that simple. Due, at the very least, to b-frame
32 * dependencies in the supported formats, the hardware has a delay between
33 * when a packet goes in, and when a picture comes out. Furthermore, this delay
34 * is not just a function of time, but also one of the dependency on additional
35 * frames being fed into the decoder to satisfy the b-frame dependencies.
37 * As such, a pipeline will build up that is roughly equivalent to the required
38 * DPB for the file being played. If that was all it took, things would still
39 * be simple - so, of course, it isn't.
41 * The hardware has a way of indicating that a picture is ready to be copied out,
42 * but this is unreliable - and sometimes the attempt will still fail so, based
43 * on testing, the code will wait until 3 pictures are ready before starting
44 * to copy out - and this has the effect of extending the pipeline.
46 * Finally, while it is tempting to say that once the decoder starts outputting
47 * frames, the software should never fail to return a frame from a decode(),
48 * this is a hard assertion to make, because the stream may switch between
49 * differently encoded content (number of b-frames, interlacing, etc) which
50 * might require a longer pipeline than before. If that happened, you could
51 * deadlock trying to retrieve a frame that can't be decoded without feeding
52 * in additional packets.
54 * As such, the code will return in the event that a picture cannot be copied
55 * out, leading to an increase in the length of the pipeline. This in turn,
56 * means we have to be sensitive to the time it takes to decode a picture;
57 * We do not want to give up just because the hardware needed a little more
58 * time to prepare the picture! For this reason, there are delays included
59 * in the decode() path that ensure that, under normal conditions, the hardware
60 * will only fail to return a frame if it really needs additional packets to
61 * complete the decoding.
63 * Finally, to be explicit, we do not want the pipeline to grow without bound
64 * for two reasons: 1) The hardware can only buffer a finite number of packets,
65 * and 2) The client application may not be able to cope with arbitrarily long
66 * delays in the video path relative to the audio path. For example. MPlayer
67 * can only handle a 20 picture delay (although this is arbitrary, and needs
68 * to be extended to fully support the CrystalHD where the delay could be up
69 * to 32 pictures - consider PAFF H.264 content with 16 b-frames).
72 /*****************************************************************************
74 ****************************************************************************/
76 #define _XOPEN_SOURCE 600
82 #include <libcrystalhd/bc_dts_types.h>
83 #include <libcrystalhd/bc_dts_defs.h>
84 #include <libcrystalhd/libcrystalhd_if.h>
89 #include "libavutil/imgutils.h"
90 #include "libavutil/intreadwrite.h"
91 #include "libavutil/opt.h"
93 /** Timeout parameter passed to DtsProcOutput() in us */
94 #define OUTPUT_PROC_TIMEOUT 50
95 /** Step between fake timestamps passed to hardware in units of 100ns */
96 #define TIMESTAMP_UNIT 100000
97 /** Initial value in us of the wait in decode() */
98 #define BASE_WAIT 10000
99 /** Increment in us to adjust wait in decode() */
100 #define WAIT_UNIT 1000
103 /*****************************************************************************
104 * Module private data
105 ****************************************************************************/
111 RET_SKIP_NEXT_COPY = 2,
112 RET_COPY_NEXT_FIELD = 3,
115 typedef struct OpaqueList {
116 struct OpaqueList *next;
117 uint64_t fake_timestamp;
118 uint64_t reordered_opaque;
124 AVCodecContext *avctx;
128 uint8_t *orig_extradata;
129 uint32_t orig_extradata_size;
131 AVBitStreamFilterContext *bsfc;
132 AVCodecParserContext *parser;
135 uint8_t *sps_pps_buf;
136 uint32_t sps_pps_size;
138 uint8_t output_ready;
139 uint8_t need_second_field;
140 uint8_t skip_next_output;
141 uint64_t decode_wait;
143 uint64_t last_picture;
153 static const AVOption options[] = {
154 { "crystalhd_downscale_width",
155 "Turn on downscaling to the specified width",
156 offsetof(CHDContext, sWidth),
157 AV_OPT_TYPE_INT, {.i64 = 0}, 0, UINT32_MAX,
158 AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM, },
163 /*****************************************************************************
165 ****************************************************************************/
167 static inline BC_MEDIA_SUBTYPE id2subtype(CHDContext *priv, enum AVCodecID id)
170 case AV_CODEC_ID_MPEG4:
171 return BC_MSUBTYPE_DIVX;
172 case AV_CODEC_ID_MSMPEG4V3:
173 return BC_MSUBTYPE_DIVX311;
174 case AV_CODEC_ID_MPEG2VIDEO:
175 return BC_MSUBTYPE_MPEG2VIDEO;
176 case AV_CODEC_ID_VC1:
177 return BC_MSUBTYPE_VC1;
178 case AV_CODEC_ID_WMV3:
179 return BC_MSUBTYPE_WMV3;
180 case AV_CODEC_ID_H264:
181 return priv->is_nal ? BC_MSUBTYPE_AVC1 : BC_MSUBTYPE_H264;
183 return BC_MSUBTYPE_INVALID;
187 static inline void print_frame_info(CHDContext *priv, BC_DTS_PROC_OUT *output)
189 av_log(priv->avctx, AV_LOG_VERBOSE, "\tYBuffSz: %u\n", output->YbuffSz);
190 av_log(priv->avctx, AV_LOG_VERBOSE, "\tYBuffDoneSz: %u\n",
191 output->YBuffDoneSz);
192 av_log(priv->avctx, AV_LOG_VERBOSE, "\tUVBuffDoneSz: %u\n",
193 output->UVBuffDoneSz);
194 av_log(priv->avctx, AV_LOG_VERBOSE, "\tTimestamp: %"PRIu64"\n",
195 output->PicInfo.timeStamp);
196 av_log(priv->avctx, AV_LOG_VERBOSE, "\tPicture Number: %u\n",
197 output->PicInfo.picture_number);
198 av_log(priv->avctx, AV_LOG_VERBOSE, "\tWidth: %u\n",
199 output->PicInfo.width);
200 av_log(priv->avctx, AV_LOG_VERBOSE, "\tHeight: %u\n",
201 output->PicInfo.height);
202 av_log(priv->avctx, AV_LOG_VERBOSE, "\tChroma: 0x%03x\n",
203 output->PicInfo.chroma_format);
204 av_log(priv->avctx, AV_LOG_VERBOSE, "\tPulldown: %u\n",
205 output->PicInfo.pulldown);
206 av_log(priv->avctx, AV_LOG_VERBOSE, "\tFlags: 0x%08x\n",
207 output->PicInfo.flags);
208 av_log(priv->avctx, AV_LOG_VERBOSE, "\tFrame Rate/Res: %u\n",
209 output->PicInfo.frame_rate);
210 av_log(priv->avctx, AV_LOG_VERBOSE, "\tAspect Ratio: %u\n",
211 output->PicInfo.aspect_ratio);
212 av_log(priv->avctx, AV_LOG_VERBOSE, "\tColor Primaries: %u\n",
213 output->PicInfo.colour_primaries);
214 av_log(priv->avctx, AV_LOG_VERBOSE, "\tMetaData: %u\n",
215 output->PicInfo.picture_meta_payload);
216 av_log(priv->avctx, AV_LOG_VERBOSE, "\tSession Number: %u\n",
217 output->PicInfo.sess_num);
218 av_log(priv->avctx, AV_LOG_VERBOSE, "\tycom: %u\n",
219 output->PicInfo.ycom);
220 av_log(priv->avctx, AV_LOG_VERBOSE, "\tCustom Aspect: %u\n",
221 output->PicInfo.custom_aspect_ratio_width_height);
222 av_log(priv->avctx, AV_LOG_VERBOSE, "\tFrames to Drop: %u\n",
223 output->PicInfo.n_drop);
224 av_log(priv->avctx, AV_LOG_VERBOSE, "\tH264 Valid Fields: 0x%08x\n",
225 output->PicInfo.other.h264.valid);
229 /*****************************************************************************
230 * OpaqueList functions
231 ****************************************************************************/
233 static uint64_t opaque_list_push(CHDContext *priv, uint64_t reordered_opaque,
236 OpaqueList *newNode = av_mallocz(sizeof (OpaqueList));
238 av_log(priv->avctx, AV_LOG_ERROR,
239 "Unable to allocate new node in OpaqueList.\n");
243 newNode->fake_timestamp = TIMESTAMP_UNIT;
244 priv->head = newNode;
246 newNode->fake_timestamp = priv->tail->fake_timestamp + TIMESTAMP_UNIT;
247 priv->tail->next = newNode;
249 priv->tail = newNode;
250 newNode->reordered_opaque = reordered_opaque;
251 newNode->pic_type = pic_type;
253 return newNode->fake_timestamp;
257 * The OpaqueList is built in decode order, while elements will be removed
258 * in presentation order. If frames are reordered, this means we must be
259 * able to remove elements that are not the first element.
261 * Returned node must be freed by caller.
263 static OpaqueList *opaque_list_pop(CHDContext *priv, uint64_t fake_timestamp)
265 OpaqueList *node = priv->head;
268 av_log(priv->avctx, AV_LOG_ERROR,
269 "CrystalHD: Attempted to query non-existent timestamps.\n");
274 * The first element is special-cased because we have to manipulate
275 * the head pointer rather than the previous element in the list.
277 if (priv->head->fake_timestamp == fake_timestamp) {
278 priv->head = node->next;
280 if (!priv->head->next)
281 priv->tail = priv->head;
288 * The list is processed at arm's length so that we have the
289 * previous element available to rewrite its next pointer.
292 OpaqueList *current = node->next;
293 if (current->fake_timestamp == fake_timestamp) {
294 node->next = current->next;
299 current->next = NULL;
306 av_log(priv->avctx, AV_LOG_VERBOSE,
307 "CrystalHD: Couldn't match fake_timestamp.\n");
312 /*****************************************************************************
313 * Video decoder API function definitions
314 ****************************************************************************/
316 static void flush(AVCodecContext *avctx)
318 CHDContext *priv = avctx->priv_data;
320 avctx->has_b_frames = 0;
321 priv->last_picture = -1;
322 priv->output_ready = 0;
323 priv->need_second_field = 0;
324 priv->skip_next_output = 0;
325 priv->decode_wait = BASE_WAIT;
327 av_frame_unref (priv->pic);
329 /* Flush mode 4 flushes all software and hardware buffers. */
330 DtsFlushInput(priv->dev, 4);
334 static av_cold int uninit(AVCodecContext *avctx)
336 CHDContext *priv = avctx->priv_data;
340 DtsStopDecoder(device);
341 DtsCloseDecoder(device);
342 DtsDeviceClose(device);
345 * Restore original extradata, so that if the decoder is
346 * reinitialised, the bitstream detection and filtering
347 * will work as expected.
349 if (priv->orig_extradata) {
350 av_free(avctx->extradata);
351 avctx->extradata = priv->orig_extradata;
352 avctx->extradata_size = priv->orig_extradata_size;
353 priv->orig_extradata = NULL;
354 priv->orig_extradata_size = 0;
357 av_parser_close(priv->parser);
359 av_bitstream_filter_close(priv->bsfc);
362 av_free(priv->sps_pps_buf);
364 av_frame_free (&priv->pic);
367 OpaqueList *node = priv->head;
369 OpaqueList *next = node->next;
379 static av_cold int init(AVCodecContext *avctx)
383 BC_INFO_CRYSTAL version;
384 BC_INPUT_FORMAT format = {
387 .OptFlags = 0x80000000 | vdecFrameRate59_94 | 0x40,
388 .width = avctx->width,
389 .height = avctx->height,
392 BC_MEDIA_SUBTYPE subtype;
394 uint32_t mode = DTS_PLAYBACK_MODE |
395 DTS_LOAD_FILE_PLAY_FW |
396 DTS_SKIP_TX_CHK_CPB |
397 DTS_PLAYBACK_DROP_RPT_MODE |
398 DTS_SINGLE_THREADED_MODE |
399 DTS_DFLT_RESOLUTION(vdecRESOLUTION_1080p23_976);
401 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD Init for %s\n",
404 avctx->pix_fmt = AV_PIX_FMT_YUYV422;
406 /* Initialize the library */
407 priv = avctx->priv_data;
409 priv->is_nal = avctx->extradata_size > 0 && *(avctx->extradata) == 1;
410 priv->last_picture = -1;
411 priv->decode_wait = BASE_WAIT;
412 priv->pic = av_frame_alloc();
414 subtype = id2subtype(priv, avctx->codec->id);
416 case BC_MSUBTYPE_AVC1:
421 /* Back up the extradata so it can be restored at close time. */
422 priv->orig_extradata = av_malloc(avctx->extradata_size);
423 if (!priv->orig_extradata) {
424 av_log(avctx, AV_LOG_ERROR,
425 "Failed to allocate copy of extradata\n");
426 return AVERROR(ENOMEM);
428 priv->orig_extradata_size = avctx->extradata_size;
429 memcpy(priv->orig_extradata, avctx->extradata, avctx->extradata_size);
431 priv->bsfc = av_bitstream_filter_init("h264_mp4toannexb");
433 av_log(avctx, AV_LOG_ERROR,
434 "Cannot open the h264_mp4toannexb BSF!\n");
435 return AVERROR_BSF_NOT_FOUND;
437 av_bitstream_filter_filter(priv->bsfc, avctx, NULL, &dummy_p,
438 &dummy_int, NULL, 0, 0);
440 subtype = BC_MSUBTYPE_H264;
442 case BC_MSUBTYPE_H264:
443 format.startCodeSz = 4;
445 case BC_MSUBTYPE_VC1:
446 case BC_MSUBTYPE_WVC1:
447 case BC_MSUBTYPE_WMV3:
448 case BC_MSUBTYPE_WMVA:
449 case BC_MSUBTYPE_MPEG2VIDEO:
450 case BC_MSUBTYPE_DIVX:
451 case BC_MSUBTYPE_DIVX311:
452 format.pMetaData = avctx->extradata;
453 format.metaDataSz = avctx->extradata_size;
456 av_log(avctx, AV_LOG_ERROR, "CrystalHD: Unknown codec name\n");
457 return AVERROR(EINVAL);
459 format.mSubtype = subtype;
462 format.bEnableScaling = 1;
463 format.ScalingParams.sWidth = priv->sWidth;
466 /* Get a decoder instance */
467 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: starting up\n");
468 // Initialize the Link and Decoder devices
469 ret = DtsDeviceOpen(&priv->dev, mode);
470 if (ret != BC_STS_SUCCESS) {
471 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: DtsDeviceOpen failed\n");
475 ret = DtsCrystalHDVersion(priv->dev, &version);
476 if (ret != BC_STS_SUCCESS) {
477 av_log(avctx, AV_LOG_VERBOSE,
478 "CrystalHD: DtsCrystalHDVersion failed\n");
481 priv->is_70012 = version.device == 0;
483 if (priv->is_70012 &&
484 (subtype == BC_MSUBTYPE_DIVX || subtype == BC_MSUBTYPE_DIVX311)) {
485 av_log(avctx, AV_LOG_VERBOSE,
486 "CrystalHD: BCM70012 doesn't support MPEG4-ASP/DivX/Xvid\n");
490 ret = DtsSetInputFormat(priv->dev, &format);
491 if (ret != BC_STS_SUCCESS) {
492 av_log(avctx, AV_LOG_ERROR, "CrystalHD: SetInputFormat failed\n");
496 ret = DtsOpenDecoder(priv->dev, BC_STREAM_TYPE_ES);
497 if (ret != BC_STS_SUCCESS) {
498 av_log(avctx, AV_LOG_ERROR, "CrystalHD: DtsOpenDecoder failed\n");
502 ret = DtsSetColorSpace(priv->dev, OUTPUT_MODE422_YUY2);
503 if (ret != BC_STS_SUCCESS) {
504 av_log(avctx, AV_LOG_ERROR, "CrystalHD: DtsSetColorSpace failed\n");
507 ret = DtsStartDecoder(priv->dev);
508 if (ret != BC_STS_SUCCESS) {
509 av_log(avctx, AV_LOG_ERROR, "CrystalHD: DtsStartDecoder failed\n");
512 ret = DtsStartCapture(priv->dev);
513 if (ret != BC_STS_SUCCESS) {
514 av_log(avctx, AV_LOG_ERROR, "CrystalHD: DtsStartCapture failed\n");
518 if (avctx->codec->id == AV_CODEC_ID_H264) {
519 priv->parser = av_parser_init(avctx->codec->id);
521 av_log(avctx, AV_LOG_WARNING,
522 "Cannot open the h.264 parser! Interlaced h.264 content "
523 "will not be detected reliably.\n");
524 priv->parser->flags = PARSER_FLAG_COMPLETE_FRAMES;
526 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: Init complete.\n");
536 static inline CopyRet copy_frame(AVCodecContext *avctx,
537 BC_DTS_PROC_OUT *output,
538 void *data, int *got_frame)
541 BC_DTS_STATUS decoder_status = { 0, };
542 uint8_t trust_interlaced;
545 CHDContext *priv = avctx->priv_data;
546 int64_t pkt_pts = AV_NOPTS_VALUE;
547 uint8_t pic_type = 0;
549 uint8_t bottom_field = (output->PicInfo.flags & VDEC_FLAG_BOTTOMFIELD) ==
550 VDEC_FLAG_BOTTOMFIELD;
551 uint8_t bottom_first = !!(output->PicInfo.flags & VDEC_FLAG_BOTTOM_FIRST);
553 int width = output->PicInfo.width;
554 int height = output->PicInfo.height;
556 uint8_t *src = output->Ybuff;
561 if (output->PicInfo.timeStamp != 0) {
562 OpaqueList *node = opaque_list_pop(priv, output->PicInfo.timeStamp);
564 pkt_pts = node->reordered_opaque;
565 pic_type = node->pic_type;
569 * We will encounter a situation where a timestamp cannot be
570 * popped if a second field is being returned. In this case,
571 * each field has the same timestamp and the first one will
572 * cause it to be popped. To keep subsequent calculations
573 * simple, pic_type should be set a FIELD value - doesn't
574 * matter which, but I chose BOTTOM.
576 pic_type = PICT_BOTTOM_FIELD;
578 av_log(avctx, AV_LOG_VERBOSE, "output \"pts\": %"PRIu64"\n",
579 output->PicInfo.timeStamp);
580 av_log(avctx, AV_LOG_VERBOSE, "output picture type %d\n",
584 ret = DtsGetDriverStatus(priv->dev, &decoder_status);
585 if (ret != BC_STS_SUCCESS) {
586 av_log(avctx, AV_LOG_ERROR,
587 "CrystalHD: GetDriverStatus failed: %u\n", ret);
592 * For most content, we can trust the interlaced flag returned
593 * by the hardware, but sometimes we can't. These are the
594 * conditions under which we can trust the flag:
596 * 1) It's not h.264 content
597 * 2) The UNKNOWN_SRC flag is not set
598 * 3) We know we're expecting a second field
599 * 4) The hardware reports this picture and the next picture
600 * have the same picture number.
602 * Note that there can still be interlaced content that will
603 * fail this check, if the hardware hasn't decoded the next
604 * picture or if there is a corruption in the stream. (In either
605 * case a 0 will be returned for the next picture number)
607 trust_interlaced = avctx->codec->id != AV_CODEC_ID_H264 ||
608 !(output->PicInfo.flags & VDEC_FLAG_UNKNOWN_SRC) ||
609 priv->need_second_field ||
610 (decoder_status.picNumFlags & ~0x40000000) ==
611 output->PicInfo.picture_number;
614 * If we got a false negative for trust_interlaced on the first field,
615 * we will realise our mistake here when we see that the picture number is that
616 * of the previous picture. We cannot recover the frame and should discard the
617 * second field to keep the correct number of output frames.
619 if (output->PicInfo.picture_number == priv->last_picture && !priv->need_second_field) {
620 av_log(avctx, AV_LOG_WARNING,
621 "Incorrectly guessed progressive frame. Discarding second field\n");
622 /* Returning without providing a picture. */
626 interlaced = (output->PicInfo.flags & VDEC_FLAG_INTERLACED_SRC) &&
629 if (!trust_interlaced && (decoder_status.picNumFlags & ~0x40000000) == 0) {
630 av_log(avctx, AV_LOG_VERBOSE,
631 "Next picture number unknown. Assuming progressive frame.\n");
634 av_log(avctx, AV_LOG_VERBOSE, "Interlaced state: %d | trust_interlaced %d\n",
635 interlaced, trust_interlaced);
637 if (priv->pic->data[0] && !priv->need_second_field)
638 av_frame_unref(priv->pic);
640 priv->need_second_field = interlaced && !priv->need_second_field;
642 if (!priv->pic->data[0]) {
643 if (ff_get_buffer(avctx, priv->pic, AV_GET_BUFFER_FLAG_REF) < 0)
647 bwidth = av_image_get_linesize(avctx->pix_fmt, width, 0);
648 if (priv->is_70012) {
653 else if (width <= 1280)
656 sStride = av_image_get_linesize(avctx->pix_fmt, pStride, 0);
661 dStride = priv->pic->linesize[0];
662 dst = priv->pic->data[0];
664 av_log(priv->avctx, AV_LOG_VERBOSE, "CrystalHD: Copying out frame\n");
672 av_log(priv->avctx, AV_LOG_VERBOSE, "Interlaced: bottom field\n");
675 av_log(priv->avctx, AV_LOG_VERBOSE, "Interlaced: top field\n");
679 for (sY = 0; sY < height; dY++, sY++) {
680 memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth);
684 av_image_copy_plane(dst, dStride, src, sStride, bwidth, height);
687 priv->pic->interlaced_frame = interlaced;
689 priv->pic->top_field_first = !bottom_first;
691 priv->pic->pkt_pts = pkt_pts;
693 if (!priv->need_second_field) {
695 if ((ret = av_frame_ref(data, priv->pic)) < 0) {
701 * Two types of PAFF content have been observed. One form causes the
702 * hardware to return a field pair and the other individual fields,
703 * even though the input is always individual fields. We must skip
704 * copying on the next decode() call to maintain pipeline length in
707 if (!interlaced && (output->PicInfo.flags & VDEC_FLAG_UNKNOWN_SRC) &&
708 (pic_type == PICT_TOP_FIELD || pic_type == PICT_BOTTOM_FIELD)) {
709 av_log(priv->avctx, AV_LOG_VERBOSE, "Fieldpair from two packets.\n");
710 return RET_SKIP_NEXT_COPY;
714 * The logic here is purely based on empirical testing with samples.
715 * If we need a second field, it could come from a second input packet,
716 * or it could come from the same field-pair input packet at the current
717 * field. In the first case, we should return and wait for the next time
718 * round to get the second field, while in the second case, we should
719 * ask the decoder for it immediately.
721 * Testing has shown that we are dealing with the fieldpair -> two fields
722 * case if the VDEC_FLAG_UNKNOWN_SRC is not set or if the input picture
723 * type was PICT_FRAME (in this second case, the flag might still be set)
725 return priv->need_second_field &&
726 (!(output->PicInfo.flags & VDEC_FLAG_UNKNOWN_SRC) ||
727 pic_type == PICT_FRAME) ?
728 RET_COPY_NEXT_FIELD : RET_OK;
732 static inline CopyRet receive_frame(AVCodecContext *avctx,
733 void *data, int *got_frame)
736 BC_DTS_PROC_OUT output = {
737 .PicInfo.width = avctx->width,
738 .PicInfo.height = avctx->height,
740 CHDContext *priv = avctx->priv_data;
741 HANDLE dev = priv->dev;
745 // Request decoded data from the driver
746 ret = DtsProcOutputNoCopy(dev, OUTPUT_PROC_TIMEOUT, &output);
747 if (ret == BC_STS_FMT_CHANGE) {
748 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: Initial format change\n");
749 avctx->width = output.PicInfo.width;
750 avctx->height = output.PicInfo.height;
751 switch ( output.PicInfo.aspect_ratio ) {
752 case vdecAspectRatioSquare:
753 avctx->sample_aspect_ratio = (AVRational) { 1, 1};
755 case vdecAspectRatio12_11:
756 avctx->sample_aspect_ratio = (AVRational) { 12, 11};
758 case vdecAspectRatio10_11:
759 avctx->sample_aspect_ratio = (AVRational) { 10, 11};
761 case vdecAspectRatio16_11:
762 avctx->sample_aspect_ratio = (AVRational) { 16, 11};
764 case vdecAspectRatio40_33:
765 avctx->sample_aspect_ratio = (AVRational) { 40, 33};
767 case vdecAspectRatio24_11:
768 avctx->sample_aspect_ratio = (AVRational) { 24, 11};
770 case vdecAspectRatio20_11:
771 avctx->sample_aspect_ratio = (AVRational) { 20, 11};
773 case vdecAspectRatio32_11:
774 avctx->sample_aspect_ratio = (AVRational) { 32, 11};
776 case vdecAspectRatio80_33:
777 avctx->sample_aspect_ratio = (AVRational) { 80, 33};
779 case vdecAspectRatio18_11:
780 avctx->sample_aspect_ratio = (AVRational) { 18, 11};
782 case vdecAspectRatio15_11:
783 avctx->sample_aspect_ratio = (AVRational) { 15, 11};
785 case vdecAspectRatio64_33:
786 avctx->sample_aspect_ratio = (AVRational) { 64, 33};
788 case vdecAspectRatio160_99:
789 avctx->sample_aspect_ratio = (AVRational) {160, 99};
791 case vdecAspectRatio4_3:
792 avctx->sample_aspect_ratio = (AVRational) { 4, 3};
794 case vdecAspectRatio16_9:
795 avctx->sample_aspect_ratio = (AVRational) { 16, 9};
797 case vdecAspectRatio221_1:
798 avctx->sample_aspect_ratio = (AVRational) {221, 1};
801 return RET_COPY_AGAIN;
802 } else if (ret == BC_STS_SUCCESS) {
804 if (output.PoutFlags & BC_POUT_FLAGS_PIB_VALID) {
805 if (priv->last_picture == -1) {
807 * Init to one less, so that the incrementing code doesn't
808 * need to be special-cased.
810 priv->last_picture = output.PicInfo.picture_number - 1;
813 if (avctx->codec->id == AV_CODEC_ID_MPEG4 &&
814 output.PicInfo.timeStamp == 0 && priv->bframe_bug) {
815 av_log(avctx, AV_LOG_VERBOSE,
816 "CrystalHD: Not returning packed frame twice.\n");
817 priv->last_picture++;
818 DtsReleaseOutputBuffs(dev, NULL, FALSE);
819 return RET_COPY_AGAIN;
822 print_frame_info(priv, &output);
824 if (priv->last_picture + 1 < output.PicInfo.picture_number) {
825 av_log(avctx, AV_LOG_WARNING,
826 "CrystalHD: Picture Number discontinuity\n");
828 * Have we lost frames? If so, we need to shrink the
829 * pipeline length appropriately.
831 * XXX: I have no idea what the semantics of this situation
832 * are so I don't even know if we've lost frames or which
835 * In any case, only warn the first time.
837 priv->last_picture = output.PicInfo.picture_number - 1;
840 copy_ret = copy_frame(avctx, &output, data, got_frame);
841 if (*got_frame > 0) {
842 avctx->has_b_frames--;
843 priv->last_picture++;
844 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: Pipeline length: %u\n",
845 avctx->has_b_frames);
849 * An invalid frame has been consumed.
851 av_log(avctx, AV_LOG_ERROR, "CrystalHD: ProcOutput succeeded with "
853 avctx->has_b_frames--;
856 DtsReleaseOutputBuffs(dev, NULL, FALSE);
859 } else if (ret == BC_STS_BUSY) {
860 return RET_COPY_AGAIN;
862 av_log(avctx, AV_LOG_ERROR, "CrystalHD: ProcOutput failed %d\n", ret);
868 static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
871 BC_DTS_STATUS decoder_status = { 0, };
873 CHDContext *priv = avctx->priv_data;
874 HANDLE dev = priv->dev;
875 uint8_t *in_data = avpkt->data;
876 int len = avpkt->size;
878 uint8_t pic_type = 0;
880 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: decode_frame\n");
882 if (avpkt->size == 7 && !priv->bframe_bug) {
884 * The use of a drop frame triggers the bug
886 av_log(avctx, AV_LOG_INFO,
887 "CrystalHD: Enabling work-around for packed b-frame bug\n");
888 priv->bframe_bug = 1;
889 } else if (avpkt->size == 8 && priv->bframe_bug) {
891 * Delay frames don't trigger the bug
893 av_log(avctx, AV_LOG_INFO,
894 "CrystalHD: Disabling work-around for packed b-frame bug\n");
895 priv->bframe_bug = 0;
899 int32_t tx_free = (int32_t)DtsTxFreeSize(dev);
905 ret = av_bitstream_filter_filter(priv->bsfc, avctx, NULL,
907 avpkt->data, len, 0);
915 H264Context *h = priv->parser->priv_data;
917 index = av_parser_parse2(priv->parser, avctx, &pout, &psize,
918 in_data, len, avctx->internal->pkt->pts,
919 avctx->internal->pkt->dts, 0);
921 av_log(avctx, AV_LOG_WARNING,
922 "CrystalHD: Failed to parse h.264 packet to "
923 "detect interlacing.\n");
924 } else if (index != len) {
925 av_log(avctx, AV_LOG_WARNING,
926 "CrystalHD: Failed to parse h.264 packet "
927 "completely. Interlaced frames may be "
928 "incorrectly detected.\n");
930 av_log(avctx, AV_LOG_VERBOSE,
931 "CrystalHD: parser picture type %d\n",
932 h->picture_structure);
933 pic_type = h->picture_structure;
936 av_log(avctx, AV_LOG_WARNING,
937 "CrystalHD: mp4toannexb filter failed to filter "
938 "packet. Interlaced frames may be incorrectly "
943 if (len < tx_free - 1024) {
945 * Despite being notionally opaque, either libcrystalhd or
946 * the hardware itself will mangle pts values that are too
947 * small or too large. The docs claim it should be in units
948 * of 100ns. Given that we're nominally dealing with a black
949 * box on both sides, any transform we do has no guarantee of
950 * avoiding mangling so we need to build a mapping to values
951 * we know will not be mangled.
953 uint64_t pts = opaque_list_push(priv, avctx->internal->pkt->pts, pic_type);
958 return AVERROR(ENOMEM);
960 av_log(priv->avctx, AV_LOG_VERBOSE,
961 "input \"pts\": %"PRIu64"\n", pts);
962 ret = DtsProcInput(dev, in_data, len, pts, 0);
966 if (ret == BC_STS_BUSY) {
967 av_log(avctx, AV_LOG_WARNING,
968 "CrystalHD: ProcInput returned busy\n");
970 return AVERROR(EBUSY);
971 } else if (ret != BC_STS_SUCCESS) {
972 av_log(avctx, AV_LOG_ERROR,
973 "CrystalHD: ProcInput failed: %u\n", ret);
976 avctx->has_b_frames++;
978 av_log(avctx, AV_LOG_WARNING, "CrystalHD: Input buffer full\n");
979 len = 0; // We didn't consume any bytes.
982 av_log(avctx, AV_LOG_INFO, "CrystalHD: No more input data\n");
985 if (priv->skip_next_output) {
986 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: Skipping next output.\n");
987 priv->skip_next_output = 0;
988 avctx->has_b_frames--;
992 ret = DtsGetDriverStatus(dev, &decoder_status);
993 if (ret != BC_STS_SUCCESS) {
994 av_log(avctx, AV_LOG_ERROR, "CrystalHD: GetDriverStatus failed\n");
999 * No frames ready. Don't try to extract.
1001 * Empirical testing shows that ReadyListCount can be a damn lie,
1002 * and ProcOut still fails when count > 0. The same testing showed
1003 * that two more iterations were needed before ProcOutput would
1006 if (priv->output_ready < 2) {
1007 if (decoder_status.ReadyListCount != 0)
1008 priv->output_ready++;
1010 av_log(avctx, AV_LOG_INFO, "CrystalHD: Filling pipeline.\n");
1012 } else if (decoder_status.ReadyListCount == 0) {
1014 * After the pipeline is established, if we encounter a lack of frames
1015 * that probably means we're not giving the hardware enough time to
1016 * decode them, so start increasing the wait time at the end of a
1020 priv->decode_wait += WAIT_UNIT;
1021 av_log(avctx, AV_LOG_INFO, "CrystalHD: No frames ready. Returning\n");
1026 rec_ret = receive_frame(avctx, data, got_frame);
1027 if (rec_ret == RET_OK && *got_frame == 0) {
1029 * This case is for when the encoded fields are stored
1030 * separately and we get a separate avpkt for each one. To keep
1031 * the pipeline stable, we should return nothing and wait for
1032 * the next time round to grab the second field.
1033 * H.264 PAFF is an example of this.
1035 av_log(avctx, AV_LOG_VERBOSE, "Returning after first field.\n");
1036 avctx->has_b_frames--;
1037 } else if (rec_ret == RET_COPY_NEXT_FIELD) {
1039 * This case is for when the encoded fields are stored in a
1040 * single avpkt but the hardware returns then separately. Unless
1041 * we grab the second field before returning, we'll slip another
1042 * frame in the pipeline and if that happens a lot, we're sunk.
1043 * So we have to get that second field now.
1044 * Interlaced mpeg2 and vc1 are examples of this.
1046 av_log(avctx, AV_LOG_VERBOSE, "Trying to get second field.\n");
1048 usleep(priv->decode_wait);
1049 ret = DtsGetDriverStatus(dev, &decoder_status);
1050 if (ret == BC_STS_SUCCESS &&
1051 decoder_status.ReadyListCount > 0) {
1052 rec_ret = receive_frame(avctx, data, got_frame);
1053 if ((rec_ret == RET_OK && *got_frame > 0) ||
1054 rec_ret == RET_ERROR)
1058 av_log(avctx, AV_LOG_VERBOSE, "CrystalHD: Got second field.\n");
1059 } else if (rec_ret == RET_SKIP_NEXT_COPY) {
1061 * Two input packets got turned into a field pair. Gawd.
1063 av_log(avctx, AV_LOG_VERBOSE,
1064 "Don't output on next decode call.\n");
1065 priv->skip_next_output = 1;
1068 * If rec_ret == RET_COPY_AGAIN, that means that either we just handled
1069 * a FMT_CHANGE event and need to go around again for the actual frame,
1070 * we got a busy status and need to try again, or we're dealing with
1071 * packed b-frames, where the hardware strangely returns the packed
1072 * p-frame twice. We choose to keep the second copy as it carries the
1075 } while (rec_ret == RET_COPY_AGAIN);
1076 usleep(priv->decode_wait);
1081 #if CONFIG_H264_CRYSTALHD_DECODER
1082 static AVClass h264_class = {
1084 av_default_item_name,
1086 LIBAVUTIL_VERSION_INT,
1089 AVCodec ff_h264_crystalhd_decoder = {
1090 .name = "h264_crystalhd",
1091 .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (CrystalHD acceleration)"),
1092 .type = AVMEDIA_TYPE_VIDEO,
1093 .id = AV_CODEC_ID_H264,
1094 .priv_data_size = sizeof(CHDContext),
1098 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
1100 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1101 .priv_class = &h264_class,
1105 #if CONFIG_MPEG2_CRYSTALHD_DECODER
1106 static AVClass mpeg2_class = {
1108 av_default_item_name,
1110 LIBAVUTIL_VERSION_INT,
1113 AVCodec ff_mpeg2_crystalhd_decoder = {
1114 .name = "mpeg2_crystalhd",
1115 .long_name = NULL_IF_CONFIG_SMALL("MPEG-2 Video (CrystalHD acceleration)"),
1116 .type = AVMEDIA_TYPE_VIDEO,
1117 .id = AV_CODEC_ID_MPEG2VIDEO,
1118 .priv_data_size = sizeof(CHDContext),
1122 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
1124 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1125 .priv_class = &mpeg2_class,
1129 #if CONFIG_MPEG4_CRYSTALHD_DECODER
1130 static AVClass mpeg4_class = {
1132 av_default_item_name,
1134 LIBAVUTIL_VERSION_INT,
1137 AVCodec ff_mpeg4_crystalhd_decoder = {
1138 .name = "mpeg4_crystalhd",
1139 .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 Part 2 (CrystalHD acceleration)"),
1140 .type = AVMEDIA_TYPE_VIDEO,
1141 .id = AV_CODEC_ID_MPEG4,
1142 .priv_data_size = sizeof(CHDContext),
1146 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
1148 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1149 .priv_class = &mpeg4_class,
1153 #if CONFIG_MSMPEG4_CRYSTALHD_DECODER
1154 static AVClass msmpeg4_class = {
1155 "msmpeg4_crystalhd",
1156 av_default_item_name,
1158 LIBAVUTIL_VERSION_INT,
1161 AVCodec ff_msmpeg4_crystalhd_decoder = {
1162 .name = "msmpeg4_crystalhd",
1163 .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 Part 2 Microsoft variant version 3 (CrystalHD acceleration)"),
1164 .type = AVMEDIA_TYPE_VIDEO,
1165 .id = AV_CODEC_ID_MSMPEG4V3,
1166 .priv_data_size = sizeof(CHDContext),
1170 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL,
1172 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1173 .priv_class = &msmpeg4_class,
1177 #if CONFIG_VC1_CRYSTALHD_DECODER
1178 static AVClass vc1_class = {
1180 av_default_item_name,
1182 LIBAVUTIL_VERSION_INT,
1185 AVCodec ff_vc1_crystalhd_decoder = {
1186 .name = "vc1_crystalhd",
1187 .long_name = NULL_IF_CONFIG_SMALL("SMPTE VC-1 (CrystalHD acceleration)"),
1188 .type = AVMEDIA_TYPE_VIDEO,
1189 .id = AV_CODEC_ID_VC1,
1190 .priv_data_size = sizeof(CHDContext),
1194 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
1196 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1197 .priv_class = &vc1_class,
1201 #if CONFIG_WMV3_CRYSTALHD_DECODER
1202 static AVClass wmv3_class = {
1204 av_default_item_name,
1206 LIBAVUTIL_VERSION_INT,
1209 AVCodec ff_wmv3_crystalhd_decoder = {
1210 .name = "wmv3_crystalhd",
1211 .long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 9 (CrystalHD acceleration)"),
1212 .type = AVMEDIA_TYPE_VIDEO,
1213 .id = AV_CODEC_ID_WMV3,
1214 .priv_data_size = sizeof(CHDContext),
1218 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_DELAY,
1220 .pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_YUYV422, AV_PIX_FMT_NONE},
1221 .priv_class = &wmv3_class,