Skip to content

Commit

Permalink
0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-huet committed Dec 19, 2014
1 parent 824b5b5 commit 1145cdf
Show file tree
Hide file tree
Showing 11 changed files with 808 additions and 385 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
version 0.9.4:

- Modified alpha plane encoding to allow progressive display and
streaming encoding. This change is incompatible, so images
containing alpha from the previous versions of the format cannot be
decoded.

- Added 4:2:2 and 4:2:0 chroma formats with MPEG2 chroma sample position.

version 0.9.3:

- Fixed small palette PNG.
Expand Down
10 changes: 9 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ as input.
with the '-keepmetadata' option. For JPEG input, EXIF, ICCP and XMP
are copied. For PNG input, ICCP is copied.

- Objective comparisons: the JCTVC encoder is tuned for PSNR only, not
for SSIM, so you should use PSNR when making objective comparison
with other formats. x265 is tuned by default for SSIM.

3) BPG decoder
--------------

Expand Down Expand Up @@ -130,7 +134,11 @@ into it. Stylesheets are supported (the 'id' and 'class' attributes
are preserved). The 'width' and 'height' attributes are supported only
with pixel units.

asm.js gives an interesting speed boost, so we hope that more browser
The image data is downloaded with the XMLHttpRequest object. So the
BPG images and the BPG Javascript decoder must be in the same domain
unless Cross-Origin Resource Sharing is used.

asm.js gives an interesting speed boost, so we hope that more browsers
will support this Javascript subset.

6) FFmpeg modifications
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.3
0.9.4
4 changes: 3 additions & 1 deletion bpgdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,13 @@ static void bpg_show_info(const char *filename, int show_extensions)
FILE *f;
BPGImageInfo p_s, *p = &p_s;
BPGExtensionData *first_md, *md;
static const char *format_str[4] = {
static const char *format_str[6] = {
"Gray",
"4:2:0",
"4:2:2",
"4:4:4",
"4:2:0_video",
"4:2:2_video",
};
static const char *color_space_str[BPG_CS_COUNT] = {
"YCbCr",
Expand Down
Loading

0 comments on commit 1145cdf

Please sign in to comment.