You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/lib/fix_frame_channel_layout-04.h

10 lines
256 B

#include <libavutil/frame.h>
#include <libavutil/channel_layout.h>
#include "compat.h"
INLINE void fix_frame_channel_layout(AVFrame *frame) {
if (frame->channel_layout)
return;
frame->channel_layout = av_get_default_channel_layout(frame->channels);
}