Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Seungha Yang
gst-plugins-base
Commits
a6355922
Commit
a6355922
authored
Jan 21, 2003
by
Wim Taymans
Browse files
- Add strn tag
Original commit message from CVS: - Add strn tag - fix memleak in debugging code
parent
45aff43b
Changes
2
Hide whitespace changes
Inline
Side-by-side
gst-libs/gst/riff/riff.h
View file @
a6355922
...
...
@@ -53,6 +53,7 @@ typedef enum {
#define GST_RIFF_TAG_LIST MAKE_FOUR_CC('L','I','S','T')
#define GST_RIFF_TAG_avih MAKE_FOUR_CC('a','v','i','h')
#define GST_RIFF_TAG_strd MAKE_FOUR_CC('s','t','r','d')
#define GST_RIFF_TAG_strn MAKE_FOUR_CC('s','t','r','n')
#define GST_RIFF_TAG_strh MAKE_FOUR_CC('s','t','r','h')
#define GST_RIFF_TAG_strf MAKE_FOUR_CC('s','t','r','f')
#define GST_RIFF_TAG_vedt MAKE_FOUR_CC('v','e','d','t')
...
...
gst-libs/gst/riff/riffutil.c
View file @
a6355922
...
...
@@ -32,7 +32,7 @@ gulong gst_riff_fourcc_to_id(gchar *fourcc) {
}
gchar
*
gst_riff_id_to_fourcc
(
gulong
id
)
{
gchar
*
fourcc
=
(
gchar
*
)
g_malloc
(
5
)
;
static
gchar
fourcc
[
5
]
;
g_return_val_if_fail
(
fourcc
!=
NULL
,
NULL
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment