From: Dmitry Kovalev Date: Fri, 27 Dec 2013 22:50:27 +0000 (-0800) Subject: Using VP9_FRAME_MARKER instead of raw number. X-Git-Tag: v1.4.0~2761^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46d5cc4307718873230e9d50cd03e6d2807fd7da;p=libvpx Using VP9_FRAME_MARKER instead of raw number. Change-Id: I3addbf6d89a86a707c8df1a463da3e9e367910df --- diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c index 445198bb4..a7d2e1d6a 100644 --- a/vp9/vp9_dx_iface.c +++ b/vp9/vp9_dx_iface.c @@ -160,7 +160,8 @@ static vpx_codec_err_t vp9_peek_si(const uint8_t *data, struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL }; const int frame_marker = vp9_rb_read_literal(&rb, 2); const int version = vp9_rb_read_bit(&rb) | (vp9_rb_read_bit(&rb) << 1); - if (frame_marker != 0x2) return VPX_CODEC_UNSUP_BITSTREAM; + if (frame_marker != VP9_FRAME_MARKER) + return VPX_CODEC_UNSUP_BITSTREAM; #if CONFIG_NON420 if (version > 1) return VPX_CODEC_UNSUP_BITSTREAM; #else