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
a1ba1f20
Commit
a1ba1f20
authored
Dec 01, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mjpegenc: cosmetics, reformat jpeg_put_comments()
parent
0812f5a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
15 deletions
+14
-15
mjpegenc.c
libavcodec/mjpegenc.c
+14
-15
No files found.
libavcodec/mjpegenc.c
View file @
a1ba1f20
...
...
@@ -153,18 +153,17 @@ static void jpeg_put_comments(AVCodecContext *avctx, PutBitContext *p)
int
size
;
uint8_t
*
ptr
;
if
(
avctx
->
sample_aspect_ratio
.
num
>
0
&&
avctx
->
sample_aspect_ratio
.
den
>
0
)
{
/* JFIF header */
put_marker
(
p
,
APP0
);
put_bits
(
p
,
16
,
16
);
avpriv_put_string
(
p
,
"JFIF"
,
1
);
/* this puts the trailing zero-byte too */
put_bits
(
p
,
16
,
0x0201
);
/* v 1.02 */
put_bits
(
p
,
8
,
0
);
/* units type: 0 - aspect ratio */
put_bits
(
p
,
16
,
avctx
->
sample_aspect_ratio
.
num
);
put_bits
(
p
,
16
,
avctx
->
sample_aspect_ratio
.
den
);
put_bits
(
p
,
8
,
0
);
/* thumbnail width */
put_bits
(
p
,
8
,
0
);
/* thumbnail height */
if
(
avctx
->
sample_aspect_ratio
.
num
>
0
&&
avctx
->
sample_aspect_ratio
.
den
>
0
)
{
/* JFIF header */
put_marker
(
p
,
APP0
);
put_bits
(
p
,
16
,
16
);
avpriv_put_string
(
p
,
"JFIF"
,
1
);
/* this puts the trailing zero-byte too */
put_bits
(
p
,
16
,
0x0201
);
/* v 1.02 */
put_bits
(
p
,
8
,
0
);
/* units type: 0 - aspect ratio */
put_bits
(
p
,
16
,
avctx
->
sample_aspect_ratio
.
num
);
put_bits
(
p
,
16
,
avctx
->
sample_aspect_ratio
.
den
);
put_bits
(
p
,
8
,
0
);
/* thumbnail width */
put_bits
(
p
,
8
,
0
);
/* thumbnail height */
}
/* comment */
...
...
@@ -178,9 +177,9 @@ static void jpeg_put_comments(AVCodecContext *avctx, PutBitContext *p)
AV_WB16
(
ptr
,
size
);
}
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV420P
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV422P
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV444P
)
{
if
(
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV420P
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV422P
||
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV444P
)
{
put_marker
(
p
,
COM
);
flush_put_bits
(
p
);
ptr
=
put_bits_ptr
(
p
);
...
...
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