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
fb571806
Commit
fb571806
authored
Jul 11, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/avcodec.h: keep avframe_* field setter and getter close
Slightly more readable, now that the list is getting longer.
parent
f49ec1b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
avcodec.h
libavcodec/avcodec.h
+6
-6
No files found.
libavcodec/avcodec.h
View file @
fb571806
...
...
@@ -1330,17 +1330,17 @@ typedef struct AVFrame {
* they should not be accessed directly outside libavcodec.
*/
int64_t
av_frame_get_best_effort_timestamp
(
const
AVFrame
*
frame
);
int64_t
av_frame_get_pkt_duration
(
const
AVFrame
*
frame
);
int64_t
av_frame_get_pkt_pos
(
const
AVFrame
*
frame
);
int64_t
av_frame_get_channel_layout
(
const
AVFrame
*
frame
);
int
av_frame_get_sample_rate
(
const
AVFrame
*
frame
);
AVDictionary
*
av_frame_get_metadata
(
const
AVFrame
*
frame
);
void
av_frame_set_best_effort_timestamp
(
AVFrame
*
frame
,
int64_t
val
);
int64_t
av_frame_get_pkt_duration
(
const
AVFrame
*
frame
);
void
av_frame_set_pkt_duration
(
AVFrame
*
frame
,
int64_t
val
);
int64_t
av_frame_get_pkt_pos
(
const
AVFrame
*
frame
);
void
av_frame_set_pkt_pos
(
AVFrame
*
frame
,
int64_t
val
);
int64_t
av_frame_get_channel_layout
(
const
AVFrame
*
frame
);
void
av_frame_set_channel_layout
(
AVFrame
*
frame
,
int64_t
val
);
int
av_frame_get_sample_rate
(
const
AVFrame
*
frame
);
void
av_frame_set_sample_rate
(
AVFrame
*
frame
,
int
val
);
void
av_frame_set_metadata
(
AVFrame
*
frame
,
AVDictionary
*
val
);
AVDictionary
*
av_frame_get_metadata
(
const
AVFrame
*
frame
);
void
av_frame_set_metadata
(
AVFrame
*
frame
,
AVDictionary
*
val
);
struct
AVCodecInternal
;
...
...
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