Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ec4b9fba
Commit
ec4b9fba
authored
Apr 24, 2006
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_output/caca.c: synced caca output with libcaca-0.99.beta1.
parent
97ec13c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
29 deletions
+47
-29
modules/video_output/caca.c
modules/video_output/caca.c
+47
-29
No files found.
modules/video_output/caca.c
View file @
ec4b9fba
...
...
@@ -68,9 +68,9 @@ vlc_module_end();
struct
vout_sys_t
{
#ifdef CACA_API_VERSION_1
struct
cucul_context
*
p_qq
;
struct
caca_context
*
p_kk
;
struct
cucul_bitmap
*
p_bitmap
;
cucul_canvas_t
*
p_cv
;
caca_display_t
*
p_dp
;
cucul_dither_t
*
p_dither
;
#else
struct
caca_bitmap
*
p_bitmap
;
#endif
...
...
@@ -149,25 +149,25 @@ static int Create( vlc_object_t *p_this )
}
#ifdef CACA_API_VERSION_1
p_vout
->
p_sys
->
p_
qq
=
cucul_init
(
0
,
0
);
if
(
!
p_vout
->
p_sys
->
p_
qq
)
p_vout
->
p_sys
->
p_
cv
=
cucul_create_canvas
(
0
,
0
);
if
(
!
p_vout
->
p_sys
->
p_
cv
)
{
msg_Err
(
p_vout
,
"cannot initialize libcucul"
);
free
(
p_vout
->
p_sys
);
return
VLC_EGENERIC
;
}
p_vout
->
p_sys
->
p_
kk
=
caca_attach
(
p_vout
->
p_sys
->
p_qq
);
if
(
!
p_vout
->
p_sys
->
p_
kk
)
p_vout
->
p_sys
->
p_
dp
=
caca_create_display
(
p_vout
->
p_sys
->
p_cv
);
if
(
!
p_vout
->
p_sys
->
p_
dp
)
{
msg_Err
(
p_vout
,
"cannot initialize libcaca"
);
cucul_
end
(
p_vout
->
p_sys
->
p_qq
);
cucul_
free_canvas
(
p_vout
->
p_sys
->
p_cv
);
free
(
p_vout
->
p_sys
);
return
VLC_EGENERIC
;
}
caca_set_
window_title
(
p_vout
->
p_sys
->
p_kk
,
VOUT_TITLE
" - Colour AsCii Art (caca)"
);
caca_set_
display_title
(
p_vout
->
p_sys
->
p_dp
,
VOUT_TITLE
" - Colour AsCii Art (caca)"
);
#else
if
(
caca_init
()
)
{
...
...
@@ -208,10 +208,11 @@ static int Init( vout_thread_t *p_vout )
p_vout
->
output
.
i_bmask
=
0x000000ff
;
/* Create the libcaca bitmap */
p_vout
->
p_sys
->
p_bitmap
=
#ifdef CACA_API_VERSION_1
cucul_create_bitmap
p_vout
->
p_sys
->
p_dither
=
cucul_create_dither
#else
p_vout
->
p_sys
->
p_bitmap
=
caca_create_bitmap
#endif
(
32
,
p_vout
->
output
.
i_width
,
p_vout
->
output
.
i_height
,
...
...
@@ -219,7 +220,11 @@ static int Init( vout_thread_t *p_vout )
p_vout
->
output
.
i_rmask
,
p_vout
->
output
.
i_gmask
,
p_vout
->
output
.
i_bmask
,
0x00000000
);
#ifdef CACA_API_VERSION_1
if
(
!
p_vout
->
p_sys
->
p_dither
)
#else
if
(
!
p_vout
->
p_sys
->
p_bitmap
)
#endif
{
msg_Err
(
p_vout
,
"could not create libcaca bitmap"
);
return
VLC_EGENERIC
;
...
...
@@ -264,7 +269,7 @@ static int Init( vout_thread_t *p_vout )
static
void
End
(
vout_thread_t
*
p_vout
)
{
#ifdef CACA_API_VERSION_1
cucul_free_
bitmap
(
p_vout
->
p_sys
->
p_bitmap
);
cucul_free_
dither
(
p_vout
->
p_sys
->
p_dither
);
#else
caca_free_bitmap
(
p_vout
->
p_sys
->
p_bitmap
);
#endif
...
...
@@ -280,8 +285,8 @@ static void Destroy( vlc_object_t *p_this )
vout_thread_t
*
p_vout
=
(
vout_thread_t
*
)
p_this
;
#ifdef CACA_API_VERSION_1
caca_
detach
(
p_vout
->
p_sys
->
p_kk
);
cucul_
end
(
p_vout
->
p_sys
->
p_qq
);
caca_
free_display
(
p_vout
->
p_sys
->
p_dp
);
cucul_
free_canvas
(
p_vout
->
p_sys
->
p_cv
);
#else
caca_end
();
#endif
...
...
@@ -301,28 +306,40 @@ static void Destroy( vlc_object_t *p_this )
*****************************************************************************/
static
int
Manage
(
vout_thread_t
*
p_vout
)
{
#ifdef CACA_API_VERSION_1
struct
caca_event
ev
;
#else
int
event
;
#endif
vlc_value_t
val
;
#ifdef CACA_API_VERSION_1
while
((
event
=
caca_get_event
(
p_vout
->
p_sys
->
p_kk
,
CACA_EVENT_KEY_PRESS
|
CACA_EVENT_RESIZE
)
))
while
((
caca_get_event
(
p_vout
->
p_sys
->
p_dp
,
CACA_EVENT_KEY_PRESS
|
CACA_EVENT_RESIZE
,
&
ev
,
0
)
))
#else
while
((
event
=
caca_get_event
(
CACA_EVENT_KEY_PRESS
|
CACA_EVENT_RESIZE
)
))
#endif
{
if
(
event
==
CACA_EVENT_RESIZE
)
{
/* Acknowledge the resize */
/* Acknowledge the resize */
#ifdef CACA_API_VERSION_1
caca_display
(
p_vout
->
p_sys
->
p_kk
);
if
(
ev
.
type
==
CACA_EVENT_RESIZE
)
{
caca_refresh_display
(
p_vout
->
p_sys
->
p_dp
);
continue
;
}
#else
if
(
event
==
CACA_EVENT_RESIZE
)
{
caca_refresh
();
#endif
continue
;
}
#endif
#ifdef CACA_API_VERSION_1
switch
(
ev
.
data
.
key
.
ch
)
#else
switch
(
event
&
0x00ffffff
)
#endif
{
case
'q'
:
val
.
i_int
=
KEY_MODIFIER_CTRL
|
'q'
;
...
...
@@ -346,12 +363,13 @@ static int Manage( vout_thread_t *p_vout )
static
void
Render
(
vout_thread_t
*
p_vout
,
picture_t
*
p_pic
)
{
#ifdef CACA_API_VERSION_1
cucul_clear
(
p_vout
->
p_sys
->
p_qq
);
cucul_draw_bitmap
(
p_vout
->
p_sys
->
p_qq
,
0
,
0
,
cucul_get_width
(
p_vout
->
p_sys
->
p_qq
)
-
1
,
cucul_get_height
(
p_vout
->
p_sys
->
p_qq
)
-
1
,
p_vout
->
p_sys
->
p_bitmap
,
p_pic
->
p
->
p_pixels
);
cucul_set_color
(
p_vout
->
p_sys
->
p_cv
,
CUCUL_COLOR_DEFAULT
,
CUCUL_COLOR_BLACK
);
cucul_clear_canvas
(
p_vout
->
p_sys
->
p_cv
);
cucul_dither_bitmap
(
p_vout
->
p_sys
->
p_cv
,
0
,
0
,
cucul_get_canvas_width
(
p_vout
->
p_sys
->
p_cv
)
-
1
,
cucul_get_canvas_height
(
p_vout
->
p_sys
->
p_cv
)
-
1
,
p_vout
->
p_sys
->
p_dither
,
p_pic
->
p
->
p_pixels
);
#else
caca_clear
();
caca_draw_bitmap
(
0
,
0
,
caca_get_width
()
-
1
,
caca_get_height
()
-
1
,
...
...
@@ -365,7 +383,7 @@ static void Render( vout_thread_t *p_vout, picture_t *p_pic )
static
void
Display
(
vout_thread_t
*
p_vout
,
picture_t
*
p_pic
)
{
#ifdef CACA_API_VERSION_1
caca_
display
(
p_vout
->
p_sys
->
p_kk
);
caca_
refresh_display
(
p_vout
->
p_sys
->
p_dp
);
#else
caca_refresh
();
#endif
...
...
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