We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0152ee0 commit e38ba2eCopy full SHA for e38ba2e
media-file/src/main/cpp/frame_loader_context.h
@@ -22,7 +22,7 @@ struct FrameLoaderContext {
22
// Parameters of a video stream.
23
AVCodecParameters *parameters;
24
// Codec of a video stream.
25
- AVCodec *avVideoCodec;
+ const AVCodec *avVideoCodec;
26
// And index of a video stream in the avFormatContext.
27
int videoStreamIndex;
28
};
media-file/src/main/cpp/media_file_builder.cpp
@@ -10,6 +10,7 @@ extern "C" {
10
#include <libavformat/avformat.h>
11
#include <libavcodec/avcodec.h>
12
#include <libavutil/bprint.h>
13
+#include <libavutil/channel_layout.h>
14
}
15
16
static jstring toJString(const char *cString) {
0 commit comments