mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vp8: warn and request sample if upscaling specified in header
Originally committed as revision 23809 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2829ce4b40
commit
92a544267b
@ -399,6 +399,9 @@ static int decode_frame_header(VP8Context *s, const uint8_t *buf, int buf_size)
|
|||||||
buf += 7;
|
buf += 7;
|
||||||
buf_size -= 7;
|
buf_size -= 7;
|
||||||
|
|
||||||
|
if (hscale || vscale)
|
||||||
|
av_log_missing_feature(s->avctx, "Upscaling", 1);
|
||||||
|
|
||||||
s->update_golden = s->update_altref = VP56_FRAME_CURRENT;
|
s->update_golden = s->update_altref = VP56_FRAME_CURRENT;
|
||||||
memcpy(s->prob->token , vp8_token_default_probs , sizeof(s->prob->token));
|
memcpy(s->prob->token , vp8_token_default_probs , sizeof(s->prob->token));
|
||||||
memcpy(s->prob->pred16x16, vp8_pred16x16_prob_inter, sizeof(s->prob->pred16x16));
|
memcpy(s->prob->pred16x16, vp8_pred16x16_prob_inter, sizeof(s->prob->pred16x16));
|
||||||
|
Loading…
Reference in New Issue
Block a user