Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8c2b8291
Commit
8c2b8291
authored
Oct 23, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/frame: remove unneccessary metadata pointer getter
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
f1fd12ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
frame.c
libavutil/frame.c
+0
-2
frame.h
libavutil/frame.h
+0
-1
No files found.
libavutil/frame.c
View file @
8c2b8291
...
...
@@ -48,8 +48,6 @@ MAKE_ACCESSORS(AVFrame, frame, enum AVColorRange, color_range)
(frame)->channels == \
av_get_channel_layout_nb_channels((frame)->channel_layout))
AVDictionary
**
avpriv_frame_get_metadatap
(
AVFrame
*
frame
)
{
return
&
frame
->
metadata
;};
#if FF_API_FRAME_QP
int
av_frame_set_qp_table
(
AVFrame
*
f
,
AVBufferRef
*
buf
,
int
stride
,
int
qp_type
)
{
...
...
libavutil/frame.h
View file @
8c2b8291
...
...
@@ -587,7 +587,6 @@ int av_frame_get_decode_error_flags (const AVFrame *frame);
void
av_frame_set_decode_error_flags
(
AVFrame
*
frame
,
int
val
);
int
av_frame_get_pkt_size
(
const
AVFrame
*
frame
);
void
av_frame_set_pkt_size
(
AVFrame
*
frame
,
int
val
);
AVDictionary
**
avpriv_frame_get_metadatap
(
AVFrame
*
frame
);
#if FF_API_FRAME_QP
int8_t
*
av_frame_get_qp_table
(
AVFrame
*
f
,
int
*
stride
,
int
*
type
);
int
av_frame_set_qp_table
(
AVFrame
*
f
,
AVBufferRef
*
buf
,
int
stride
,
int
type
);
...
...
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