diff options
author | Clément Bœsch <u@pkh.me> | 2016-06-21 22:20:49 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-06-21 22:20:49 +0200 |
commit | 475a686a0157a4f0243a0df4a02fadf469e5159c (patch) | |
tree | 29617b469636802a6d0eea15cea1fdc99d6082e2 /libavcodec/pgssubdec.c | |
parent | e4c07dc4b7e7b7763ed350366a0f665b8865d52a (diff) | |
parent | 885a9d6087315a85d98f7e89656ef01dc7104c4c (diff) | |
download | ffmpeg-475a686a0157a4f0243a0df4a02fadf469e5159c.tar.gz |
Merge commit '885a9d6087315a85d98f7e89656ef01dc7104c4c'
* commit '885a9d6087315a85d98f7e89656ef01dc7104c4c':
pgssub: Fix subpicture colorspace and range
See 9779b6262471d553c1ed811ff7312564e39d8adf
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/pgssubdec.c')
-rw-r--r-- | libavcodec/pgssubdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pgssubdec.c b/libavcodec/pgssubdec.c index 133d08bfa7..880fc96282 100644 --- a/libavcodec/pgssubdec.c +++ b/libavcodec/pgssubdec.c @@ -354,7 +354,7 @@ static int parse_palette_segment(AVCodecContext *avctx, cb = bytestream_get_byte(&buf); alpha = bytestream_get_byte(&buf); - /* Default to BT.709 colorimetry. In case of <= 576 height use BT.601 */ + /* Default to BT.709 colorspace. In case of <= 576 height use BT.601 */ if (avctx->height <= 0 || avctx->height > 576) { YUV_TO_RGB1_CCIR_BT709(cb, cr); } else { |