Searched refs:best_rd (Results 1 - 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | snowenc.c | 903 static av_always_inline int check_block(SnowContext *s, int mb_x, int mb_y, int p[3], int intra, uint8_t (*obmc_edged)[MB_SIZE * 2], int *best_rd){ in check_block() argument 933 if(rd < *best_rd){ in check_block() 934 *best_rd= rd; in check_block() 944 static av_always_inline int check_block_inter(SnowContext *s, int mb_x, int mb_y, int p0, int p1, uint8_t (*obmc_edged)[MB_SIZE * 2], int *best_rd){ in check_block_inter() argument 946 return check_block(s, mb_x, mb_y, p, 0, obmc_edged, best_rd); in check_block_inter() 949 static av_always_inline int check_4block_inter(SnowContext *s, int mb_x, int mb_y, int p0, int p1, int ref, int *best_rd){ in check_4block_inter() argument 983 if(rd < *best_rd){ in check_4block_inter() 984 *best_rd= rd; in check_4block_inter() 1019 int best_rd= INT_MAX, ref_rd; in iterative_me() local 1103 check_block(s, mb_x, mb_y, color0, 1, obmc_edged, &best_rd); in iterative_me() 1186 int best_rd, init_rd; iterative_me() local [all...] |
H A D | mpegvideo_enc.c | 1223 int64_t best_rd = INT64_MAX; in estimate_best_b_count() local 1343 if (rd < best_rd) { in estimate_best_b_count() 1344 best_rd = rd; in estimate_best_b_count()
|
Completed in 9 milliseconds