Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
efaa4dec
Commit
efaa4dec
authored
Oct 11, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* removed an undef HAVE_ICONV from this file, and fixed a cast warning.
parent
a337712a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/codec/subsdec.c
modules/codec/subsdec.c
+3
-3
No files found.
modules/codec/subsdec.c
View file @
efaa4dec
...
...
@@ -2,7 +2,7 @@
* subsdec.c : text subtitles decoder
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: subsdec.c,v 1.
2 2003/10/02 13:31:00
hartman Exp $
* $Id: subsdec.c,v 1.
3 2003/10/11 14:08:58
hartman Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -39,7 +39,6 @@
#include "charset.h"
#undef HAVE_ICONV
/*****************************************************************************
* decoder_sys_t : decoder descriptor
*****************************************************************************/
...
...
@@ -273,7 +272,8 @@ static void ParseText( decoder_t *p_dec, block_t *p_block,
if
(
p_sys
->
iconv_handle
!=
(
iconv_t
)
-
1
)
{
char
*
psz_new_subtitle
;
char
*
psz_convert_buffer_out
,
*
psz_convert_buffer_in
;
char
*
psz_convert_buffer_out
;
const
char
*
psz_convert_buffer_in
;
size_t
ret
,
inbytes_left
,
outbytes_left
;
psz_new_subtitle
=
malloc
(
6
*
strlen
(
psz_subtitle
)
);
...
...
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