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
147
Issues
147
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
ca174511
Commit
ca174511
authored
Jun 12, 2018
by
Philippe Gorley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc: fix mismatched-tags warnings
Change-Id: I32f59646ad7059dc7440aa6f278fd2e210c8108e
parent
f1c74ed1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
src/media/media_buffer.h
src/media/media_buffer.h
+1
-1
src/media/media_decoder.h
src/media/media_decoder.h
+6
-6
src/media/media_filter.h
src/media/media_filter.h
+3
-3
src/media/media_io_handle.h
src/media/media_io_handle.h
+1
-1
src/media/video/video_scaler.h
src/media/video/video_scaler.h
+1
-1
No files found.
src/media/media_buffer.h
View file @
ca174511
...
...
@@ -25,7 +25,7 @@
#include <memory>
#include <functional>
class
AVFrame
;
struct
AVFrame
;
namespace
DRing
{
struct
FrameBuffer
;
// from dring/videomanager_interface.h
...
...
src/media/media_decoder.h
View file @
ca174511
...
...
@@ -40,17 +40,17 @@
#include <memory>
#include <chrono>
class
AVCodecContext
;
class
AVStream
;
class
AVDictionary
;
class
AVFormatContext
;
class
AVCodec
;
struct
AVCodecContext
;
struct
AVStream
;
struct
AVDictionary
;
struct
AVFormatContext
;
struct
AVCodec
;
enum
AVMediaType
;
namespace
ring
{
struct
AudioFrame
;
class
AudioFormat
;
struct
AudioFormat
;
class
RingBuffer
;
class
Resampler
;
class
MediaIOHandle
;
...
...
src/media/media_filter.h
View file @
ca174511
...
...
@@ -28,9 +28,9 @@
#include <string>
#include <vector>
class
AVFilterContext
;
class
AVFilterGraph
;
class
AVFilterInOut
;
struct
AVFilterContext
;
struct
AVFilterGraph
;
struct
AVFilterInOut
;
namespace
ring
{
...
...
src/media/media_io_handle.h
View file @
ca174511
...
...
@@ -28,7 +28,7 @@
#include <vector>
#ifndef AVFORMAT_AVIO_H
class
AVIOContext
;
struct
AVIOContext
;
#endif
typedef
int
(
*
io_readcallback
)(
void
*
opaque
,
uint8_t
*
buf
,
int
buf_size
);
...
...
src/media/video/video_scaler.h
View file @
ca174511
...
...
@@ -25,7 +25,7 @@
#include "noncopyable.h"
class
SwsContext
;
struct
SwsContext
;
namespace
ring
{
namespace
video
{
...
...
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