Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b3f4ff28
Commit
b3f4ff28
authored
Nov 03, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
id3v2enc: av_strcasecmp()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
23acfcd9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
id3v2enc.c
libavformat/id3v2enc.c
+1
-2
No files found.
libavformat/id3v2enc.c
View file @
b3f4ff28
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
*/
*/
#include <stdint.h>
#include <stdint.h>
#include <strings.h>
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "libavutil/dict.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
...
@@ -108,7 +107,7 @@ static void id3v2_3_metadata_split_date(AVDictionary **pm)
...
@@ -108,7 +107,7 @@ static void id3v2_3_metadata_split_date(AVDictionary **pm)
while
((
mtag
=
av_dict_get
(
*
pm
,
""
,
mtag
,
AV_DICT_IGNORE_SUFFIX
)))
{
while
((
mtag
=
av_dict_get
(
*
pm
,
""
,
mtag
,
AV_DICT_IGNORE_SUFFIX
)))
{
key
=
mtag
->
key
;
key
=
mtag
->
key
;
if
(
!
strcasecmp
(
key
,
"date"
))
{
if
(
!
av_
strcasecmp
(
key
,
"date"
))
{
/* split date tag using "YYYY-MM-DD" format into year and month/day segments */
/* split date tag using "YYYY-MM-DD" format into year and month/day segments */
value
=
mtag
->
value
;
value
=
mtag
->
value
;
i
=
0
;
i
=
0
;
...
...
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