summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBohan Li <bohanli@google.com>2021-07-15 13:21:35 -0700
committerBohan Li <bohanli@google.com>2021-07-15 23:06:56 +0000
commitb1f2532b4d670b2286f50d240992e58402a70aea (patch)
treea9745c97fa3b7c8184ddca4f40903af02da43fc4
parent76ad30b6fb85f1462b28323220960d165d167e78 (diff)
downloadlibvpx-b1f2532b4d670b2286f50d240992e58402a70aea.tar.gz
Avoid chroma resampling for 420mpeg2 input
BUG=aomedia:3080 Change-Id: I4ed81abf4b799224085485560f675c10c318cde6
-rw-r--r--y4minput.c31
1 files changed, 2 insertions, 29 deletions
diff --git a/y4minput.c b/y4minput.c
index f923eda34..9a4bdbd7b 100644
--- a/y4minput.c
+++ b/y4minput.c
@@ -285,26 +285,6 @@ static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst,
}
}
-/*Handles both 422 and 420mpeg2 to 422jpeg and 420jpeg, respectively.*/
-static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m, unsigned char *_dst,
- unsigned char *_aux) {
- int c_w;
- int c_h;
- int c_sz;
- int pli;
- /*Skip past the luma data.*/
- _dst += _y4m->pic_w * _y4m->pic_h;
- /*Compute the size of each chroma plane.*/
- c_w = (_y4m->pic_w + _y4m->dst_c_dec_h - 1) / _y4m->dst_c_dec_h;
- c_h = (_y4m->pic_h + _y4m->dst_c_dec_v - 1) / _y4m->dst_c_dec_v;
- c_sz = c_w * c_h;
- for (pli = 1; pli < 3; pli++) {
- y4m_42xmpeg2_42xjpeg_helper(_dst, _aux, c_w, c_h);
- _dst += c_sz;
- _aux += c_sz;
- }
-}
-
/*This format is only used for interlaced content, but is included for
completeness.
@@ -889,7 +869,8 @@ int y4m_input_open(y4m_input *y4m_ctx, FILE *file, char *skip_buffer,
y4m_ctx->aux_buf = NULL;
y4m_ctx->dst_buf = NULL;
if (strcmp(y4m_ctx->chroma_type, "420") == 0 ||
- strcmp(y4m_ctx->chroma_type, "420jpeg") == 0) {
+ strcmp(y4m_ctx->chroma_type, "420jpeg") == 0 ||
+ strcmp(y4m_ctx->chroma_type, "420mpeg2") == 0) {
y4m_ctx->src_c_dec_h = y4m_ctx->dst_c_dec_h = y4m_ctx->src_c_dec_v =
y4m_ctx->dst_c_dec_v = 2;
y4m_ctx->dst_buf_read_sz =
@@ -934,14 +915,6 @@ int y4m_input_open(y4m_input *y4m_ctx, FILE *file, char *skip_buffer,
fprintf(stderr, "Unsupported conversion from 420p12 to 420jpeg\n");
return -1;
}
- } else if (strcmp(y4m_ctx->chroma_type, "420mpeg2") == 0) {
- y4m_ctx->src_c_dec_h = y4m_ctx->dst_c_dec_h = y4m_ctx->src_c_dec_v =
- y4m_ctx->dst_c_dec_v = 2;
- y4m_ctx->dst_buf_read_sz = y4m_ctx->pic_w * y4m_ctx->pic_h;
- /*Chroma filter required: read into the aux buf first.*/
- y4m_ctx->aux_buf_sz = y4m_ctx->aux_buf_read_sz =
- 2 * ((y4m_ctx->pic_w + 1) / 2) * ((y4m_ctx->pic_h + 1) / 2);
- y4m_ctx->convert = y4m_convert_42xmpeg2_42xjpeg;
} else if (strcmp(y4m_ctx->chroma_type, "420paldv") == 0) {
y4m_ctx->src_c_dec_h = y4m_ctx->dst_c_dec_h = y4m_ctx->src_c_dec_v =
y4m_ctx->dst_c_dec_v = 2;