fftools/ffmpeg_filter: use av_buffer_replace() to improve code
It is shorter and more efficient.
This commit is contained in:
parent
5356f5ed23
commit
c26a6c5a52
@ -1415,7 +1415,9 @@ static int ifilter_parameters_from_frame(InputFilter *ifilter, const AVFrame *fr
|
||||
AVFrameSideData *sd;
|
||||
int ret;
|
||||
|
||||
av_buffer_unref(&ifp->hw_frames_ctx);
|
||||
ret = av_buffer_replace(&ifp->hw_frames_ctx, frame->hw_frames_ctx);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ifilter->format = frame->format;
|
||||
|
||||
@ -1433,12 +1435,6 @@ static int ifilter_parameters_from_frame(InputFilter *ifilter, const AVFrame *fr
|
||||
if (sd)
|
||||
ifp->displaymatrix = av_memdup(sd->data, sizeof(int32_t) * 9);
|
||||
|
||||
if (frame->hw_frames_ctx) {
|
||||
ifp->hw_frames_ctx = av_buffer_ref(frame->hw_frames_ctx);
|
||||
if (!ifp->hw_frames_ctx)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user