Commit b603ef08 authored by Derek Buitenhuis's avatar Derek Buitenhuis

bitpacked: Remove dead store

Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parent 8bf9572e
...@@ -68,10 +68,6 @@ static int bitpacked_decode_yuv422p10(AVCodecContext *avctx, AVFrame *frame, ...@@ -68,10 +68,6 @@ static int bitpacked_decode_yuv422p10(AVCodecContext *avctx, AVFrame *frame,
if (ret < 0) if (ret < 0)
return ret; return ret;
y = (uint16_t*)frame->data[0];
u = (uint16_t*)frame->data[1];
v = (uint16_t*)frame->data[2];
if (frame_size > packet_size) if (frame_size > packet_size)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment