Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
a5149607
Commit
a5149607
authored
Mar 16, 2013
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/buffersrc: disable deprecated warnings.
parent
f29c28a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
buffersrc.c
libavfilter/buffersrc.c
+6
-0
No files found.
libavfilter/buffersrc.c
View file @
a5149607
...
...
@@ -172,13 +172,17 @@ static int attribute_align_arg av_buffersrc_add_frame_internal(AVFilterContext *
static
void
compat_free_buffer
(
void
*
opaque
,
uint8_t
*
data
)
{
AVFilterBufferRef
*
buf
=
opaque
;
AV_NOWARN_DEPRECATED
(
avfilter_unref_buffer
(
buf
);
)
}
static
void
compat_unref_buffer
(
void
*
opaque
,
uint8_t
*
data
)
{
AVBufferRef
*
buf
=
opaque
;
AV_NOWARN_DEPRECATED
(
av_buffer_unref
(
&
buf
);
)
}
int
av_buffersrc_add_ref
(
AVFilterContext
*
ctx
,
AVFilterBufferRef
*
buf
,
...
...
@@ -206,8 +210,10 @@ int av_buffersrc_add_ref(AVFilterContext *ctx, AVFilterBufferRef *buf,
goto
fail
;
}
AV_NOWARN_DEPRECATED
(
if
((
ret
=
avfilter_copy_buf_props
(
frame
,
buf
))
<
0
)
goto
fail
;
)
#define WRAP_PLANE(ref_out, data, data_size) \
do { \
...
...
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