mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-11 17:30:00 +01:00
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 86cd7c68bc)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -244,7 +244,7 @@ static int mf_sample_to_avpacket(AVCodecContext *avctx, IMFSample *sample, AVPac
|
||||
if ((ret = av_new_packet(avpkt, len)) < 0)
|
||||
return ret;
|
||||
|
||||
IMFSample_ConvertToContiguousBuffer(sample, &buffer);
|
||||
hr = IMFSample_ConvertToContiguousBuffer(sample, &buffer);
|
||||
if (FAILED(hr))
|
||||
return AVERROR_EXTERNAL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user