61 uint8_t *dest_cr,
int mb_x,
int mb_y)
64 int dc, dcu, dcv, y, i;
65 for (i = 0; i < 4; i++) {
66 dc = s->
dc_val[0][mb_x * 2 + (i & 1) + (mb_y * 2 + (i >> 1)) * s->
b8_stride];
71 for (y = 0; y < 8; y++) {
73 for (x = 0; x < 8; x++)
74 dest_y[x + (i & 1) * 8 + (y + (i >> 1) * 8) * linesize[0]] = dc / 8;
89 for (y = 0; y < 8; y++) {
91 for (x = 0; x < 8; x++) {
92 dest_cb[x + y * linesize[1]] = dcu / 8;
93 dest_cr[x + y * linesize[2]] = dcv / 8;
103 for (y = 1; y < height - 1; y++) {
104 int prev_dc = data[0 + y *
stride];
106 for (x = 1; x < width - 1; x++) {
109 data[x + y *
stride] * 8 -
111 dc = (dc * 10923 + 32768) >> 16;
112 prev_dc = data[x + y *
stride];
118 for (x = 1; x < width - 1; x++) {
119 int prev_dc = data[x];
121 for (y = 1; y < height - 1; y++) {
125 data[x + y *
stride] * 8 -
126 data[x + (y + 1) * stride];
127 dc = (dc * 10923 + 32768) >> 16;
128 prev_dc = data[x + y *
stride];
140 int h,
int stride,
int is_luma)
151 for(b_y=0; b_y<
h; b_y++){
154 for(b_x=0; b_x<w; b_x++){
155 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->
mb_stride;
159 color= dc[b_x + b_y*
stride];
163 dist[b_x + b_y*
stride][1]= distance >= 0 ? b_x-distance : 9999;
167 for(b_x=w-1; b_x>=0; b_x--){
168 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->
mb_stride;
172 color= dc[b_x + b_y*
stride];
176 dist[b_x + b_y*
stride][0]= distance >= 0 ? distance-b_x : 9999;
179 for(b_x=0; b_x<w; b_x++){
182 for(b_y=0; b_y<
h; b_y++){
183 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->
mb_stride;
187 color= dc[b_x + b_y*
stride];
191 dist[b_x + b_y*
stride][3]= distance >= 0 ? b_y-distance : 9999;
195 for(b_y=h-1; b_y>=0; b_y--){
196 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->
mb_stride;
200 color= dc[b_x + b_y*
stride];
204 dist[b_x + b_y*
stride][2]= distance >= 0 ? distance-b_y : 9999;
208 for (b_y = 0; b_y <
h; b_y++) {
209 for (b_x = 0; b_x < w; b_x++) {
210 int mb_index, error, j;
211 int64_t guess, weight_sum;
212 mb_index = (b_x >> is_luma) + (b_y >> is_luma) * s->
mb_stride;
222 for (j = 0; j < 4; j++) {
223 int64_t
weight = 256 * 256 * 256 * 16 /
FFMAX(dist[b_x + b_y*stride][j], 1);
224 guess += weight*(int64_t)col[b_x + b_y*stride][j];
227 guess = (guess + weight_sum / 2) / weight_sum;
228 dc[b_x + b_y *
stride] = guess;
243 int h,
int stride,
int is_luma)
245 int b_x, b_y, mvx_stride, mvy_stride;
248 mvx_stride >>= is_luma;
249 mvy_stride *= mvx_stride;
251 for (b_y = 0; b_y <
h; b_y++) {
252 for (b_x = 0; b_x < w - 1; b_x++) {
260 int offset = b_x * 8 + b_y * stride * 8;
261 int16_t *left_mv = s->
cur_pic.
motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
262 int16_t *right_mv = s->
cur_pic.
motion_val[0][mvy_stride * b_y + mvx_stride * (b_x + 1)];
263 if (!(left_damage || right_damage))
265 if ((!left_intra) && (!right_intra) &&
266 FFABS(left_mv[0] - right_mv[0]) +
267 FFABS(left_mv[1] + right_mv[1]) < 2)
270 for (y = 0; y < 8; y++) {
273 a = dst[offset + 7 + y *
stride] - dst[offset + 6 + y *
stride];
274 b = dst[offset + 8 + y *
stride] - dst[offset + 7 + y *
stride];
275 c = dst[offset + 9 + y *
stride] - dst[offset + 8 + y *
stride];
285 if (!(left_damage && right_damage))
289 dst[offset + 7 + y *
stride] = cm[dst[offset + 7 + y *
stride] + ((d * 7) >> 4)];
290 dst[offset + 6 + y *
stride] = cm[dst[offset + 6 + y *
stride] + ((d * 5) >> 4)];
291 dst[offset + 5 + y *
stride] = cm[dst[offset + 5 + y *
stride] + ((d * 3) >> 4)];
292 dst[offset + 4 + y *
stride] = cm[dst[offset + 4 + y *
stride] + ((d * 1) >> 4)];
295 dst[offset + 8 + y *
stride] = cm[dst[offset + 8 + y *
stride] - ((d * 7) >> 4)];
296 dst[offset + 9 + y *
stride] = cm[dst[offset + 9 + y *
stride] - ((d * 5) >> 4)];
297 dst[offset + 10+ y *
stride] = cm[dst[offset + 10 + y *
stride] - ((d * 3) >> 4)];
298 dst[offset + 11+ y *
stride] = cm[dst[offset + 11 + y *
stride] - ((d * 1) >> 4)];
313 int b_x, b_y, mvx_stride, mvy_stride;
316 mvx_stride >>= is_luma;
317 mvy_stride *= mvx_stride;
319 for (b_y = 0; b_y < h - 1; b_y++) {
320 for (b_x = 0; b_x < w; b_x++) {
328 int offset = b_x * 8 + b_y * stride * 8;
331 int16_t *bottom_mv = s->
cur_pic.
motion_val[0][mvy_stride * (b_y + 1) + mvx_stride * b_x];
333 if (!(top_damage || bottom_damage))
336 if ((!top_intra) && (!bottom_intra) &&
337 FFABS(top_mv[0] - bottom_mv[0]) +
338 FFABS(top_mv[1] + bottom_mv[1]) < 2)
341 for (x = 0; x < 8; x++) {
344 a = dst[offset + x + 7 *
stride] - dst[offset + x + 6 *
stride];
345 b = dst[offset + x + 8 *
stride] - dst[offset + x + 7 *
stride];
346 c = dst[offset + x + 9 *
stride] - dst[offset + x + 8 *
stride];
356 if (!(top_damage && bottom_damage))
360 dst[offset + x + 7 *
stride] = cm[dst[offset + x + 7 *
stride] + ((d * 7) >> 4)];
361 dst[offset + x + 6 *
stride] = cm[dst[offset + x + 6 *
stride] + ((d * 5) >> 4)];
362 dst[offset + x + 5 *
stride] = cm[dst[offset + x + 5 *
stride] + ((d * 3) >> 4)];
363 dst[offset + x + 4 *
stride] = cm[dst[offset + x + 4 *
stride] + ((d * 1) >> 4)];
366 dst[offset + x + 8 *
stride] = cm[dst[offset + x + 8 *
stride] - ((d * 7) >> 4)];
367 dst[offset + x + 9 *
stride] = cm[dst[offset + x + 9 *
stride] - ((d * 5) >> 4)];
368 dst[offset + x + 10 *
stride] = cm[dst[offset + x + 10 *
stride] - ((d * 3) >> 4)];
369 dst[offset + x + 11 *
stride] = cm[dst[offset + x + 11 *
stride] - ((d * 1) >> 4)];
381 #define MV_UNCHANGED 1
385 int i,
depth, num_avail;
386 int mb_x, mb_y, mot_step, mot_stride;
398 for (i = 0; i < mb_width * mb_height; i++) {
414 const int mot_index= (mb_x + mb_y*mot_stride) * mot_step;
422 num_avail <= mb_width / 2) {
423 for (mb_y = 0; mb_y < mb_height; mb_y++) {
424 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
425 const int mb_xy = mb_x + mb_y * s->
mb_stride;
442 for (depth = 0; ; depth++) {
443 int changed,
pass, none_left;
447 for (pass = 0; (changed || pass < 2) && pass < 10; pass++) {
452 for (mb_y = 0; mb_y < mb_height; mb_y++) {
453 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
454 const int mb_xy = mb_x + mb_y * s->
mb_stride;
455 int mv_predictor[8][2] = { { 0 } };
459 int best_score = 256 * 256 * 256 * 64;
461 const int mot_index = (mb_x + mb_y * mot_stride) * mot_step;
462 int prev_x = 0, prev_y = 0, prev_ref = 0;
464 if ((mb_x ^ mb_y ^ pass) & 1)
473 if (mb_x > 0 && fixed[mb_xy - 1] ==
MV_FROZEN)
475 if (mb_x + 1 < mb_width && fixed[mb_xy + 1] ==
MV_FROZEN)
477 if (mb_y > 0 && fixed[mb_xy - mb_stride] ==
MV_FROZEN)
479 if (mb_y + 1 < mb_height && fixed[mb_xy + mb_stride] ==
MV_FROZEN)
485 if (mb_x > 0 && fixed[mb_xy - 1 ] ==
MV_CHANGED)
487 if (mb_x + 1 < mb_width && fixed[mb_xy + 1 ] ==
MV_CHANGED)
489 if (mb_y > 0 && fixed[mb_xy - mb_stride] ==
MV_CHANGED)
491 if (mb_y + 1 < mb_height && fixed[mb_xy + mb_stride] ==
MV_CHANGED)
493 if (j == 0 && pass > 1)
498 if (mb_x > 0 && fixed[mb_xy - 1]) {
499 mv_predictor[pred_count][0] =
501 mv_predictor[pred_count][1] =
507 if (mb_x + 1 < mb_width && fixed[mb_xy + 1]) {
508 mv_predictor[pred_count][0] =
510 mv_predictor[pred_count][1] =
516 if (mb_y > 0 && fixed[mb_xy - mb_stride]) {
517 mv_predictor[pred_count][0] =
519 mv_predictor[pred_count][1] =
525 if (mb_y + 1<mb_height && fixed[mb_xy + mb_stride]) {
526 mv_predictor[pred_count][0] =
528 mv_predictor[pred_count][1] =
537 if (pred_count > 1) {
538 int sum_x = 0, sum_y = 0, sum_r = 0;
539 int max_x, max_y, min_x, min_y, max_r, min_r;
541 for (j = 0; j < pred_count; j++) {
542 sum_x += mv_predictor[j][0];
543 sum_y += mv_predictor[j][1];
545 if (j && ref[j] != ref[j - 1])
546 goto skip_mean_and_median;
550 mv_predictor[pred_count][0] = sum_x / j;
551 mv_predictor[pred_count][1] = sum_y / j;
552 ref[pred_count] = sum_r / j;
555 if (pred_count >= 3) {
556 min_y = min_x = min_r = 99999;
557 max_y = max_x = max_r = -99999;
559 min_x = min_y = max_x = max_y = min_r = max_r = 0;
561 for (j = 0; j < pred_count; j++) {
562 max_x =
FFMAX(max_x, mv_predictor[j][0]);
563 max_y =
FFMAX(max_y, mv_predictor[j][1]);
564 max_r =
FFMAX(max_r, ref[j]);
565 min_x =
FFMIN(min_x, mv_predictor[j][0]);
566 min_y =
FFMIN(min_y, mv_predictor[j][1]);
567 min_r =
FFMIN(min_r, ref[j]);
569 mv_predictor[pred_count + 1][0] = sum_x - max_x - min_x;
570 mv_predictor[pred_count + 1][1] = sum_y - max_y - min_y;
571 ref[pred_count + 1] = sum_r - max_r - min_r;
573 if (pred_count == 4) {
574 mv_predictor[pred_count + 1][0] /= 2;
575 mv_predictor[pred_count + 1][1] /= 2;
576 ref[pred_count + 1] /= 2;
581 skip_mean_and_median:
590 mv_predictor[pred_count][0] = prev_x;
591 mv_predictor[pred_count][1] = prev_y;
592 ref[pred_count] = prev_ref;
595 for (j = 0; j < pred_count; j++) {
599 mb_x * 16 + mb_y * 16 * linesize[0];
602 s->
mv[0][0][0] = mv_predictor[j][0];
604 s->
mv[0][0][1] = mv_predictor[j][1];
613 if (mb_x > 0 && fixed[mb_xy - 1]) {
615 for (k = 0; k < 16; k++)
616 score +=
FFABS(src[k * linesize[0] - 1] -
617 src[k * linesize[0]]);
619 if (mb_x + 1 < mb_width && fixed[mb_xy + 1]) {
621 for (k = 0; k < 16; k++)
622 score +=
FFABS(src[k * linesize[0] + 15] -
623 src[k * linesize[0] + 16]);
625 if (mb_y > 0 && fixed[mb_xy - mb_stride]) {
627 for (k = 0; k < 16; k++)
628 score +=
FFABS(src[k - linesize[0]] - src[k]);
630 if (mb_y + 1 < mb_height && fixed[mb_xy + mb_stride]) {
632 for (k = 0; k < 16; k++)
633 score +=
FFABS(src[k + linesize[0] * 15] -
634 src[k + linesize[0] * 16]);
637 if (score <= best_score) {
642 score_sum += best_score;
643 s->
mv[0][0][0] = mv_predictor[best_pred][0];
644 s->
mv[0][0][1] = mv_predictor[best_pred][1];
646 for (i = 0; i < mot_step; i++)
647 for (j = 0; j < mot_step; j++) {
656 if (s->
mv[0][0][0] != prev_x || s->
mv[0][0][1] != prev_y) {
668 for (i = 0; i < mb_width * mb_height; i++) {
678 int is_intra_likely, i, j, undamaged_count, skip_amount, mb_x, mb_y;
687 for (i = 0; i < s->
mb_num; i++) {
694 if (undamaged_count < 5)
703 skip_amount =
FFMAX(undamaged_count / 50, 1);
707 for (mb_y = 0; mb_y < s->
mb_height - 1; mb_y++) {
708 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
710 const int mb_xy = mb_x + mb_y * s->
mb_stride;
718 if ((j % skip_amount) != 0)
724 mb_x * 16 + mb_y * 16 * linesize[0];
726 mb_x * 16 + mb_y * 16 * linesize[0];
733 is_intra_likely += s->
mecc.
sad[0](
NULL, last_mb_ptr, mb_ptr,
736 is_intra_likely -= s->
mecc.
sad[0](
NULL, last_mb_ptr,
737 last_mb_ptr + linesize[0] * 16,
748 return is_intra_likely > 0;
788 int endx,
int endy,
int status)
790 const int start_i = av_clip(startx + starty * s->
mb_width, 0, s->
mb_num - 1);
791 const int end_i = av_clip(endx + endy * s->
mb_width, 0, s->
mb_num);
799 if (start_i > end_i || start_xy > end_xy) {
801 "internal error, slice end before start\n");
829 (end_xy - start_xy) *
sizeof(
uint8_t));
832 for (i = start_xy; i < end_xy; i++)
859 int *linesize =
NULL;
860 int i, mb_x, mb_y, error, error_type, dc_error, mv_error, ac_error;
862 int threshold_part[4] = { 100, 100, 100 };
877 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
912 for (i = 0; i < 2; i++) {
921 for (i = 0; i < 2; i++) {
932 for (mb_y = 0; mb_y < s->
mb_height; mb_y++) {
933 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
944 for (error_type = 1; error_type <= 3; error_type++) {
947 for (i = s->
mb_num - 1; i >= 0; i--) {
951 if (error & (1 << error_type))
953 if (error & (8 << error_type))
969 for (i = s->
mb_num - 1; i >= 0; i--) {
1017 for (error_type = 1; error_type <= 3; error_type++) {
1018 for (i = s->
mb_num - 1; i >= 0; i--) {
1024 if (error & (1 << error_type))
1028 if (distance < threshold_part[error_type - 1])
1031 if (distance < threshold)
1043 for (i = 0; i < s->
mb_num; i++) {
1057 for (i = 0; i < s->
mb_num; i++) {
1067 dc_error = ac_error = mv_error = 0;
1068 for (i = 0; i < s->
mb_num; i++) {
1084 for (i = 0; i < s->
mb_num; i++) {
1090 if (is_intra_likely)
1099 for (i = 0; i < s->
mb_num; i++) {
1106 for (mb_y = 0; mb_y < s->
mb_height; mb_y++) {
1107 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
1108 const int mb_xy = mb_x + mb_y * s->
mb_stride;
1124 int mb_index = mb_x * 2 + mb_y * 2 * s->
b8_stride;
1127 for (j = 0; j < 4; j++) {
1138 mv_dir, mv_type, &s->
mv, mb_x, mb_y, 0, 0);
1144 for (mb_y = 0; mb_y < s->
mb_height; mb_y++) {
1145 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
1146 int xy = mb_x * 2 + mb_y * 2 * s->
b8_stride;
1147 const int mb_xy = mb_x + mb_y * s->
mb_stride;
1194 for (mb_y = 0; mb_y < s->
mb_height; mb_y++) {
1195 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
1196 int dc, dcu, dcv, y,
n;
1198 uint8_t *dest_y, *dest_cb, *dest_cr;
1199 const int mb_xy = mb_x + mb_y * s->
mb_stride;
1209 dest_y = s->
cur_pic.
f->
data[0] + mb_x * 16 + mb_y * 16 * linesize[0];
1210 dest_cb = s->
cur_pic.
f->
data[1] + mb_x * 8 + mb_y * 8 * linesize[1];
1211 dest_cr = s->
cur_pic.
f->
data[2] + mb_x * 8 + mb_y * 8 * linesize[2];
1214 for (n = 0; n < 4; n++) {
1216 for (y = 0; y < 8; y++) {
1218 for (x = 0; x < 8; x++)
1219 dc += dest_y[x + (n & 1) * 8 +
1220 (y + (n >> 1) * 8) * linesize[0]];
1222 dc_ptr[(n & 1) + (n >> 1) * s->
b8_stride] = (dc + 4) >> 3;
1229 for (y = 0; y < 8; y++) {
1231 for (x = 0; x < 8; x++) {
1232 dcu += dest_cb[x + y * linesize[1]];
1233 dcv += dest_cr[x + y * linesize[2]];
1252 for (mb_y = 0; mb_y < s->
mb_height; mb_y++) {
1253 for (mb_x = 0; mb_x < s->
mb_width; mb_x++) {
1254 uint8_t *dest_y, *dest_cb, *dest_cr;
1255 const int mb_xy = mb_x + mb_y * s->
mb_stride;
1265 dest_y = s->
cur_pic.
f->
data[0] + mb_x * 16 + mb_y * 16 * linesize[0];
1266 dest_cb = s->
cur_pic.
f->
data[1] + mb_x * 8 + mb_y * 8 * linesize[1];
1267 dest_cr = s->
cur_pic.
f->
data[2] + mb_x * 8 + mb_y * 8 * linesize[2];
1269 dest_cb = dest_cr =
NULL;
1271 put_dc(s, dest_y, dest_cb, dest_cr, mb_x, mb_y);
1299 for (i = 0; i < s->
mb_num; i++) {
1311 for (i = 0; i < 2; i++) {
av_cold void ff_me_cmp_init(MECmpContext *c, AVCodecContext *avctx)
const struct AVCodec * codec
#define avpriv_atomic_int_add_and_fetch
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
ptrdiff_t const GLvoid * data
AVBufferRef * motion_val_buf[2]
#define AV_LOG_WARNING
Something somehow does not look correct.
static void put_dc(ERContext *s, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int mb_x, int mb_y)
Replace the current MB with a flat dc-only version.
void ff_er_frame_end(ERContext *s)
static void v_block_filter(ERContext *s, uint8_t *dst, int w, int h, int stride, int is_luma)
simple vertical deblocking filter used for error resilience
static void filter181(int16_t *data, int width, int height, int stride)
#define VP_START
< current MB is the first after a resync marker
static void guess_mv(ERContext *s)
void ff_thread_await_progress(ThreadFrame *f, int n, int field)
Wait for earlier decoding threads to finish reference pictures.
struct AVHWAccel * hwaccel
Hardware accelerator in use.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
AVBufferRef * ref_index_buf[2]
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Multithreading support functions.
#define avpriv_atomic_int_set
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
#define AV_CODEC_CAP_HWACCEL_VDPAU
Codec can export data for HW decoding (VDPAU).
void(* decode_mb)(struct MpegEncContext *s)
Called for every Macroblock in a slice.
static void guess_dc(ERContext *s, int16_t *dc, int w, int h, int stride, int is_luma)
guess the dc of blocks which do not have an undamaged dc
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size
Libavcodec version macros.
int width
width and height of the video frame
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void ff_er_add_slice(ERContext *s, int startx, int starty, int endx, int endy, int status)
Add a slice.
static const uint16_t mask[17]
int active_thread_type
Which multithreading methods are in use by the codec.
int error_concealment
error concealment flags
int capabilities
Codec capabilities.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
void(* decode_mb)(void *opaque, int ref, int mv_dir, int mv_type, int(*mv)[2][4][2], int mb_x, int mb_y, int mb_intra, int mb_skipped)
static const uint8_t offset[127][2]
static float distance(float x, float y, int band)
uint8_t * error_status_table
common internal API header
useful rectangle filling function
enum AVPictureType pict_type
Picture type of the frame.
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
#define FF_THREAD_SLICE
Decode more than one part of a single frame at once.
#define AV_EF_EXPLODE
abort decoding on minor error detection
int skip_top
Number of macroblock rows at the top which are skipped.
preferred ID for MPEG-1/2 video decoding
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
#define MV_TYPE_16X16
1 vector for the whole mb
#define AV_LOG_INFO
Standard information.
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
uint8_t * data
The data buffer.
AVBufferRef * av_buffer_allocz(int size)
Same as av_buffer_alloc(), except the returned buffer will be initialized to zero.
static int weight(int i, int blen, int offset)
int skip_bottom
Number of macroblock rows at the bottom which are skipped.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define FF_EC_FAVOR_INTER
GLint GLenum GLboolean GLsizei stride
static int ref[MAX_W *MAX_W]
static int is_intra_more_likely(ERContext *s)
int16_t(*[2] motion_val)[2]
static int er_supported(ERContext *s)
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> dc
void ff_er_frame_start(ERContext *s)
static void h_block_filter(ERContext *s, uint8_t *dst, int w, int h, int stride, int is_luma)
simple horizontal deblocking filter used for error resilience
#define av_malloc_array(a, b)
int(* decode_slice)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
Callback for each slice.
#define MV_TYPE_8X8
4 vectors (H.263, MPEG-4 4MV)
static void set_mv_strides(ERContext *s, int *mv_step, int *stride)