Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a4a26f51
Commit
a4a26f51
authored
Nov 20, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tscc: remove some pointless comments and empty lines.
parent
ac1e93f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
tscc.c
libavcodec/tscc.c
+0
-23
No files found.
libavcodec/tscc.c
View file @
a4a26f51
...
@@ -44,10 +44,6 @@
...
@@ -44,10 +44,6 @@
#include <zlib.h>
#include <zlib.h>
/*
* Decoder context
*/
typedef
struct
TsccContext
{
typedef
struct
TsccContext
{
AVCodecContext
*
avctx
;
AVCodecContext
*
avctx
;
...
@@ -66,11 +62,6 @@ typedef struct TsccContext {
...
@@ -66,11 +62,6 @@ typedef struct TsccContext {
uint32_t
pal
[
256
];
uint32_t
pal
[
256
];
}
CamtasiaContext
;
}
CamtasiaContext
;
/*
*
* Decode a frame
*
*/
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
AVPacket
*
avpkt
)
AVPacket
*
avpkt
)
{
{
...
@@ -132,13 +123,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
...
@@ -132,13 +123,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
return
buf_size
;
return
buf_size
;
}
}
/*
*
* Init tscc decoder
*
*/
static
av_cold
int
decode_init
(
AVCodecContext
*
avctx
)
static
av_cold
int
decode_init
(
AVCodecContext
*
avctx
)
{
{
CamtasiaContext
*
const
c
=
avctx
->
priv_data
;
CamtasiaContext
*
const
c
=
avctx
->
priv_data
;
...
@@ -184,13 +168,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
...
@@ -184,13 +168,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
return
0
;
return
0
;
}
}
/*
*
* Uninit tscc decoder
*
*/
static
av_cold
int
decode_end
(
AVCodecContext
*
avctx
)
static
av_cold
int
decode_end
(
AVCodecContext
*
avctx
)
{
{
CamtasiaContext
*
const
c
=
avctx
->
priv_data
;
CamtasiaContext
*
const
c
=
avctx
->
priv_data
;
...
...
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