-
- Downloads
Replace all usage of strcasecmp/strncasecmp
All current usages of it are incompatible with localization.
For example strcasecmp("i", "I") != 0 is possible, but would
break many of the places where it is used.
Instead use our own implementations that always treat the data
as ASCII.
Signed-off-by:
Martin Storsjö <martin@martin.st>
Showing
- avserver.c 88 additions, 89 deletionsavserver.c
- libavdevice/v4l2.c 2 additions, 2 deletionslibavdevice/v4l2.c
- libavformat/avidec.c 2 additions, 2 deletionslibavformat/avidec.c
- libavformat/http.c 8 additions, 9 deletionslibavformat/http.c
- libavformat/img2.c 1 addition, 2 deletionslibavformat/img2.c
- libavformat/matroskaenc.c 2 additions, 2 deletionslibavformat/matroskaenc.c
- libavformat/metadata.c 3 additions, 3 deletionslibavformat/metadata.c
- libavformat/mp3enc.c 1 addition, 2 deletionslibavformat/mp3enc.c
- libavformat/nutdec.c 2 additions, 3 deletionslibavformat/nutdec.c
- libavformat/rtpdec.c 2 additions, 2 deletionslibavformat/rtpdec.c
- libavformat/rtpdec_mpeg4.c 1 addition, 2 deletionslibavformat/rtpdec_mpeg4.c
- libavformat/rtsp.c 5 additions, 6 deletionslibavformat/rtsp.c
- libavformat/utils.c 3 additions, 4 deletionslibavformat/utils.c
- libavutil/parseutils.c 3 additions, 4 deletionslibavutil/parseutils.c
Loading
Please register or sign in to comment