Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * This file is part of FFmpeg. | ||
3 | * | ||
4 | * FFmpeg is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * FFmpeg is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with FFmpeg; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | |||
19 | #include "libavutil/avassert.h" | ||
20 | #include "libavutil/mem.h" | ||
21 | #include "error_resilience.h" | ||
22 | #include "mpegvideo.h" | ||
23 | #include "mpegvideodec.h" | ||
24 | #include "mpeg_er.h" | ||
25 | |||
26 | 33723 | static void set_erpic(ERPicture *dst, const MPVPicture *src) | |
27 | { | ||
28 | int i; | ||
29 | |||
30 | 33723 | memset(dst, 0, sizeof(*dst)); | |
31 |
2/2✓ Branch 0 taken 314 times.
✓ Branch 1 taken 33409 times.
|
33723 | if (!src) { |
32 | 314 | dst->f = NULL; | |
33 | 314 | dst->tf = NULL; | |
34 | 314 | return; | |
35 | } | ||
36 | |||
37 | 33409 | dst->f = src->f; | |
38 | 33409 | dst->progress = &src->progress; | |
39 | |||
40 |
2/2✓ Branch 0 taken 66818 times.
✓ Branch 1 taken 33409 times.
|
100227 | for (i = 0; i < 2; i++) { |
41 | 66818 | dst->motion_val[i] = src->motion_val[i]; | |
42 | 66818 | dst->ref_index[i] = src->ref_index[i]; | |
43 | } | ||
44 | |||
45 | 33409 | dst->mb_type = src->mb_type; | |
46 | 33409 | dst->field_picture = src->field_picture; | |
47 | } | ||
48 | |||
49 | 11241 | void ff_mpeg_er_frame_start(MpegEncContext *s) | |
50 | { | ||
51 | 11241 | ERContext *er = &s->er; | |
52 | |||
53 | 11241 | set_erpic(&er->cur_pic, s->cur_pic.ptr); | |
54 | 11241 | set_erpic(&er->next_pic, s->next_pic.ptr); | |
55 | 11241 | set_erpic(&er->last_pic, s->last_pic.ptr); | |
56 | |||
57 | 11241 | er->pp_time = s->pp_time; | |
58 | 11241 | er->pb_time = s->pb_time; | |
59 | 11241 | er->quarter_sample = s->quarter_sample; | |
60 | 11241 | er->partitioned_frame = s->partitioned_frame; | |
61 | |||
62 | 11241 | ff_er_frame_start(er); | |
63 | 11241 | } | |
64 | |||
65 | 59282 | static void mpeg_er_decode_mb(void *opaque, int ref, int mv_dir, int mv_type, | |
66 | int (*mv)[2][4][2], int mb_x, int mb_y, | ||
67 | int mb_intra, int mb_skipped) | ||
68 | { | ||
69 | 59282 | MpegEncContext *s = opaque; | |
70 | |||
71 | av_assert1(!mb_intra); | ||
72 | |||
73 | 59282 | s->mv_dir = mv_dir; | |
74 | 59282 | s->mv_type = mv_type; | |
75 | 59282 | s->mb_intra = mb_intra; | |
76 | 59282 | s->mb_skipped = mb_skipped; | |
77 | 59282 | s->mb_x = mb_x; | |
78 | 59282 | s->mb_y = mb_y; | |
79 | 59282 | s->mcsel = 0; | |
80 | 59282 | memcpy(s->mv, mv, sizeof(*mv)); | |
81 | |||
82 | // The following disables the IDCT. | ||
83 |
2/2✓ Branch 0 taken 711384 times.
✓ Branch 1 taken 59282 times.
|
770666 | for (size_t i = 0; i < FF_ARRAY_ELEMS(s->block_last_index); i++) |
84 | 711384 | s->block_last_index[i] = -1; | |
85 | |||
86 | 59282 | s->dest[0] = s->cur_pic.data[0] + | |
87 | 59282 | s->mb_y * 16 * s->linesize + | |
88 | 59282 | s->mb_x * 16; | |
89 | 59282 | s->dest[1] = s->cur_pic.data[1] + | |
90 | 59282 | s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize + | |
91 | 59282 | s->mb_x * (16 >> s->chroma_x_shift); | |
92 | 59282 | s->dest[2] = s->cur_pic.data[2] + | |
93 | 59282 | s->mb_y * (16 >> s->chroma_y_shift) * s->uvlinesize + | |
94 | 59282 | s->mb_x * (16 >> s->chroma_x_shift); | |
95 | |||
96 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 59282 times.
|
59282 | if (ref) |
97 | ✗ | av_log(s->avctx, AV_LOG_DEBUG, | |
98 | "Interlaced error concealment is not fully implemented\n"); | ||
99 | 59282 | ff_mpv_reconstruct_mb(s, s->block); | |
100 | 59282 | } | |
101 | |||
102 | 651 | int ff_mpeg_er_init(MpegEncContext *s) | |
103 | { | ||
104 | 651 | ERContext *er = &s->er; | |
105 | 651 | int mb_array_size = s->mb_height * s->mb_stride; | |
106 | int i; | ||
107 | |||
108 | 651 | er->avctx = s->avctx; | |
109 | |||
110 | 651 | er->mb_index2xy = s->mb_index2xy; | |
111 | 651 | er->mb_num = s->mb_num; | |
112 | 651 | er->mb_width = s->mb_width; | |
113 | 651 | er->mb_height = s->mb_height; | |
114 | 651 | er->mb_stride = s->mb_stride; | |
115 | 651 | er->b8_stride = s->b8_stride; | |
116 | |||
117 | 651 | er->er_temp_buffer = av_malloc(s->mb_height * s->mb_stride * (4*sizeof(int) + 1)); | |
118 | 651 | er->error_status_table = av_mallocz(mb_array_size); | |
119 |
2/4✓ Branch 0 taken 651 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 651 times.
|
651 | if (!er->er_temp_buffer || !er->error_status_table) |
120 | ✗ | goto fail; | |
121 | |||
122 | 651 | er->mbskip_table = s->mbskip_table; | |
123 | 651 | er->mbintra_table = s->mbintra_table; | |
124 | |||
125 |
2/2✓ Branch 0 taken 1953 times.
✓ Branch 1 taken 651 times.
|
2604 | for (i = 0; i < FF_ARRAY_ELEMS(s->dc_val); i++) |
126 | 1953 | er->dc_val[i] = s->dc_val[i]; | |
127 | |||
128 | 651 | er->decode_mb = mpeg_er_decode_mb; | |
129 | 651 | er->opaque = s; | |
130 | |||
131 | 651 | return 0; | |
132 | ✗ | fail: | |
133 | ✗ | av_freep(&er->er_temp_buffer); | |
134 | ✗ | av_freep(&er->error_status_table); | |
135 | ✗ | return AVERROR(ENOMEM); | |
136 | } | ||
137 |