1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

bitpacked: Remove dead store

Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
Derek Buitenhuis 2017-07-06 13:39:57 -04:00
parent 8bf9572e9a
commit b603ef0870

View File

@ -68,10 +68,6 @@ static int bitpacked_decode_yuv422p10(AVCodecContext *avctx, AVFrame *frame,
if (ret < 0)
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)
return AVERROR_INVALIDDATA;