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
3c8bff07
Commit
3c8bff07
authored
Jul 30, 2013
by
Vittorio Giovara
Committed by
Anton Khirnov
Aug 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avframe: have av_frame_get_side_data take const AVFrame*
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
ee37d581
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
frame.c
libavutil/frame.c
+1
-1
frame.h
libavutil/frame.h
+1
-1
No files found.
libavutil/frame.c
View file @
3c8bff07
...
...
@@ -465,7 +465,7 @@ AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
return
ret
;
}
AVFrameSideData
*
av_frame_get_side_data
(
AVFrame
*
frame
,
AVFrameSideData
*
av_frame_get_side_data
(
const
AVFrame
*
frame
,
enum
AVFrameSideDataType
type
)
{
int
i
;
...
...
libavutil/frame.h
View file @
3c8bff07
...
...
@@ -485,7 +485,7 @@ AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
* @return a pointer to the side data of a given type on success, NULL if there
* is no side data with such type in this frame.
*/
AVFrameSideData
*
av_frame_get_side_data
(
AVFrame
*
frame
,
AVFrameSideData
*
av_frame_get_side_data
(
const
AVFrame
*
frame
,
enum
AVFrameSideDataType
type
);
#endif
/* AVUTIL_FRAME_H */
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