avcodec/mfenc: check IMFSample_ConvertToContiguousBuffer() for failure
Fixes: CID1591911 Logically dead code Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 86cd7c68bc65df6703391f0cdcdbf7c57d6c4780) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
45b2c1f810
commit
c40b96982d
@ -248,7 +248,7 @@ static int mf_sample_to_avpacket(AVCodecContext *avctx, IMFSample *sample, AVPac
|
|||||||
if ((ret = ff_get_encode_buffer(avctx, avpkt, len, 0)) < 0)
|
if ((ret = ff_get_encode_buffer(avctx, avpkt, len, 0)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
IMFSample_ConvertToContiguousBuffer(sample, &buffer);
|
hr = IMFSample_ConvertToContiguousBuffer(sample, &buffer);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return AVERROR_EXTERNAL;
|
return AVERROR_EXTERNAL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user