libxavs.c
Go to the documentation of this file.
1 /*
2  * AVS encoding using the xavs library
3  * Copyright (C) 2010 Amanda, Y.N. Wu <amanda11192003@gmail.com>
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <math.h>
26 #include <stdint.h>
27 #include <float.h>
28 #include <xavs.h>
29 #include "avcodec.h"
30 #include "internal.h"
31 #include "libavutil/opt.h"
32 
33 #define END_OF_STREAM 0x001
34 
35 #define XAVS_PART_I8X8 0x002 /* Analyze i8x8 (requires 8x8 transform) */
36 #define XAVS_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */
37 #define XAVS_PART_B8X8 0x100 /* Analyze b16x8, b*/
38 
39 typedef struct XavsContext {
40  xavs_param_t params;
41  xavs_t *enc;
42  xavs_picture_t pic;
43  uint8_t *sei;
44  int sei_size;
47  float crf;
48  int cqp;
49  int b_bias;
50  float cplxblur;
52  int aud;
54  int mbtree;
56 } XavsContext;
57 
58 static void XAVS_log(void *p, int level, const char *fmt, va_list args)
59 {
60  static const int level_map[] = {
61  [XAVS_LOG_ERROR] = AV_LOG_ERROR,
62  [XAVS_LOG_WARNING] = AV_LOG_WARNING,
63  [XAVS_LOG_INFO] = AV_LOG_INFO,
64  [XAVS_LOG_DEBUG] = AV_LOG_DEBUG
65  };
66 
67  if (level < 0 || level > XAVS_LOG_DEBUG)
68  return;
69 
70  av_vlog(p, level_map[level], fmt, args);
71 }
72 
73 static int encode_nals(AVCodecContext *ctx, uint8_t *buf,
74  int size, xavs_nal_t *nals,
75  int nnal, int skip_sei)
76 {
77  XavsContext *x4 = ctx->priv_data;
78  uint8_t *p = buf;
79  int i, s;
80 
81  /* Write the SEI as part of the first frame. */
82  if (x4->sei_size > 0 && nnal > 0) {
83  memcpy(p, x4->sei, x4->sei_size);
84  p += x4->sei_size;
85  x4->sei_size = 0;
86  }
87 
88  for (i = 0; i < nnal; i++) {
89  /* Don't put the SEI in extradata. */
90  if (skip_sei && nals[i].i_type == NAL_SEI) {
91  x4->sei = av_malloc( 5 + nals[i].i_payload * 4 / 3 );
92  if (xavs_nal_encode(x4->sei, &x4->sei_size, 1, nals + i) < 0)
93  return -1;
94 
95  continue;
96  }
97  s = xavs_nal_encode(p, &size, 1, nals + i);
98  if (s < 0)
99  return -1;
100  p += s;
101  }
102 
103  return p - buf;
104 }
105 
106 static int XAVS_frame(AVCodecContext *ctx, uint8_t *buf,
107  int bufsize, void *data)
108 {
109  XavsContext *x4 = ctx->priv_data;
110  AVFrame *frame = data;
111  xavs_nal_t *nal;
112  int nnal, i;
113  xavs_picture_t pic_out;
114 
115  x4->pic.img.i_csp = XAVS_CSP_I420;
116  x4->pic.img.i_plane = 3;
117 
118  if (frame) {
119  for (i = 0; i < 3; i++) {
120  x4->pic.img.plane[i] = frame->data[i];
121  x4->pic.img.i_stride[i] = frame->linesize[i];
122  }
123 
124  x4->pic.i_pts = frame->pts;
125  x4->pic.i_type = XAVS_TYPE_AUTO;
126  }
127 
128  if (xavs_encoder_encode(x4->enc, &nal, &nnal,
129  frame? &x4->pic: NULL, &pic_out) < 0)
130  return -1;
131 
132  bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
133 
134  if (bufsize < 0)
135  return -1;
136 
137  if (!bufsize && !frame && !(x4->end_of_stream)){
138  buf[bufsize] = 0x0;
139  buf[bufsize+1] = 0x0;
140  buf[bufsize+2] = 0x01;
141  buf[bufsize+3] = 0xb1;
142  bufsize += 4;
144  return bufsize;
145  }
146  /* FIXME: libxavs now provides DTS */
147  /* but AVFrame doesn't have a field for it. */
148  x4->out_pic.pts = pic_out.i_pts;
149 
150  switch (pic_out.i_type) {
151  case XAVS_TYPE_IDR:
152  case XAVS_TYPE_I:
154  break;
155  case XAVS_TYPE_P:
157  break;
158  case XAVS_TYPE_B:
159  case XAVS_TYPE_BREF:
161  break;
162  }
163 
164  /* There is no IDR frame in AVS JiZhun */
165  /* Sequence header is used as a flag */
166  x4->out_pic.key_frame = pic_out.i_type == XAVS_TYPE_I;
167 
168  x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
169 
170  return bufsize;
171 }
172 
174 {
175  XavsContext *x4 = avctx->priv_data;
176 
177  av_freep(&avctx->extradata);
178  av_free(x4->sei);
179 
180  if (x4->enc)
181  xavs_encoder_close(x4->enc);
182 
183  return 0;
184 }
185 
186 static av_cold int XAVS_init(AVCodecContext *avctx)
187 {
188  XavsContext *x4 = avctx->priv_data;
189 
190  x4->sei_size = 0;
191  xavs_param_default(&x4->params);
192 
193  x4->params.pf_log = XAVS_log;
194  x4->params.p_log_private = avctx;
195  x4->params.i_keyint_max = avctx->gop_size;
196  if (avctx->bit_rate) {
197  x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
198  x4->params.rc.i_rc_method = XAVS_RC_ABR;
199  }
200  x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
201  x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
202  x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
203  if (avctx->flags & CODEC_FLAG_PASS2) {
204  x4->params.rc.b_stat_read = 1;
205  } else {
206 #if FF_API_X264_GLOBAL_OPTS
207  if (avctx->crf) {
208  x4->params.rc.i_rc_method = XAVS_RC_CRF;
209  x4->params.rc.f_rf_constant = avctx->crf;
210  } else if (avctx->cqp > -1) {
211  x4->params.rc.i_rc_method = XAVS_RC_CQP;
212  x4->params.rc.i_qp_constant = avctx->cqp;
213  }
214 #endif
215 
216  if (x4->crf >= 0) {
217  x4->params.rc.i_rc_method = XAVS_RC_CRF;
218  x4->params.rc.f_rf_constant = x4->crf;
219  } else if (x4->cqp >= 0) {
220  x4->params.rc.i_rc_method = XAVS_RC_CQP;
221  x4->params.rc.i_qp_constant = x4->cqp;
222  }
223  }
224 
225 #if FF_API_X264_GLOBAL_OPTS
226  if (avctx->bframebias)
227  x4->params.i_bframe_bias = avctx->bframebias;
228  if (avctx->deblockalpha)
229  x4->params.i_deblocking_filter_alphac0 = avctx->deblockalpha;
230  if (avctx->deblockbeta)
231  x4->params.i_deblocking_filter_beta = avctx->deblockbeta;
232  if (avctx->complexityblur >= 0)
233  x4->params.rc.f_complexity_blur = avctx->complexityblur;
234  if (avctx->directpred >= 0)
235  x4->params.analyse.i_direct_mv_pred = avctx->directpred;
236  if (avctx->partitions) {
237  if (avctx->partitions & XAVS_PART_I8X8)
238  x4->params.analyse.inter |= XAVS_ANALYSE_I8x8;
239  if (avctx->partitions & XAVS_PART_P8X8)
240  x4->params.analyse.inter |= XAVS_ANALYSE_PSUB16x16;
241  if (avctx->partitions & XAVS_PART_B8X8)
242  x4->params.analyse.inter |= XAVS_ANALYSE_BSUB16x16;
243  }
244  x4->params.rc.b_mb_tree = !!(avctx->flags2 & CODEC_FLAG2_MBTREE);
245  x4->params.b_aud = avctx->flags2 & CODEC_FLAG2_AUD;
246  x4->params.analyse.b_mixed_references = avctx->flags2 & CODEC_FLAG2_MIXED_REFS;
247  x4->params.analyse.b_fast_pskip = avctx->flags2 & CODEC_FLAG2_FASTPSKIP;
248  x4->params.analyse.b_weighted_bipred = avctx->flags2 & CODEC_FLAG2_WPRED;
249 #endif
250 
251  if (x4->aud >= 0)
252  x4->params.b_aud = x4->aud;
253  if (x4->mbtree >= 0)
254  x4->params.rc.b_mb_tree = x4->mbtree;
255  if (x4->direct_pred >= 0)
256  x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
257  if (x4->fast_pskip >= 0)
258  x4->params.analyse.b_fast_pskip = x4->fast_pskip;
259  if (x4->mixed_refs >= 0)
260  x4->params.analyse.b_mixed_references = x4->mixed_refs;
261  if (x4->b_bias != INT_MIN)
262  x4->params.i_bframe_bias = x4->b_bias;
263  if (x4->cplxblur >= 0)
264  x4->params.rc.f_complexity_blur = x4->cplxblur;
265 
266  x4->params.i_bframe = avctx->max_b_frames;
267  /* cabac is not included in AVS JiZhun Profile */
268  x4->params.b_cabac = 0;
269 
270  x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
271 
272  avctx->has_b_frames = !!avctx->max_b_frames;
273 
274  /* AVS doesn't allow B picture as reference */
275  /* The max allowed reference frame number of B is 2 */
276  x4->params.i_keyint_min = avctx->keyint_min;
277  if (x4->params.i_keyint_min > x4->params.i_keyint_max)
278  x4->params.i_keyint_min = x4->params.i_keyint_max;
279 
280  x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
281 
282  // x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
283 
284  x4->params.rc.i_qp_min = avctx->qmin;
285  x4->params.rc.i_qp_max = avctx->qmax;
286  x4->params.rc.i_qp_step = avctx->max_qdiff;
287 
288  x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
289  x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
290 
291  x4->params.i_frame_reference = avctx->refs;
292 
293  x4->params.i_width = avctx->width;
294  x4->params.i_height = avctx->height;
295  x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
296  x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
297  /* This is only used for counting the fps */
298  x4->params.i_fps_num = avctx->time_base.den;
299  x4->params.i_fps_den = avctx->time_base.num;
300  x4->params.analyse.inter = XAVS_ANALYSE_I8x8 |XAVS_ANALYSE_PSUB16x16| XAVS_ANALYSE_BSUB16x16;
301 
302  switch (avctx->me_method) {
303  case ME_EPZS:
304  x4->params.analyse.i_me_method = XAVS_ME_DIA;
305  break;
306  case ME_HEX:
307  x4->params.analyse.i_me_method = XAVS_ME_HEX;
308  break;
309  case ME_UMH:
310  x4->params.analyse.i_me_method = XAVS_ME_UMH;
311  break;
312  case ME_FULL:
313  x4->params.analyse.i_me_method = XAVS_ME_ESA;
314  break;
315  case ME_TESA:
316  x4->params.analyse.i_me_method = XAVS_ME_TESA;
317  break;
318  default:
319  x4->params.analyse.i_me_method = XAVS_ME_HEX;
320  }
321 
322  x4->params.analyse.i_me_range = avctx->me_range;
323  x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
324 
325  x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
326  /* AVS P2 only enables 8x8 transform */
327  x4->params.analyse.b_transform_8x8 = 1; //avctx->flags2 & CODEC_FLAG2_8X8DCT;
328 
329  x4->params.analyse.i_trellis = avctx->trellis;
330  x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
331 
332  if (avctx->level > 0)
333  x4->params.i_level_idc = avctx->level;
334 
335  x4->params.rc.f_rate_tolerance =
336  (float)avctx->bit_rate_tolerance/avctx->bit_rate;
337 
338  if ((avctx->rc_buffer_size) &&
339  (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
340  x4->params.rc.f_vbv_buffer_init =
341  (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
342  } else
343  x4->params.rc.f_vbv_buffer_init = 0.9;
344 
345  /* TAG:do we have MB tree RC method */
346  /* what is the RC method we are now using? Default NO */
347  x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
348  x4->params.rc.f_pb_factor = avctx->b_quant_factor;
349  x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
350 
351  x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
352  x4->params.i_log_level = XAVS_LOG_DEBUG;
353  x4->params.i_threads = avctx->thread_count;
354  x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
355 
356  if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
357  x4->params.b_repeat_headers = 0;
358 
359  x4->enc = xavs_encoder_open(&x4->params);
360  if (!x4->enc)
361  return -1;
362 
363  avctx->coded_frame = &x4->out_pic;
364  /* TAG: Do we have GLOBAL HEADER in AVS */
365  /* We Have PPS and SPS in AVS */
366  if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
367  xavs_nal_t *nal;
368  int nnal, s;
369 
370  s = xavs_encoder_headers(x4->enc, &nal, &nnal);
371 
372  avctx->extradata = av_malloc(s);
373  avctx->extradata_size = encode_nals(avctx, avctx->extradata, s, nal, nnal, 1);
374  }
375  return 0;
376 }
377 
378 #define OFFSET(x) offsetof(XavsContext, x)
379 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
380 static const AVOption options[] = {
381  { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE },
382  { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
383  { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, {INT_MIN}, INT_MIN, INT_MAX, VE },
384  { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE},
385  { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "direct-pred" },
386  { "none", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
387  { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
388  { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
389  { "auto", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
390  { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
391  { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
392  { "mixed-refs", "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, {-1}, -1, 1, VE },
393  { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
394  { NULL },
395 };
396 
397 static const AVClass class = {
398  .class_name = "libxavs",
399  .item_name = av_default_item_name,
400  .option = options,
402 };
403 
404 static const AVCodecDefault xavs_defaults[] = {
405  { "b", "0" },
406  { NULL },
407 };
408 
410  .name = "libxavs",
411  .type = AVMEDIA_TYPE_VIDEO,
412  .id = CODEC_ID_CAVS,
413  .priv_data_size = sizeof(XavsContext),
414  .init = XAVS_init,
415  .encode = XAVS_frame,
416  .close = XAVS_close,
417  .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
418  .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV420P, PIX_FMT_NONE },
419  .long_name = NULL_IF_CONFIG_SMALL("libxavs - the Chinese Audio Video Standard Encoder"),
420  .priv_class = &class,
421  .defaults = xavs_defaults,
422 };
423 
#define CODEC_CAP_AUTO_THREADS
Codec supports avctx->thread_count == 0 (auto).
Definition: avcodec.h:800
#define VE
Definition: libxavs.c:379
#define XAVS_PART_I8X8
Definition: libxavs.c:35
int size
Audio Video Frame.
Definition: avcodec.h:985
AVOption.
Definition: opt.h:244
#define CODEC_FLAG_INTERLACED_DCT
Use interlaced DCT.
Definition: avcodec.h:646
float qblur
amount of qscale smoothing over time (0.0-1.0)
Definition: avcodec.h:1483
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2000
int max_b_frames
maximum number of B-frames between non-B-frames Note: The output will be delayed by max_b_frames+1 re...
Definition: avcodec.h:1512
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:117
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition: avcodec.h:2343
xavs_t * enc
Definition: libxavs.c:41
int num
numerator
Definition: rational.h:44
AVOptions.
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1993
int end_of_stream
Definition: libxavs.c:46
static void XAVS_log(void *p, int level, const char *fmt, va_list args)
Definition: libxavs.c:58
#define CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:638
AVCodec.
Definition: avcodec.h:3189
static const AVOption options[]
Definition: libxavs.c:380
int scenechange_threshold
scene change detection threshold 0 is default, larger means fewer detected scene changes.
Definition: avcodec.h:2292
struct XavsContext XavsContext
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1398
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:147
static av_cold int XAVS_close(AVCodecContext *avctx)
Definition: libxavs.c:173
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:38
int bit_rate_tolerance
number of bits the bitstream is allowed to diverge from the reference.
Definition: avcodec.h:1348
uint8_t * sei
Definition: libxavs.c:43
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:64
#define av_cold
Definition: attributes.h:71
int me_range
maximum motion estimation search range in subpel units If 0 then no limit.
Definition: avcodec.h:2161
float b_quant_factor
qscale factor between IP and B-frames If > 0 then the last P-frame quantizer will be used (q= lastp_q...
Definition: avcodec.h:1521
int64_t pts
presentation timestamp in time_base units (time when frame should be shown to user) If AV_NOPTS_VALUE...
Definition: avcodec.h:1037
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1387
int me_cmp
motion estimation comparison function
Definition: avcodec.h:2048
const char data[16]
Definition: mxf.c:60
enhanced predictive zonal search
Definition: avcodec.h:514
#define FF_CMP_CHROMA
Definition: avcodec.h:2082
static int init(AVCodecParserContext *s)
Definition: h264_parser.c:336
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Definition: log.c:152
int chromaoffset
chroma qp offset from luma
Definition: avcodec.h:2674
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:1745
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
Definition: mem.c:137
#define CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition: avcodec.h:639
#define END_OF_STREAM
Definition: libxavs.c:33
int qmax
maximum quantizer
Definition: avcodec.h:1497
static av_cold int XAVS_init(AVCodecContext *avctx)
Definition: libxavs.c:186
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
int b_bias
Definition: libxavs.c:49
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1355
int rc_max_rate
maximum bitrate
Definition: avcodec.h:1816
const char * name
Name of the codec implementation.
Definition: avcodec.h:3196
float i_quant_factor
qscale factor between P and I-frames If > 0 then the last p frame quantizer will be used (q= lastp_q*...
Definition: avcodec.h:1840
int mixed_refs
Definition: libxavs.c:55
int fast_pskip
Definition: libxavs.c:53
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:1830
int direct_pred
Definition: libxavs.c:51
int refs
number of reference frames
Definition: avcodec.h:2667
static const AVCodecDefault xavs_defaults[]
Definition: libxavs.c:404
int bit_rate
the average bitrate
Definition: avcodec.h:1340
enum AVPictureType pict_type
Picture type of the frame, see ?_TYPE below.
Definition: avcodec.h:1029
int width
picture width / height.
Definition: avcodec.h:1408
int b_frame_strategy
Definition: avcodec.h:1527
int level
level
Definition: avcodec.h:2528
int quality
quality (between 1 (good) and FF_LAMBDA_MAX (bad))
Definition: avcodec.h:1057
int max_qdiff
maximum quantizer difference between frames
Definition: avcodec.h:1504
xavs_param_t params
Definition: libxavs.c:40
static int XAVS_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data)
Definition: libxavs.c:106
LIBAVUTIL_VERSION_INT
Definition: eval.c:50
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:2392
NULL
Definition: eval.c:50
float cplxblur
Definition: libxavs.c:50
external API header
int mbtree
Definition: libxavs.c:54
int linesize[AV_NUM_DATA_POINTERS]
Size, in bytes, of the data for each picture/channel plane.
Definition: avcodec.h:1008
av_default_item_name
Definition: dnxhdenc.c:43
main external API structure.
Definition: avcodec.h:1329
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:327
int qmin
minimum quantizer
Definition: avcodec.h:1490
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
int extradata_size
Definition: avcodec.h:1388
int sei_size
Definition: libxavs.c:44
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:64
Describe the class of an AVClass context structure.
Definition: log.h:33
#define CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition: avcodec.h:648
transformed exhaustive search algorithm
Definition: avcodec.h:519
float qcompress
amount of qscale change between easy & hard scenes (0.0-1.0)
Definition: avcodec.h:1482
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: avcodec.h:997
uint8_t level
Definition: svq3.c:123
int noise_reduction
noise reduction strength
Definition: avcodec.h:2322
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1417
int cqp
Definition: libxavs.c:48
#define XAVS_PART_B8X8
Definition: libxavs.c:37
PixelFormat
Pixel format.
Definition: pixfmt.h:62
common internal api header.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:125
uneven multi-hexagon search
Definition: avcodec.h:517
Bi-dir predicted.
Definition: avutil.h:298
int den
denominator
Definition: rational.h:45
int trellis
trellis RD quantization
Definition: avcodec.h:2690
void * priv_data
Definition: avcodec.h:1531
AVCodec ff_libxavs_encoder
Definition: libxavs.c:409
int key_frame
1 -> keyframe, 0-> not
Definition: avcodec.h:1022
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
Definition: avutil.h:250
int flags2
CODEC_FLAG2_*.
Definition: avcodec.h:2357
float crf
Definition: libxavs.c:47
Definition: h264.h:113
#define AV_LOG_INFO
Definition: log.h:119
#define CODEC_FLAG_PSNR
error[?] variables will be set during encoding.
Definition: avcodec.h:642
static int encode_nals(AVCodecContext *ctx, uint8_t *buf, int size, xavs_nal_t *nals, int nnal, int skip_sei)
Definition: libxavs.c:73
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:750
int me_method
Motion estimation algorithm used for video coding.
Definition: avcodec.h:1374
hexagon based search
Definition: avcodec.h:516
#define XAVS_PART_P8X8
Definition: libxavs.c:36
#define OFFSET(x)
Definition: libxavs.c:378
int aud
Definition: libxavs.c:52
int me_subpel_quality
subpel ME quality
Definition: avcodec.h:2124
AVFrame out_pic
Definition: libxavs.c:45
Predicted.
Definition: avutil.h:297
xavs_picture_t pic
Definition: libxavs.c:42
int keyint_min
minimum GOP size
Definition: avcodec.h:2660