Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
6b40432a
Commit
6b40432a
authored
Dec 16, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AVI: fix track names character set (fixes #2334)
parent
c25958fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/demux/avi/avi.c
modules/demux/avi/avi.c
+1
-5
No files found.
modules/demux/avi/avi.c
View file @
6b40432a
...
...
@@ -630,11 +630,7 @@ static int Open( vlc_object_t * p_this )
continue
;
}
if
(
p_strn
)
{
/* The charset of p_strn is undefined */
EnsureUTF8
(
p_strn
->
p_str
);
fmt
.
psz_description
=
strdup
(
p_strn
->
p_str
);
}
fmt
.
psz_description
=
FromLatin1
(
p_strn
->
p_str
);
if
(
tk
->
p_out_muxed
==
NULL
)
tk
->
p_es
=
es_out_Add
(
p_demux
->
out
,
&
fmt
);
TAB_APPEND
(
p_sys
->
i_track
,
p_sys
->
track
,
tk
);
...
...
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