2 * Unpack bit-packed streams to formats supported by FFmpeg
3 * Copyright (c) 2017 Savoir-faire Linux, Inc
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 /* Development sponsored by CBC/Radio-Canada */
32 #include "libavutil/imgutils.h"
34 struct BitpackedContext {
35 int (*decode)(AVCodecContext *avctx, AVFrame *frame,
39 /* For this format, it's a simple passthrough */
40 static int bitpacked_decode_uyvy422(AVCodecContext *avctx, AVFrame *frame,
45 /* there is no need to copy as the data already match
46 * a known pixel format */
47 frame->buf[0] = av_buffer_ref(avpkt->buf);
48 ret = av_image_fill_arrays(frame->data, frame->linesize, avpkt->data,
49 avctx->pix_fmt, avctx->width, avctx->height, 1);
51 av_buffer_unref(&frame->buf[0]);
58 static int bitpacked_decode_yuv422p10(AVCodecContext *avctx, AVFrame *frame,
61 uint64_t frame_size = (uint64_t)avctx->width * (uint64_t)avctx->height * 20;
62 uint64_t packet_size = (uint64_t)avpkt->size * 8;
67 ret = ff_get_buffer(avctx, frame, 0);
71 if (frame_size > packet_size)
72 return AVERROR_INVALIDDATA;
75 return AVERROR_PATCHWELCOME;
77 ret = init_get_bits(&bc, avpkt->data, avctx->width * avctx->height * 20);
81 for (i = 0; i < avctx->height; i++) {
82 y = (uint16_t*)(frame->data[0] + i * frame->linesize[0]);
83 u = (uint16_t*)(frame->data[1] + i * frame->linesize[1]);
84 v = (uint16_t*)(frame->data[2] + i * frame->linesize[2]);
86 for (j = 0; j < avctx->width; j += 2) {
87 *u++ = get_bits(&bc, 10);
88 *y++ = get_bits(&bc, 10);
89 *v++ = get_bits(&bc, 10);
90 *y++ = get_bits(&bc, 10);
97 static av_cold int bitpacked_init_decoder(AVCodecContext *avctx)
99 struct BitpackedContext *bc = avctx->priv_data;
101 if (!avctx->codec_tag || !avctx->width || !avctx->height)
102 return AVERROR_INVALIDDATA;
104 if (avctx->codec_tag == MKTAG('U', 'Y', 'V', 'Y')) {
105 if (avctx->bits_per_coded_sample == 16 &&
106 avctx->pix_fmt == AV_PIX_FMT_UYVY422)
107 bc->decode = bitpacked_decode_uyvy422;
108 else if (avctx->bits_per_coded_sample == 20 &&
109 avctx->pix_fmt == AV_PIX_FMT_YUV422P10)
110 bc->decode = bitpacked_decode_yuv422p10;
112 return AVERROR_INVALIDDATA;
114 return AVERROR_INVALIDDATA;
120 static int bitpacked_decode(AVCodecContext *avctx, void *data, int *got_frame,
123 struct BitpackedContext *bc = avctx->priv_data;
124 int buf_size = avpkt->size;
125 AVFrame *frame = data;
128 frame->pict_type = AV_PICTURE_TYPE_I;
129 frame->key_frame = 1;
131 res = bc->decode(avctx, frame, avpkt);
140 AVCodec ff_bitpacked_decoder = {
142 .long_name = NULL_IF_CONFIG_SMALL("Bitpacked"),
143 .type = AVMEDIA_TYPE_VIDEO,
144 .id = AV_CODEC_ID_BITPACKED,
145 .priv_data_size = sizeof(struct BitpackedContext),
146 .init = bitpacked_init_decoder,
147 .decode = bitpacked_decode,
148 .capabilities = AV_CODEC_CAP_EXPERIMENTAL,