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.
|
|
#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(av_frame_get_channels(frame));
|
|
|
}
|