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
8ddc3262
Commit
8ddc3262
authored
10 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
mem: add av_strndup() for duplicating substrings
parent
aa51b049
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
+3
-0
3 additions, 0 deletions
doc/APIchanges
libavutil/mem.c
+20
-0
20 additions, 0 deletions
libavutil/mem.c
libavutil/mem.h
+10
-0
10 additions, 0 deletions
libavutil/mem.h
libavutil/version.h
+1
-1
1 addition, 1 deletion
libavutil/version.h
with
34 additions
and
1 deletion
doc/APIchanges
+
3
−
0
View file @
8ddc3262
...
...
@@ -13,6 +13,9 @@ libavutil: 2014-08-09
API changes, most recent first:
2014-08-xx - xxxxxxx - lavu 54.03.0 - mem.h
Add av_strndup().
2014-xx-xx - xxxxxxx - lavu 54.02.0 - opt.h
Add av_opt_get_dict_val/set_dict_val with AV_OPT_TYPE_DICT to support
dictionary types being set as options.
...
...
This diff is collapsed.
Click to expand it.
libavutil/mem.c
+
20
−
0
View file @
8ddc3262
...
...
@@ -222,6 +222,26 @@ char *av_strdup(const char *s)
return
ptr
;
}
char
*
av_strndup
(
const
char
*
s
,
size_t
len
)
{
char
*
ret
=
NULL
,
*
end
;
if
(
!
s
)
return
NULL
;
end
=
memchr
(
s
,
0
,
len
);
if
(
end
)
len
=
end
-
s
;
ret
=
av_realloc
(
NULL
,
len
+
1
);
if
(
!
ret
)
return
NULL
;
memcpy
(
ret
,
s
,
len
);
ret
[
len
]
=
0
;
return
ret
;
}
static
void
fill16
(
uint8_t
*
dst
,
int
len
)
{
uint32_t
v
=
AV_RN16
(
dst
-
2
);
...
...
This diff is collapsed.
Click to expand it.
libavutil/mem.h
+
10
−
0
View file @
8ddc3262
...
...
@@ -217,6 +217,16 @@ av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb, size_t si
*/
char
*
av_strdup
(
const
char
*
s
)
av_malloc_attrib
;
/**
* Duplicate a substring of the string s.
* @param s string to be duplicated
* @param len the maximum length of the resulting string (not counting the
* terminating byte).
* @return Pointer to a newly-allocated string containing a
* copy of s or NULL if the string cannot be allocated.
*/
char
*
av_strndup
(
const
char
*
s
,
size_t
len
)
av_malloc_attrib
;
/**
* Free a memory block which has been allocated with av_malloc(z)() or
* av_realloc() and set the pointer pointing to it to NULL.
...
...
This diff is collapsed.
Click to expand it.
libavutil/version.h
+
1
−
1
View file @
8ddc3262
...
...
@@ -54,7 +54,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 54
#define LIBAVUTIL_VERSION_MINOR
2
#define LIBAVUTIL_VERSION_MINOR
3
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
...
...
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