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
d61617a5
Commit
d61617a5
authored
11 years ago
by
Stefano Sabatini
Browse files
Options
Downloads
Patches
Plain Diff
lavu/parseutils: add av_get_known_color_name()
parent
1e5271a9
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/APIchanges
+3
-1
3 additions, 1 deletion
doc/APIchanges
libavutil/parseutils.c
+14
-0
14 additions, 0 deletions
libavutil/parseutils.c
libavutil/parseutils.h
+13
-0
13 additions, 0 deletions
libavutil/parseutils.h
libavutil/version.h
+2
-2
2 additions, 2 deletions
libavutil/version.h
with
32 additions
and
3 deletions
doc/APIchanges
+
3
−
1
View file @
d61617a5
...
@@ -15,7 +15,9 @@ libavutil: 2012-10-22
...
@@ -15,7 +15,9 @@ libavutil: 2012-10-22
API changes, most recent first:
API changes, most recent first:
libavutil 52.47.100
2013-10-27 - xxxxxxx - lavu 52.48.100 - parseutils.h
Add av_get_known_color_name().
2013-10-17 - xxxxxxx - lavu 52.47.100 - opt.h
2013-10-17 - xxxxxxx - lavu 52.47.100 - opt.h
Add AV_OPT_TYPE_CHANNEL_LAYOUT and channel layout option handlers
Add AV_OPT_TYPE_CHANNEL_LAYOUT and channel layout option handlers
av_opt_get_channel_layout() and av_opt_set_channel_layout().
av_opt_get_channel_layout() and av_opt_set_channel_layout().
...
...
This diff is collapsed.
Click to expand it.
libavutil/parseutils.c
+
14
−
0
View file @
d61617a5
...
@@ -420,6 +420,20 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen,
...
@@ -420,6 +420,20 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen,
return
0
;
return
0
;
}
}
const
char
*
av_get_known_color_name
(
int
color_idx
,
const
uint8_t
**
rgbp
)
{
const
ColorEntry
*
color
;
if
((
unsigned
)
color_idx
>=
FF_ARRAY_ELEMS
(
color_table
))
return
NULL
;
color
=
&
color_table
[
color_idx
];
if
(
rgbp
)
*
rgbp
=
color
->
rgb_color
;
return
color
->
name
;
}
/* get a positive number between n_min and n_max, for a maximum length
/* get a positive number between n_min and n_max, for a maximum length
of len_max. Return -1 if error. */
of len_max. Return -1 if error. */
static
int
date_get_num
(
const
char
**
pp
,
static
int
date_get_num
(
const
char
**
pp
,
...
...
This diff is collapsed.
Click to expand it.
libavutil/parseutils.h
+
13
−
0
View file @
d61617a5
...
@@ -98,6 +98,19 @@ int av_parse_video_rate(AVRational *rate, const char *str);
...
@@ -98,6 +98,19 @@ int av_parse_video_rate(AVRational *rate, const char *str);
int
av_parse_color
(
uint8_t
*
rgba_color
,
const
char
*
color_string
,
int
slen
,
int
av_parse_color
(
uint8_t
*
rgba_color
,
const
char
*
color_string
,
int
slen
,
void
*
log_ctx
);
void
*
log_ctx
);
/**
* Get the name of a color from the internal table of hard-coded named
* colors.
*
* This function is meant to enumerate the color names recognized by
* av_parse_color().
*
* @param color_idx index of the requested color, starting from 0
* @param rgbp if not NULL, will point to a 3-elements array with the color value in RGB
* @return the color name string or NULL if color_idx is not in the array
*/
const
char
*
av_get_known_color_name
(
int
color_idx
,
const
uint8_t
**
rgb
);
/**
/**
* Parse timestr and return in *time a corresponding number of
* Parse timestr and return in *time a corresponding number of
* microseconds.
* microseconds.
...
...
This diff is collapsed.
Click to expand it.
libavutil/version.h
+
2
−
2
View file @
d61617a5
...
@@ -75,8 +75,8 @@
...
@@ -75,8 +75,8 @@
*/
*/
#define LIBAVUTIL_VERSION_MAJOR 52
#define LIBAVUTIL_VERSION_MAJOR 52
#define LIBAVUTIL_VERSION_MINOR 4
7
#define LIBAVUTIL_VERSION_MINOR 4
8
#define LIBAVUTIL_VERSION_MICRO 10
1
#define LIBAVUTIL_VERSION_MICRO 10
0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \
LIBAVUTIL_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