Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
abc8110f
Commit
abc8110f
authored
11 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
avcodec: add avcodec_chroma_pos_to_enum()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b7397857
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/APIchanges
+4
-0
4 additions, 0 deletions
doc/APIchanges
libavcodec/avcodec.h
+11
-0
11 additions, 0 deletions
libavcodec/avcodec.h
libavcodec/utils.c
+11
-0
11 additions, 0 deletions
libavcodec/utils.c
libavcodec/version.h
+2
-2
2 additions, 2 deletions
libavcodec/version.h
with
28 additions
and
2 deletions
doc/APIchanges
+
4
−
0
View file @
abc8110f
...
@@ -15,6 +15,10 @@ libavutil: 2012-10-22
...
@@ -15,6 +15,10 @@ libavutil: 2012-10-22
API changes, most recent first:
API changes, most recent first:
2013-07-XX - xxxxxxx - XXXXXXXXXXXXXX - avcodec.h
Add avcodec_chroma_pos_to_enum()
Add avcodec_enum_to_chroma_pos()
2013-07-03 - xxxxxxx - lavfi 3.78.100 - avfilter.h
2013-07-03 - xxxxxxx - lavfi 3.78.100 - avfilter.h
Deprecate avfilter_graph_parse() in favor of the equivalent
Deprecate avfilter_graph_parse() in favor of the equivalent
avfilter_graph_parse_ptr().
avfilter_graph_parse_ptr().
...
...
This diff is collapsed.
Click to expand it.
libavcodec/avcodec.h
+
11
−
0
View file @
abc8110f
...
@@ -3617,6 +3617,17 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
...
@@ -3617,6 +3617,17 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
*/
*/
int
avcodec_enum_to_chroma_pos
(
int
*
xpos
,
int
*
ypos
,
enum
AVChromaLocation
pos
);
int
avcodec_enum_to_chroma_pos
(
int
*
xpos
,
int
*
ypos
,
enum
AVChromaLocation
pos
);
/**
* Converts swscale x/y chroma position to AVChromaLocation.
*
* The positions represent the chroma (0,0) position in a coordinates system
* with luma (0,0) representing the origin and luma(1,1) representing 256,256
*
* @param xpos horizontal chroma sample position
* @param ypos vertical chroma sample position
*/
enum
AVChromaLocation
avcodec_chroma_pos_to_enum
(
int
xpos
,
int
ypos
);
#if FF_API_OLD_DECODE_AUDIO
#if FF_API_OLD_DECODE_AUDIO
/**
/**
* Wrapper function which calls avcodec_decode_audio4.
* Wrapper function which calls avcodec_decode_audio4.
...
...
This diff is collapsed.
Click to expand it.
libavcodec/utils.c
+
11
−
0
View file @
abc8110f
...
@@ -350,6 +350,17 @@ int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
...
@@ -350,6 +350,17 @@ int avcodec_enum_to_chroma_pos(int *xpos, int *ypos, enum AVChromaLocation pos)
return
0
;
return
0
;
}
}
enum
AVChromaLocation
avcodec_chroma_pos_to_enum
(
int
xpos
,
int
ypos
)
{
int
pos
,
xout
,
yout
;
for
(
pos
=
AVCHROMA_LOC_UNSPECIFIED
+
1
;
pos
<
AVCHROMA_LOC_NB
;
pos
++
)
{
if
(
avcodec_enum_to_chroma_pos
(
&
xout
,
&
yout
,
pos
)
==
0
&&
xout
==
xpos
&&
yout
==
ypos
)
return
pos
;
}
return
AVCHROMA_LOC_UNSPECIFIED
;
}
int
avcodec_fill_audio_frame
(
AVFrame
*
frame
,
int
nb_channels
,
int
avcodec_fill_audio_frame
(
AVFrame
*
frame
,
int
nb_channels
,
enum
AVSampleFormat
sample_fmt
,
const
uint8_t
*
buf
,
enum
AVSampleFormat
sample_fmt
,
const
uint8_t
*
buf
,
int
buf_size
,
int
align
)
int
buf_size
,
int
align
)
...
...
This diff is collapsed.
Click to expand it.
libavcodec/version.h
+
2
−
2
View file @
abc8110f
...
@@ -29,8 +29,8 @@
...
@@ -29,8 +29,8 @@
#include
"libavutil/avutil.h"
#include
"libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR 1
8
#define LIBAVCODEC_VERSION_MINOR 1
9
#define LIBAVCODEC_VERSION_MICRO 10
2
#define LIBAVCODEC_VERSION_MICRO 10
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment