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
3f77c411
Commit
3f77c411
authored
Feb 11, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bmpenc: switch to encode2().
parent
b498867d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
11 deletions
+16
-11
bmpenc.c
libavcodec/bmpenc.c
+16
-11
No files found.
libavcodec/bmpenc.c
View file @
3f77c411
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#include "avcodec.h"
#include "avcodec.h"
#include "bytestream.h"
#include "bytestream.h"
#include "bmp.h"
#include "bmp.h"
#include "internal.h"
static
const
uint32_t
monoblack_pal
[]
=
{
0x000000
,
0xFFFFFF
};
static
const
uint32_t
monoblack_pal
[]
=
{
0x000000
,
0xFFFFFF
};
static
const
uint32_t
rgb565_masks
[]
=
{
0xF800
,
0x07E0
,
0x001F
};
static
const
uint32_t
rgb565_masks
[]
=
{
0xF800
,
0x07E0
,
0x001F
};
...
@@ -63,16 +64,16 @@ static av_cold int bmp_encode_init(AVCodecContext *avctx){
...
@@ -63,16 +64,16 @@ static av_cold int bmp_encode_init(AVCodecContext *avctx){
return
0
;
return
0
;
}
}
static
int
bmp_encode_frame
(
AVCodecContext
*
avctx
,
unsigned
char
*
buf
,
int
buf_size
,
void
*
data
){
static
int
bmp_encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
pict
,
int
*
got_packet
)
{
BMPContext
*
s
=
avctx
->
priv_data
;
BMPContext
*
s
=
avctx
->
priv_data
;
AVFrame
*
pict
=
data
;
AVFrame
*
const
p
=
(
AVFrame
*
)
&
s
->
picture
;
AVFrame
*
const
p
=
(
AVFrame
*
)
&
s
->
picture
;
int
n_bytes_image
,
n_bytes_per_row
,
n_bytes
,
i
,
n
,
hsize
;
int
n_bytes_image
,
n_bytes_per_row
,
n_bytes
,
i
,
n
,
hsize
,
ret
;
const
uint32_t
*
pal
=
NULL
;
const
uint32_t
*
pal
=
NULL
;
int
pad_bytes_per_row
,
pal_entries
=
0
,
compression
=
BMP_RGB
;
int
pad_bytes_per_row
,
pal_entries
=
0
,
compression
=
BMP_RGB
;
int
bit_count
=
avctx
->
bits_per_coded_sample
;
int
bit_count
=
avctx
->
bits_per_coded_sample
;
uint8_t
*
ptr
;
uint8_t
*
ptr
,
*
buf
;
unsigned
char
*
buf0
=
buf
;
*
p
=
*
pict
;
*
p
=
*
pict
;
p
->
pict_type
=
AV_PICTURE_TYPE_I
;
p
->
pict_type
=
AV_PICTURE_TYPE_I
;
p
->
key_frame
=
1
;
p
->
key_frame
=
1
;
...
@@ -111,10 +112,11 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
...
@@ -111,10 +112,11 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
#define SIZE_BITMAPINFOHEADER 40
#define SIZE_BITMAPINFOHEADER 40
hsize
=
SIZE_BITMAPFILEHEADER
+
SIZE_BITMAPINFOHEADER
+
(
pal_entries
<<
2
);
hsize
=
SIZE_BITMAPFILEHEADER
+
SIZE_BITMAPINFOHEADER
+
(
pal_entries
<<
2
);
n_bytes
=
n_bytes_image
+
hsize
;
n_bytes
=
n_bytes_image
+
hsize
;
if
(
n_bytes
>
buf_size
)
{
if
((
ret
=
ff_alloc_packet
(
pkt
,
n_bytes
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"
buf size too small (need %d, got %d)
\n
"
,
n_bytes
,
buf_size
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"
Error getting output packet.
\n
"
);
return
-
1
;
return
ret
;
}
}
buf
=
pkt
->
data
;
bytestream_put_byte
(
&
buf
,
'B'
);
// BITMAPFILEHEADER.bfType
bytestream_put_byte
(
&
buf
,
'B'
);
// BITMAPFILEHEADER.bfType
bytestream_put_byte
(
&
buf
,
'M'
);
// do.
bytestream_put_byte
(
&
buf
,
'M'
);
// do.
bytestream_put_le32
(
&
buf
,
n_bytes
);
// BITMAPFILEHEADER.bfSize
bytestream_put_le32
(
&
buf
,
n_bytes
);
// BITMAPFILEHEADER.bfSize
...
@@ -136,7 +138,7 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
...
@@ -136,7 +138,7 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
bytestream_put_le32
(
&
buf
,
pal
[
i
]
&
0xFFFFFF
);
bytestream_put_le32
(
&
buf
,
pal
[
i
]
&
0xFFFFFF
);
// BMP files are bottom-to-top so we start from the end...
// BMP files are bottom-to-top so we start from the end...
ptr
=
p
->
data
[
0
]
+
(
avctx
->
height
-
1
)
*
p
->
linesize
[
0
];
ptr
=
p
->
data
[
0
]
+
(
avctx
->
height
-
1
)
*
p
->
linesize
[
0
];
buf
=
buf0
+
hsize
;
buf
=
pkt
->
data
+
hsize
;
for
(
i
=
0
;
i
<
avctx
->
height
;
i
++
)
{
for
(
i
=
0
;
i
<
avctx
->
height
;
i
++
)
{
if
(
bit_count
==
16
)
{
if
(
bit_count
==
16
)
{
const
uint16_t
*
src
=
(
const
uint16_t
*
)
ptr
;
const
uint16_t
*
src
=
(
const
uint16_t
*
)
ptr
;
...
@@ -151,7 +153,10 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
...
@@ -151,7 +153,10 @@ static int bmp_encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_s
buf
+=
pad_bytes_per_row
;
buf
+=
pad_bytes_per_row
;
ptr
-=
p
->
linesize
[
0
];
// ... and go back
ptr
-=
p
->
linesize
[
0
];
// ... and go back
}
}
return
n_bytes
;
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
*
got_packet
=
1
;
return
0
;
}
}
AVCodec
ff_bmp_encoder
=
{
AVCodec
ff_bmp_encoder
=
{
...
@@ -160,7 +165,7 @@ AVCodec ff_bmp_encoder = {
...
@@ -160,7 +165,7 @@ AVCodec ff_bmp_encoder = {
.
id
=
CODEC_ID_BMP
,
.
id
=
CODEC_ID_BMP
,
.
priv_data_size
=
sizeof
(
BMPContext
),
.
priv_data_size
=
sizeof
(
BMPContext
),
.
init
=
bmp_encode_init
,
.
init
=
bmp_encode_init
,
.
encode
=
bmp_encode_frame
,
.
encode
2
=
bmp_encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_BGR24
,
PIX_FMT_BGR24
,
PIX_FMT_RGB555
,
PIX_FMT_RGB444
,
PIX_FMT_RGB565
,
PIX_FMT_RGB555
,
PIX_FMT_RGB444
,
PIX_FMT_RGB565
,
...
...
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