46 s->
llviddsp.
diff_int16((uint16_t *)dst, (
const uint16_t *)src0, (
const uint16_t *)src1, s->
n - 1, w);
56 for (i = 0; i < w; i++) {
57 const int temp = src[i];
63 for (i = 0; i < 32; i++) {
64 const int temp = src[i];
72 const uint16_t *src16 = (
const uint16_t *)src;
73 uint16_t *dst16 = ( uint16_t *)dst;
75 for (i = 0; i < w; i++) {
76 const int temp = src16[i];
77 dst16[i] = temp - left;
82 for (i = 0; i < 16; i++) {
83 const int temp = src16[i];
84 dst16[i] = temp - left;
95 int *red,
int *green,
int *blue,
105 for (i = 0; i <
FFMIN(w, 4); i++) {
106 const int rt = src[i * 4 +
R];
107 const int gt = src[i * 4 +
G];
108 const int bt = src[i * 4 +
B];
109 const int at = src[i * 4 +
A];
110 dst[i * 4 +
R] = rt -
r;
111 dst[i * 4 +
G] = gt -
g;
112 dst[i * 4 +
B] = bt -
b;
113 dst[i * 4 +
A] = at -
a;
122 *red = src[(w - 1) * 4 +
R];
123 *green = src[(w - 1) * 4 +
G];
124 *blue = src[(w - 1) * 4 +
B];
125 *alpha = src[(w - 1) * 4 +
A];
130 int *red,
int *green,
int *blue)
137 for (i = 0; i <
FFMIN(w, 16); i++) {
138 const int rt = src[i * 3 + 0];
139 const int gt = src[i * 3 + 1];
140 const int bt = src[i * 3 + 2];
141 dst[i * 3 + 0] = rt -
r;
142 dst[i * 3 + 1] = gt -
g;
143 dst[i * 3 + 2] = bt -
b;
151 *red = src[(w - 1) * 3 + 0];
152 *green = src[(w - 1) * 3 + 1];
153 *blue = src[(w - 1) * 3 + 2];
171 for (i = 0; i <
n;) {
175 for (; i < n && len[i] == val && repeat < 255; i++)
178 av_assert0(val < 32 && val >0 && repeat < 256 && repeat>0);
181 buf[index++] = repeat;
183 buf[index++] = val | (repeat << 5);
199 for (i = 0; i <
count; i++) {
224 #define STATS_OUT_SIZE 21*MAX_N*3 + 4
234 #if FF_API_CODED_FRAME
240 #if FF_API_PRIVATE_OPT
322 #if FF_API_PRIVATE_OPT
332 "context=1 is not compatible with "
333 "2 pass huffyuv encoding\n");
341 "Error: YV12 is not supported by huffyuv; use "
342 "vcodec=ffvhuff or format=422p\n");
345 #if FF_API_PRIVATE_OPT
348 "Error: per-frame huffman tables are not supported "
349 "by huffyuv; use vcodec=ffvhuff\n");
354 "Error: ver>2 is not supported "
355 "by huffyuv; use vcodec=ffvhuff\n");
361 "using huffyuv 2.2.0 or newer interlacing flag\n");
365 av_log(avctx,
AV_LOG_ERROR,
"Ver > 3 is under development, files encoded with it may not be decodable with future versions!!!\n"
366 "Use vstrict=-2 / -strict -2 to use it anyway.\n");
372 "Error: RGB is incompatible with median predictor\n");
396 for (i = 0; i < 4; i++)
397 for (j = 0; j < s->
vlc_n; j++)
401 for (i = 0; i < 4; i++) {
404 for (j = 0; j < s->
vlc_n; j++) {
405 s->
stats[i][j] += strtol(p, &next, 0);
406 if (next == p)
return -1;
410 if (p[0] == 0 || p[1] == 0 || p[2] == 0)
break;
413 for (i = 0; i < 4; i++)
414 for (j = 0; j < s->
vlc_n; j++) {
417 s->
stats[i][j] = 100000000 / (d*d + 1);
427 for (i = 0; i < 4; i++) {
429 for (j = 0; j < s->
vlc_n; j++) {
431 s->
stats[i][j] = pels/(d*d + 1);
435 for (i = 0; i < 4; i++)
436 for (j = 0; j < s->
vlc_n; j++)
463 int y1 = y[2 * i + 1];\
470 for(i = 0; i <
count; i++) {
481 for (i = 0; i <
count; i++) {
493 for(i = 0; i <
count; i++) {
506 int i,
count = width/2;
514 int y0 = s->temp[0][width-1];
516 int y0 = s->temp16[0][width-1] & mask;
518 int y0 = s->temp16[0][width-1];
520 s->stats[plane][y0]++;
522 s->stats[plane][y0>>2]++;
524 put_bits(&s->pb, s->len[plane][y0], s->bits[plane][y0]);
526 put_bits(&s->pb, s->len[plane][y0>>2], s->bits[plane][y0>>2]);\
527 put_bits(&s->pb, 2, y0&3);
530 int y0 = s->temp[0][2 * i];\
531 int y1 = s->temp[0][2 * i + 1];
533 int y0 = s->temp16[0][2 * i] & mask;\
534 int y1 = s->temp16[0][2 * i + 1] & mask;
536 int y0 = s->temp16[0][2 * i];\
537 int y1 = s->temp16[0][2 * i + 1];
539 s->stats[plane][y0]++;\
540 s->stats[plane][y1]++;
542 s->stats[plane][y0>>2]++;\
543 s->stats[plane][y1>>2]++;
545 put_bits(&s->pb, s->len[plane][y0], s->bits[plane][y0]);\
546 put_bits(&s->pb, s->len[plane][y1], s->bits[plane][y1]);
548 put_bits(&s->pb, s->len[plane][y0>>2], s->bits[plane][y0>>2]);\
549 put_bits(&s->pb, 2, y0&3);\
550 put_bits(&s->pb, s->len[plane][y1>>2], s->bits[plane][y1>>2]);\
551 put_bits(&s->pb, 2, y1&3);
555 for (i = 0; i <
count; i++) {
568 for (i = 0; i <
count; i++) {
579 for (i = 0; i <
count; i++) {
588 }
else if (s->
bps <= 14) {
591 for (i = 0; i <
count; i++) {
604 for (i = 0; i <
count; i++) {
615 for (i = 0; i <
count; i++) {
626 for (i = 0; i <
count; i++) {
639 for (i = 0; i <
count; i++) {
650 for (i = 0; i <
count; i++) {
676 int y0 = s->temp[0][2 * i];\
677 int y1 = s->temp[0][2 * i + 1];
682 put_bits(&s->pb, s->len[0][y0], s->bits[0][y0]);\
683 put_bits(&s->pb, s->len[0][y1], s->bits[0][y1]);
688 for (i = 0; i <
count; i++) {
697 for (i = 0; i <
count; i++) {
703 for (i = 0; i <
count; i++) {
716 4 * planes * count) {
722 int g = s->temp[0][planes == 3 ? 3 * i + 1 : 4 * i + G]; \
723 int b =(s->temp[0][planes == 3 ? 3 * i + 2 : 4 * i + B] - g) & 0xFF;\
724 int r =(s->temp[0][planes == 3 ? 3 * i + 0 : 4 * i + R] - g) & 0xFF;\
725 int a = s->temp[0][planes * i + A];
735 put_bits(&s->pb, s->len[1][g], s->bits[1][g]); \
736 put_bits(&s->pb, s->len[0][b], s->bits[0][b]); \
737 put_bits(&s->pb, s->len[2][r], s->bits[2][r]); \
739 put_bits(&s->pb, s->len[2][a], s->bits[2][a]);
743 for (i = 0; i <
count; i++) {
748 for (i = 0; i <
count; i++) {
754 for (i = 0; i <
count; i++) {
763 const AVFrame *pict,
int *got_packet)
767 const int width2 = s->
width>>1;
772 const AVFrame *
const p = pict;
773 int i, j,
size = 0, ret;
783 for (i = 0; i < 4; i++)
784 for (j = 0; j < s->
vlc_n; j++)
785 s->
stats[i][j] >>= 1;
792 int lefty, leftu, leftv, y, cy;
806 int lefttopy, lefttopu, lefttopv;
823 lefttopy = p->
data[0][3];
824 lefttopu = p->
data[1][1];
825 lefttopv = p->
data[2][1];
832 for (; y <
height; y++,cy++) {
842 if (y >= height)
break;
855 for (cy = y = 1; y <
height; y++, cy++) {
871 if (y >= height)
break;
898 const int fake_stride = -fake_ystride;
900 int leftr, leftg, leftb, lefta;
908 &leftr, &leftg, &leftb, &lefta);
911 for (y = 1; y < s->
height; y++) {
916 &leftr, &leftg, &leftb, &lefta);
919 &leftr, &leftg, &leftb, &lefta);
926 const int fake_stride = -fake_ystride;
928 int leftr, leftg, leftb;
936 &leftr, &leftg, &leftb);
939 for (y = 1; y < s->
height; y++) {
945 &leftr, &leftg, &leftb);
948 &leftr, &leftg, &leftb);
954 for (plane = 0; plane < 1 + 2*s->
chroma + s->
alpha; plane++) {
958 int fake_stride = fake_ystride;
960 if (s->
chroma && (plane == 1 || plane == 2)) {
963 fake_stride = plane == 1 ? fake_ustride : fake_vstride;
990 for (y = 1; y <
h; y++) {
1019 for (i = 0; i < 4; i++) {
1020 for (j = 0; j < s->
vlc_n; j++) {
1039 pkt->
size = size * 4;
1058 #define OFFSET(x) offsetof(HYuvContext, x)
1059 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1061 #define COMMON_OPTIONS \
1062 { "non_deterministic", "Allow multithreading for e.g. context=1 at the expense of determinism", \
1063 OFFSET(non_determ), AV_OPT_TYPE_BOOL, { .i64 = 1 }, \
1065 { "pred", "Prediction method", OFFSET(predictor), AV_OPT_TYPE_INT, { .i64 = LEFT }, LEFT, MEDIAN, VE, "pred" }, \
1066 { "left", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LEFT }, INT_MIN, INT_MAX, VE, "pred" }, \
1067 { "plane", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PLANE }, INT_MIN, INT_MAX, VE, "pred" }, \
1068 { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MEDIAN }, INT_MIN, INT_MAX, VE, "pred" }, \
1105 .priv_class = &normal_class,
1114 #if CONFIG_FFVHUFF_ENCODER
1115 AVCodec ff_ffvhuff_encoder = {
1125 .priv_class = &ff_class,
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
#define AV_CODEC_FLAG_INTERLACED_ME
interlaced motion estimation
void(* bswap_buf)(uint32_t *dst, const uint32_t *src, int w)
#define FF_COMPLIANCE_EXPERIMENTAL
Allow nonstandardized experimental things.
const struct AVCodec * codec
const char const char void * val
#define AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_YUVA422P9
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
static av_cold int encode_init(AVCodecContext *avctx)
ptrdiff_t const GLvoid * data
#define AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUVA422P10
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
#define LIBAVUTIL_VERSION_INT
packed RGB 8:8:8, 24bpp, RGBRGB...
static av_cold int init(AVCodecContext *avctx)
#define AV_PIX_FMT_GBRP10
static int encode_plane_bitstream(HYuvContext *s, int width, int plane)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
#define AV_PIX_FMT_YUV420P12
char * stats_in
pass2 encoding statistics input buffer Concatenated stuff from stats_out of pass1 should be placed he...
void(* diff_bytes)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, intptr_t w)
av_cold void ff_huffyuvencdsp_init(HuffYUVEncDSPContext *c)
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
#define AV_PIX_FMT_FLAG_ALPHA
The pixel format has an alpha channel.
static av_cold int end(AVCodecContext *avctx)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
void(* diff_int16)(uint16_t *dst, const uint16_t *src1, const uint16_t *src2, unsigned mask, int w)
#define AV_PIX_FMT_YUVA420P9
static void sub_median_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int w, int *left, int *left_top)
attribute_deprecated int context_model
#define AV_PIX_FMT_YUV444P16
static void sub_left_prediction_rgb24(HYuvContext *s, uint8_t *dst, uint8_t *src, int w, int *red, int *green, int *blue)
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define AV_PIX_FMT_YUV422P12
char * stats_out
pass1 encoding statistics output buffer
#define AV_PIX_FMT_YUVA420P16
#define AV_INPUT_BUFFER_MIN_SIZE
minimum encoding buffer size Used to avoid some checks during header writing.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
uint8_t len[4][MAX_VLC_N]
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
av_cold int ff_huffyuv_alloc_temp(HYuvContext *s)
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
static double alpha(void *priv, double x, double y)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
av_cold void ff_huffyuv_common_end(HYuvContext *s)
static const uint16_t mask[17]
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVClass ff_class
#define AV_PIX_FMT_YUVA444P16
int flags
AV_CODEC_FLAG_*.
const char * name
Name of the codec implementation.
#define AV_PIX_FMT_YUV444P10
static const AVClass normal_class
static const uint8_t offset[127][2]
huffyuv codec for libavcodec.
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
int flags
A combination of AV_PKT_FLAG values.
static int put_bits_count(PutBitContext *s)
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
uint64_t flags
Combination of AV_PIX_FMT_FLAG_...
#define AV_PIX_FMT_YUV422P9
uint8_t nb_components
The number of components each pixel has, (1-4)
enum AVPictureType pict_type
Picture type of the frame.
#define AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_GRAY16
AVCodec ff_huffyuv_encoder
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table, int n)
#define AV_PIX_FMT_YUVA444P10
static av_cold int encode_end(AVCodecContext *avctx)
#define AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_YUV420P16
#define AV_LOG_INFO
Standard information.
#define AV_PIX_FMT_YUV420P14
int ff_huff_gen_len_table(uint8_t *dst, const uint64_t *stats, int stats_size, int skip0)
static int sub_left_prediction(HYuvContext *s, uint8_t *dst, const uint8_t *src, int w, int left)
Libavcodec external API header.
static int encode_422_bitstream(HYuvContext *s, int offset, int count)
attribute_deprecated int prediction_method
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
static const AVOption ff_options[]
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
main external API structure.
BYTE int const BYTE int int int height
#define AV_PIX_FMT_YUV420P10
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Describe the class of an AVClass context structure.
huffman tree builder and VLC generator
static int encode_bgra_bitstream(HYuvContext *s, int count, int planes)
#define AV_PIX_FMT_YUV420P9
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.
static enum AVPixelFormat pix_fmts[]
void(* sub_hfyu_median_pred)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, intptr_t w, int *left, int *left_top)
Subtract HuffYUV's variant of median prediction.
#define AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_GBRP12
HuffYUVEncDSPContext hencdsp
#define AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV444P12
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static void diff_bytes(HYuvContext *s, uint8_t *dst, const uint8_t *src0, const uint8_t *src1, int w)
GLint GLenum GLboolean GLsizei stride
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal api header.
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
static int store_huffman_tables(HYuvContext *s, uint8_t *buf)
planar GBRA 4:4:4:4 32bpp
static int store_table(HYuvContext *s, const uint8_t *len, uint8_t *buf)
#define AV_CODEC_FLAG2_NO_OUTPUT
Skip bitstream encoding.
#define AV_PIX_FMT_YUVA444P9
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
static int encode_gray_bitstream(HYuvContext *s, int count)
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
static void sub_left_prediction_bgr32(HYuvContext *s, uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue, int *alpha)
av_cold void ff_huffyuv_common_init(AVCodecContext *avctx)
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
#define FF_ENABLE_DEPRECATION_WARNINGS
int key_frame
1 -> keyframe, 0-> not
int flags2
AV_CODEC_FLAG2_*.
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
uint32_t bits[4][MAX_VLC_N]
uint64_t stats[4][MAX_VLC_N]
void(* sub_hfyu_median_pred_int16)(uint16_t *dst, const uint16_t *src1, const uint16_t *src2, unsigned mask, int w, int *left, int *left_top)
static const AVOption normal_options[]
int depth
Number of bits in the component.
AVPixelFormat
Pixel format.
This structure stores compressed data.
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int strict_std_compliance
strictly follow the standard (MPEG4, ...).
#define AV_PIX_FMT_YUV422P16