mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffv1: fix gray
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b6267901c4
commit
05f228b0a0
@ -1296,11 +1296,7 @@ static int encode_slice(AVCodecContext *c, void *arg)
|
|||||||
int x = fs->slice_x;
|
int x = fs->slice_x;
|
||||||
int y = fs->slice_y;
|
int y = fs->slice_y;
|
||||||
AVFrame *const p = &f->picture;
|
AVFrame *const p = &f->picture;
|
||||||
const int ps = (av_pix_fmt_desc_get(c->pix_fmt)->flags & PIX_FMT_PLANAR)
|
const int ps = av_pix_fmt_desc_get(c->pix_fmt)->comp[0].step_minus1 + 1;
|
||||||
?
|
|
||||||
(f->bits_per_raw_sample>8)+1
|
|
||||||
:
|
|
||||||
4;
|
|
||||||
|
|
||||||
if (p->key_frame)
|
if (p->key_frame)
|
||||||
clear_slice_state(f, fs);
|
clear_slice_state(f, fs);
|
||||||
@ -1735,11 +1731,7 @@ static int decode_slice(AVCodecContext *c, void *arg)
|
|||||||
FFV1Context *fs = *(void **)arg;
|
FFV1Context *fs = *(void **)arg;
|
||||||
FFV1Context *f = fs->avctx->priv_data;
|
FFV1Context *f = fs->avctx->priv_data;
|
||||||
int width, height, x, y;
|
int width, height, x, y;
|
||||||
const int ps = (av_pix_fmt_desc_get(c->pix_fmt)->flags & PIX_FMT_PLANAR)
|
const int ps = av_pix_fmt_desc_get(c->pix_fmt)->comp[0].step_minus1 + 1;
|
||||||
?
|
|
||||||
(c->bits_per_raw_sample>8)+1
|
|
||||||
:
|
|
||||||
4;
|
|
||||||
AVFrame * const p = &f->picture;
|
AVFrame * const p = &f->picture;
|
||||||
|
|
||||||
if (f->version > 2) {
|
if (f->version > 2) {
|
||||||
|
Loading…
Reference in New Issue
Block a user