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
b01c5580
Commit
b01c5580
authored
Sep 16, 2007
by
Jean-Paul Saman
Committed by
Jean-Paul Saman
Mar 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly fix printing of fourcc (backport patch from courmisch)
parent
09177fb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
modules/codec/dvbsub.c
modules/codec/dvbsub.c
+4
-6
No files found.
modules/codec/dvbsub.c
View file @
b01c5580
...
...
@@ -1796,12 +1796,10 @@ static block_t *Encode( encoder_t *p_enc, subpicture_t *p_subpic )
if
(
p_region
->
fmt
.
i_chroma
!=
VLC_FOURCC
(
'T'
,
'E'
,
'X'
,
'T'
)
&&
p_region
->
fmt
.
i_chroma
!=
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'P'
)
)
{
#if 0
char *psz_fourcc[5];
memset( &psz_fourcc, 0, 5 );
vlc_fourcc_to_char( p_region->fmt.i_chroma, &psz_fourcc[0] );
#endif
msg_Err
(
p_enc
,
"chroma '%4.4s' not supported"
,
(
char
*
)
&
p_region
->
fmt
.
i_chroma
);
char
psz_fourcc
[
5
];
memset
(
&
psz_fourcc
,
0
,
sizeof
(
psz_fourcc
)
);
vlc_fourcc_to_char
(
p_region
->
fmt
.
i_chroma
,
psz_fourcc
);
msg_Err
(
p_enc
,
"chroma '%4.4s' not supported"
,
psz_fourcc
);
return
NULL
;
}
...
...
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