Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
1ef6ac10
Commit
1ef6ac10
authored
11 years ago
by
Derek Buitenhuis
Browse files
Options
Downloads
Patches
Plain Diff
cllc: Implement YUV support
Signed-off-by:
Derek Buitenhuis
<
derek.buitenhuis@gmail.com
>
parent
b0ce601c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/cllc.c
+99
-1
99 additions, 1 deletion
libavcodec/cllc.c
with
99 additions
and
1 deletion
libavcodec/cllc.c
+
99
−
1
View file @
1ef6ac10
/*
/*
* Canopus Lossless Codec decoder
* Canopus Lossless Codec decoder
*
*
* Copyright (c) 2012 Derek Buitenhuis
* Copyright (c) 2012
-2013
Derek Buitenhuis
*
*
* This file is part of Libav.
* This file is part of Libav.
*
*
...
@@ -179,6 +179,34 @@ static int read_rgb24_component_line(CLLCContext *ctx, GetBitContext *gb,
...
@@ -179,6 +179,34 @@ static int read_rgb24_component_line(CLLCContext *ctx, GetBitContext *gb,
return
0
;
return
0
;
}
}
static
int
read_yuv_component_line
(
CLLCContext
*
ctx
,
GetBitContext
*
gb
,
int
*
top_left
,
VLC
*
vlc
,
uint8_t
*
outbuf
,
int
is_chroma
)
{
int
pred
,
code
;
int
i
;
OPEN_READER
(
bits
,
gb
);
pred
=
*
top_left
;
/* Simultaneously read and restore the line */
for
(
i
=
0
;
i
<
ctx
->
avctx
->
width
>>
is_chroma
;
i
++
)
{
UPDATE_CACHE
(
bits
,
gb
);
GET_VLC
(
code
,
bits
,
gb
,
vlc
->
table
,
7
,
2
);
pred
+=
code
;
outbuf
[
i
]
=
pred
;
}
CLOSE_READER
(
bits
,
gb
);
/* Stash the first pixel */
*
top_left
=
outbuf
[
0
];
return
0
;
}
static
int
decode_argb_frame
(
CLLCContext
*
ctx
,
GetBitContext
*
gb
,
AVFrame
*
pic
)
static
int
decode_argb_frame
(
CLLCContext
*
ctx
,
GetBitContext
*
gb
,
AVFrame
*
pic
)
{
{
AVCodecContext
*
avctx
=
ctx
->
avctx
;
AVCodecContext
*
avctx
=
ctx
->
avctx
;
...
@@ -267,6 +295,61 @@ static int decode_rgb24_frame(CLLCContext *ctx, GetBitContext *gb, AVFrame *pic)
...
@@ -267,6 +295,61 @@ static int decode_rgb24_frame(CLLCContext *ctx, GetBitContext *gb, AVFrame *pic)
return
0
;
return
0
;
}
}
static
int
decode_yuv_frame
(
CLLCContext
*
ctx
,
GetBitContext
*
gb
,
AVFrame
*
pic
)
{
AVCodecContext
*
avctx
=
ctx
->
avctx
;
uint8_t
block
;
uint8_t
*
dst
[
3
];
int
pred
[
3
];
int
ret
;
int
i
,
j
;
VLC
vlc
[
2
];
pred
[
0
]
=
0x80
;
pred
[
1
]
=
0x80
;
pred
[
2
]
=
0x80
;
dst
[
0
]
=
pic
->
data
[
0
];
dst
[
1
]
=
pic
->
data
[
1
];
dst
[
2
]
=
pic
->
data
[
2
];
skip_bits
(
gb
,
8
);
block
=
get_bits
(
gb
,
8
);
if
(
block
)
{
avpriv_request_sample
(
ctx
->
avctx
,
"Blocked YUV"
);
return
AVERROR_PATCHWELCOME
;
}
/* Read in code table for luma and chroma */
for
(
i
=
0
;
i
<
2
;
i
++
)
{
ret
=
read_code_table
(
ctx
,
gb
,
&
vlc
[
i
]);
if
(
ret
<
0
)
{
for
(
j
=
0
;
j
<=
i
;
j
++
)
ff_free_vlc
(
&
vlc
[
j
]);
av_log
(
ctx
->
avctx
,
AV_LOG_ERROR
,
"Could not read code table %d.
\n
"
,
i
);
return
ret
;
}
}
/* Read in and restore every line */
for
(
i
=
0
;
i
<
avctx
->
height
;
i
++
)
{
read_yuv_component_line
(
ctx
,
gb
,
&
pred
[
0
],
&
vlc
[
0
],
dst
[
0
],
0
);
/* Y */
read_yuv_component_line
(
ctx
,
gb
,
&
pred
[
1
],
&
vlc
[
1
],
dst
[
1
],
1
);
/* U */
read_yuv_component_line
(
ctx
,
gb
,
&
pred
[
2
],
&
vlc
[
1
],
dst
[
2
],
1
);
/* V */
for
(
j
=
0
;
j
<
3
;
j
++
)
dst
[
j
]
+=
pic
->
linesize
[
j
];
}
for
(
i
=
0
;
i
<
2
;
i
++
)
ff_free_vlc
(
&
vlc
[
i
]);
return
0
;
}
static
int
cllc_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
static
int
cllc_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_picture_ptr
,
AVPacket
*
avpkt
)
int
*
got_picture_ptr
,
AVPacket
*
avpkt
)
{
{
...
@@ -324,6 +407,21 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
...
@@ -324,6 +407,21 @@ static int cllc_decode_frame(AVCodecContext *avctx, void *data,
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Frame coding type: %d
\n
"
,
coding_type
);
av_log
(
avctx
,
AV_LOG_DEBUG
,
"Frame coding type: %d
\n
"
,
coding_type
);
switch
(
coding_type
)
{
switch
(
coding_type
)
{
case
0
:
avctx
->
pix_fmt
=
AV_PIX_FMT_YUV422P
;
avctx
->
bits_per_raw_sample
=
8
;
ret
=
ff_get_buffer
(
avctx
,
pic
,
0
);
if
(
ret
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Could not allocate buffer.
\n
"
);
return
ret
;
}
ret
=
decode_yuv_frame
(
ctx
,
&
gb
,
pic
);
if
(
ret
<
0
)
return
ret
;
break
;
case
1
:
case
1
:
case
2
:
case
2
:
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB24
;
avctx
->
pix_fmt
=
AV_PIX_FMT_RGB24
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment