FFmpeg: libavcodec/bitpacked_dec.c Source File
Go to the documentation of this file. 1 /*
2 * Unpack bit-packed streams to formats supported by FFmpeg
3 * Copyright (c) 2017 Savoir-faire Linux, Inc
4 *
5 * This file is part of FFmpeg.
6 *
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.
11 *
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.
16 *
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
20 */
21
22 /* Development sponsored by CBC/Radio-Canada */
23
24 /**
25 * @file
26 * Bitpacked
27 */
28
33
37 };
38
39 /* For this format, it's a simple passthrough */
42 {
44
45 /* there is no need to copy as the data already match
46 * a known pixel format */
50 }
51
57 }
58
59 return 0;
60 }
61
64 {
66 uint64_t packet_size = (uint64_t)avpkt->
size * 8;
70
74
77
80
83 y = (uint16_t*)(
frame->data[0] +
i *
frame->linesize[0]);
84 u = (uint16_t*)(
frame->data[1] +
i *
frame->linesize[1]);
85 v = (uint16_t*)(
frame->data[2] +
i *
frame->linesize[2]);
86
87 for (j = 0; j < avctx->
width; j += 2) {
88 *
u++ = (
src[0] << 2) | (
src[1] >> 6);
89 *v++ = ((
src[2] << 6) | (
src[3] >> 2)) & 0x3ff;
90 *y++ = ((
src[1] << 4) | (
src[2] >> 4)) & 0x3ff;
91 *y++ = ((
src[3] << 8) | (
src[4])) & 0x3ff;
93 }
94 }
95
96 return 0;
97 }
98
100 {
102
105
113 else
115 } else {
117 }
118
119 return 0;
120 }
121
124 {
126 int buf_size = avpkt->
size;
127 int res;
128
130 if (res)
131 return res;
132
133 *got_frame = 1;
134 return buf_size;
135
136 }
137
139 .
p.
name =
"bitpacked",
147 .codec_tags = (const uint32_t []){
148 MKTAG(
'U',
'Y',
'V',
'Y'),
150 },
151 };
Filter the word "frame" indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
This structure describes decoded (raw) audio or video data.
#define u(width, name, range_min, range_max)
static int bitpacked_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
AVCodec p
The public AVCodec.
#define FF_CODEC_TAGS_END
FFCodec.codec_tags termination value.
#define FF_CODEC_DECODE_CB(func)
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
static av_cold int bitpacked_init_decoder(AVCodecContext *avctx)
#define CODEC_LONG_NAME(str)
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
static int bitpacked_decode_yuv422p10(AVCodecContext *avctx, AVFrame *frame, const AVPacket *avpkt)
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
const FFCodec ff_bitpacked_decoder
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
#define AV_PIX_FMT_YUV422P10
int(* init)(AVBSFContext *ctx)
int av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], const uint8_t *src, enum AVPixelFormat pix_fmt, int width, int height, int align)
Setup the data pointers and linesizes based on the specified image parameters and the provided array.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define i(width, name, range_min, range_max)
const char * name
Name of the codec implementation.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
static int bitpacked_decode_uyvy422(AVCodecContext *avctx, AVFrame *frame, const AVPacket *avpkt)
@ AV_PIX_FMT_UYVY422
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
main external API structure.
int(* decode)(AVCodecContext *avctx, AVFrame *frame, const AVPacket *pkt)
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
This structure stores compressed data.
int width
picture width / height.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define MKTAG(a, b, c, d)
Generated on Wed Nov 19 2025 19:21:49 for FFmpeg by
doxygen
1.8.17