Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
jami-daemon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
138
Issues
138
List
Boards
Labels
Service Desk
Milestones
Iterations
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
savoirfairelinux
jami-daemon
Commits
8ca57b10
Commit
8ca57b10
authored
Mar 14, 2019
by
Adrien Béraud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: use extern "C" for forward declarations
Change-Id: I3bb7f53ececb108f9db7b0f9eb47b85b3482644a
parent
38b92733
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
3 deletions
+16
-3
src/media/audio/audio_frame_resizer.h
src/media/audio/audio_frame_resizer.h
+2
-0
src/media/audio/audiobuffer.h
src/media/audio/audiobuffer.h
+1
-2
src/media/audio/resampler.h
src/media/audio/resampler.h
+2
-0
src/media/libav_utils.h
src/media/libav_utils.h
+2
-0
src/media/media_buffer.h
src/media/media_buffer.h
+2
-0
src/media/media_decoder.h
src/media/media_decoder.h
+2
-0
src/media/media_encoder.h
src/media/media_encoder.h
+2
-0
src/media/media_filter.h
src/media/media_filter.h
+2
-0
src/media/video/video_base.h
src/media/video/video_base.h
+1
-1
No files found.
src/media/audio/audio_frame_resizer.h
View file @
8ca57b10
...
...
@@ -26,7 +26,9 @@
#include <mutex>
extern
"C"
{
struct
AVAudioFifo
;
}
namespace
jami
{
...
...
src/media/audio/audiobuffer.h
View file @
8ca57b10
...
...
@@ -32,6 +32,7 @@
extern
"C"
{
#include <libavutil/samplefmt.h>
struct
AVFrame
;
}
#include "ring_types.h"
...
...
@@ -39,8 +40,6 @@ extern "C" {
#include <ciso646> // fix windows compiler bug
struct
AVFrame
;
namespace
jami
{
/**
...
...
src/media/audio/resampler.h
View file @
8ca57b10
...
...
@@ -26,8 +26,10 @@
#include "media_buffer.h"
#include "noncopyable.h"
extern
"C"
{
struct
AVFrame
;
struct
SwrContext
;
}
namespace
jami
{
...
...
src/media/libav_utils.h
View file @
8ca57b10
...
...
@@ -25,9 +25,11 @@
#include <map>
#include <string>
extern
"C"
{
struct
AVDictionary
;
struct
AVFrame
;
struct
AVPixFmtDescriptor
;
}
namespace
jami
{
namespace
libav_utils
{
...
...
src/media/media_buffer.h
View file @
8ca57b10
...
...
@@ -26,7 +26,9 @@
#include <memory>
#include <functional>
extern
"C"
{
struct
AVFrame
;
}
namespace
DRing
{
struct
FrameBuffer
;
// from dring/videomanager_interface.h
...
...
src/media/media_decoder.h
View file @
8ca57b10
...
...
@@ -40,12 +40,14 @@
#include <memory>
#include <chrono>
extern
"C"
{
struct
AVCodecContext
;
struct
AVStream
;
struct
AVDictionary
;
struct
AVFormatContext
;
struct
AVCodec
;
enum
AVMediaType
;
}
namespace
DRing
{
class
AudioFrame
;
...
...
src/media/media_encoder.h
View file @
8ca57b10
...
...
@@ -39,10 +39,12 @@
#include <string>
#include <vector>
extern
"C"
{
struct
AVCodecContext
;
struct
AVFormatContext
;
struct
AVDictionary
;
struct
AVCodec
;
}
namespace
jami
{
...
...
src/media/media_filter.h
View file @
8ca57b10
...
...
@@ -28,9 +28,11 @@
#include <string>
#include <vector>
extern
"C"
{
struct
AVFilterContext
;
struct
AVFilterGraph
;
struct
AVFilterInOut
;
}
namespace
jami
{
...
...
src/media/video/video_base.h
View file @
8ca57b10
...
...
@@ -39,7 +39,6 @@
extern
"C"
{
#include <libavutil/pixfmt.h>
}
struct
AVPacket
;
struct
AVDictionary
;
...
...
@@ -47,6 +46,7 @@ struct AVDictionary;
#ifndef AVFORMAT_AVIO_H
struct
AVIOContext
;
#endif
}
namespace
DRing
{
class
MediaFrame
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment