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
fee23a72
Commit
fee23a72
authored
Aug 22, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ogt/*: updated the prototype of the decode function.
parent
136fe6c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
modules/codec/ogt/cvd.c
modules/codec/ogt/cvd.c
+3
-3
modules/codec/ogt/ogt.c
modules/codec/ogt/ogt.c
+5
-5
No files found.
modules/codec/ogt/cvd.c
View file @
fee23a72
...
...
@@ -75,10 +75,9 @@ vlc_module_end();
*****************************************************************************/
static
block_t
*
Reassemble
(
decoder_t
*
,
block_t
**
);
static
void
Decode
(
decoder_t
*
,
block_t
**
);
static
subpicture_t
*
Decode
(
decoder_t
*
,
block_t
**
);
static
block_t
*
Packetize
(
decoder_t
*
,
block_t
**
);
/*****************************************************************************
* VCDSubOpen
*****************************************************************************
...
...
@@ -140,7 +139,7 @@ static int PacketizerOpen( vlc_object_t *p_this )
/*****************************************************************************
* Decode:
*****************************************************************************/
static
void
static
subpicture_t
*
Decode
(
decoder_t
*
p_dec
,
block_t
**
pp_block
)
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
...
...
@@ -172,6 +171,7 @@ Decode ( decoder_t *p_dec, block_t **pp_block )
VCDSubInitSubtitleBlock
(
p_sys
);
}
return
NULL
;
}
/*****************************************************************************
...
...
modules/codec/ogt/ogt.c
View file @
fee23a72
...
...
@@ -72,10 +72,9 @@ vlc_module_end();
* Local prototypes
*****************************************************************************/
static
block_t
*
Reassemble
(
decoder_t
*
,
block_t
**
);
static
void
Decode
(
decoder_t
*
,
block_t
**
);
static
block_t
*
Packetize
(
decoder_t
*
,
block_t
**
);
static
block_t
*
Reassemble
(
decoder_t
*
,
block_t
**
);
static
subpicture_t
*
Decode
(
decoder_t
*
,
block_t
**
);
static
block_t
*
Packetize
(
decoder_t
*
,
block_t
**
);
/*****************************************************************************
* VCDSubOpen
...
...
@@ -138,7 +137,7 @@ static int PacketizerOpen( vlc_object_t *p_this )
/*****************************************************************************
* Decode:
*****************************************************************************/
static
void
static
subpicture_t
*
Decode
(
decoder_t
*
p_dec
,
block_t
**
pp_block
)
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
...
...
@@ -170,6 +169,7 @@ Decode ( decoder_t *p_dec, block_t **pp_block )
VCDSubInitSubtitleBlock
(
p_sys
);
}
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