Opened 10 years ago

Closed 8 years ago

#3271 closed enhancement (fixed)

Allow using additional pixel formats with libvpx-vp9

Reported by: GreatEmerald Owned by:
Priority: wish Component: avcodec
Version: git-master Keywords: libvpx
Cc: Blocked By:
Blocking: Reproduced by developer: no
Analyzed by developer: no

Description

Currently ffmpeg assumes that libvpx is only capable of yuv420p pixel format. However, libvpx-vp9 with Profile 1 allows additional pixel formats - yuv422p and yuv444p, and possibly also yuva422p and yuva444p (the libvpx code states that they also support alpha in Profile 1). So these pixel formats should be made available.

The code comments for that can be found here (line 1133):
https://chromium.googlesource.com/webm/libvpx/+/2344e3a2e1600a2a31e63d2a82a9bbd0b91912b0/vp9/encoder/vp9_bitstream.c
The announcement of yuv444p support can be found here:
https://groups.google.com/a/webmproject.org/forum/?fromgroups=#!topic/webm-discuss/UzoX7owhwB0

Change History (7)

comment:1 by Carl Eugen Hoyos, 10 years ago

Component: undeterminedavcodec
Keywords: libvpx added
Priority: normalwish
Status: newopen
Version: 2.1.1git-master

comment:2 by GreatEmerald, 10 years ago

Still happens in libavcodec 55.52.102.

comment:3 by SocDemScum, 9 years ago

libavcodec 56.19.100 produces an error saying that yuv420p colour spaces can only be used on profile 0 and 2, when telling it to use profile 1 and a yuv444p colour space.

Version 0, edited 9 years ago by SocDemScum (next)

comment:4 by Carl Eugen Hoyos, 8 years ago

Is this still a valid ticket for yuva4xxp or was alpha abandoned for vp9?

comment:5 by jzern, 8 years ago

Alpha never made it to the final vp9 bitstream, but can be done in the same way as vp8 -- encoding and muxing the alpha plane separately.

comment:6 by cdlvcdlv, 8 years ago

I've made vp8/webm videos with alpha using ffmpeg with this command:

ffmpeg -i INPUT -c:v libvpx -pix_fmt yuva420p -metadata:s:v:0 alpha_mode="1" OUTPUT.webm

But when I try

ffmpeg -i INPUT -c:v libvpx-vp9 -pix_fmt yuva420p -metadata:s:v:0 alpha_mode="1" OUTPUT.webm

ffmpeg complains and changes the pixel format

Incompatible pixel format 'yuva420p' for codec 'libvpx-vp9', auto-selecting form at 'yuv420p'

Nevertheless, it seems there is a little utility to make vp9 videos. I've not tested it to see whether it works using Chrome but, as a part of chromium, we could assume compatibility.

https://chromium.googlesource.com/webm/webm-tools/+/master/alpha_encoder/

The README tells about VP8 only, but in the source code you can see the options:

printf(" -c codec (vp8 or vp9). default is vp8\n");

comment:7 by Carl Eugen Hoyos, 8 years ago

Resolution: fixed
Status: openclosed

Implemented by Vignesh Venkatasubramanian in acca56d9629b7fc158ce188190d22314c3d92c39

Note: See TracTickets for help on using tickets.