Skip to content
Snippets Groups Projects
Commit b603ef08 authored by Derek Buitenhuis's avatar Derek Buitenhuis
Browse files

bitpacked: Remove dead store

parent 8bf9572e
Branches
Tags
No related merge requests found
...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment