summaryrefslogtreecommitdiffstats
path: root/decoder
diff options
context:
space:
mode:
Diffstat (limited to 'decoder')
-rwxr-xr-xdecoder/ih264d_parse_headers.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/decoder/ih264d_parse_headers.c b/decoder/ih264d_parse_headers.c
index 9458d6b..de5bcb9 100755
--- a/decoder/ih264d_parse_headers.c
+++ b/decoder/ih264d_parse_headers.c
@@ -958,28 +958,9 @@ WORD32 ih264d_parse_sps(dec_struct_t *ps_dec, dec_bit_stream_t *ps_bitstrm)
return ret;
}
- /*
- * Code Add to check for display width.
- * This has to be at the end of the SPS parsing, so everything gets
- * parsed and the error will not affect decoding.
- * */
- if((0 != ps_dec->u4_app_disp_width)
- && (ps_dec->u4_app_disp_width < ps_dec->u2_pic_wd))
- {
- ps_dec->u4_app_disp_width = ps_dec->u2_pic_wd;
- return ERROR_DISP_WIDTH_RESET_TO_PIC_WIDTH;
- }
-
-
-
ps_dec->u2_pic_wd = u2_pic_wd;
ps_dec->u2_pic_ht = u2_pic_ht;
- /* Added temporarily to give pic height and width as display height */
- /* and width in case some cropping errors occur` */
- /*ps_dec->u2_disp_height = ps_dec->u2_pic_ht;
- ps_dec->u2_disp_width = ps_dec->u2_pic_wd;*/
-
/* Determining the Width and Height of Frame from that of Picture */
ps_dec->u2_frm_wd_y = u2_frm_wd_y;