mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
lavfi/avcodec: rename picref->samplesref variable in avfilter_get_audio_buffer_ref_from_frame()
The new name is more meaningful in that context.
This commit is contained in:
parent
9cf9214d0a
commit
316f6df9cc
@ -70,14 +70,14 @@ AVFilterBufferRef *avfilter_get_video_buffer_ref_from_frame(const AVFrame *frame
|
||||
AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_frame(const AVFrame *frame,
|
||||
int perms)
|
||||
{
|
||||
AVFilterBufferRef *picref =
|
||||
AVFilterBufferRef *samplesref =
|
||||
avfilter_get_audio_buffer_ref_from_arrays((uint8_t **)frame->data, frame->linesize[0], perms,
|
||||
frame->nb_samples, frame->format,
|
||||
av_frame_get_channel_layout(frame));
|
||||
if (!picref)
|
||||
if (!samplesref)
|
||||
return NULL;
|
||||
avfilter_copy_frame_props(picref, frame);
|
||||
return picref;
|
||||
avfilter_copy_frame_props(samplesref, frame);
|
||||
return samplesref;
|
||||
}
|
||||
|
||||
AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type,
|
||||
|
Loading…
Reference in New Issue
Block a user