mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
various 10l fixes for the loop filter
Originally committed as revision 4249 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
42cc17f926
commit
d5e188359e
@ -2269,7 +2269,9 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
int fragment;
|
int fragment;
|
||||||
int stride;
|
int stride;
|
||||||
unsigned char *plane_data;
|
unsigned char *plane_data;
|
||||||
int bounding_values[256];
|
|
||||||
|
int bounding_values_array[256];
|
||||||
|
int *bounding_values= bounding_values_array+127;
|
||||||
int filter_limit;
|
int filter_limit;
|
||||||
|
|
||||||
/* find the right loop limit value */
|
/* find the right loop limit value */
|
||||||
@ -2277,10 +2279,10 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
if (vp31_ac_scale_factor[x] >= s->quality_index)
|
if (vp31_ac_scale_factor[x] >= s->quality_index)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
filter_limit = vp31_filter_limit_values[x];
|
filter_limit = vp31_filter_limit_values[s->quality_index];
|
||||||
|
|
||||||
/* set up the bounding values */
|
/* set up the bounding values */
|
||||||
memset(bounding_values, 0, 256 * sizeof(int));
|
memset(bounding_values_array, 0, 256 * sizeof(int));
|
||||||
for (x = 0; x < filter_limit; x++) {
|
for (x = 0; x < filter_limit; x++) {
|
||||||
bounding_values[-x - filter_limit] = -filter_limit + x;
|
bounding_values[-x - filter_limit] = -filter_limit + x;
|
||||||
bounding_values[-x] = -x;
|
bounding_values[-x] = -x;
|
||||||
@ -2321,7 +2323,7 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
if ((x > 0) &&
|
if ((x > 0) &&
|
||||||
(s->all_fragments[fragment].coding_method != MODE_COPY)) {
|
(s->all_fragments[fragment].coding_method != MODE_COPY)) {
|
||||||
horizontal_filter(
|
horizontal_filter(
|
||||||
plane_data + s->all_fragments[fragment].first_pixel,
|
plane_data + s->all_fragments[fragment].first_pixel - 7*stride,
|
||||||
stride, bounding_values);
|
stride, bounding_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2329,7 +2331,7 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
if ((y > 0) &&
|
if ((y > 0) &&
|
||||||
(s->all_fragments[fragment].coding_method != MODE_COPY)) {
|
(s->all_fragments[fragment].coding_method != MODE_COPY)) {
|
||||||
vertical_filter(
|
vertical_filter(
|
||||||
plane_data + s->all_fragments[fragment].first_pixel,
|
plane_data + s->all_fragments[fragment].first_pixel + stride,
|
||||||
stride, bounding_values);
|
stride, bounding_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2340,7 +2342,7 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
(s->all_fragments[fragment].coding_method != MODE_COPY) &&
|
(s->all_fragments[fragment].coding_method != MODE_COPY) &&
|
||||||
(s->all_fragments[fragment + 1].coding_method == MODE_COPY)) {
|
(s->all_fragments[fragment + 1].coding_method == MODE_COPY)) {
|
||||||
horizontal_filter(
|
horizontal_filter(
|
||||||
plane_data + s->all_fragments[fragment + 1].first_pixel,
|
plane_data + s->all_fragments[fragment + 1].first_pixel - 7*stride,
|
||||||
stride, bounding_values);
|
stride, bounding_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2351,7 +2353,7 @@ static void apply_loop_filter(Vp3DecodeContext *s)
|
|||||||
(s->all_fragments[fragment].coding_method != MODE_COPY) &&
|
(s->all_fragments[fragment].coding_method != MODE_COPY) &&
|
||||||
(s->all_fragments[fragment + width].coding_method == MODE_COPY)) {
|
(s->all_fragments[fragment + width].coding_method == MODE_COPY)) {
|
||||||
vertical_filter(
|
vertical_filter(
|
||||||
plane_data + s->all_fragments[fragment + width].first_pixel,
|
plane_data + s->all_fragments[fragment + width].first_pixel + stride,
|
||||||
stride, bounding_values);
|
stride, bounding_values);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2740,7 +2742,6 @@ if (!s->keyframe) {
|
|||||||
|
|
||||||
reverse_dc_prediction(s, 0, s->fragment_width, s->fragment_height);
|
reverse_dc_prediction(s, 0, s->fragment_width, s->fragment_height);
|
||||||
render_fragments(s, 0, s->width, s->height, 0);
|
render_fragments(s, 0, s->width, s->height, 0);
|
||||||
// apply_loop_filter(s);
|
|
||||||
|
|
||||||
if ((avctx->flags & CODEC_FLAG_GRAY) == 0) {
|
if ((avctx->flags & CODEC_FLAG_GRAY) == 0) {
|
||||||
reverse_dc_prediction(s, s->u_fragment_start,
|
reverse_dc_prediction(s, s->u_fragment_start,
|
||||||
@ -2754,6 +2755,7 @@ if (!s->keyframe) {
|
|||||||
memset(s->current_frame.data[2], 0x80, s->width * s->height / 4);
|
memset(s->current_frame.data[2], 0x80, s->width * s->height / 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply_loop_filter(s);
|
||||||
#if KEYFRAMES_ONLY
|
#if KEYFRAMES_ONLY
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user