mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
h264: codec reinit: remove statements without effect
avctx->coded_{height,width} will always equal h->{height,width} since init_dimensions() does that explicitly, Size changes are detected by changes in mb_{height,width} earlier and propagated through the needs_reinit variable.
This commit is contained in:
parent
6ef96292d9
commit
34c5a6660a
@ -1306,10 +1306,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264Context *h0)
|
||||
}
|
||||
}
|
||||
|
||||
if (h->context_initialized &&
|
||||
(h->width != h->avctx->coded_width ||
|
||||
h->height != h->avctx->coded_height ||
|
||||
needs_reinit)) {
|
||||
if (h->context_initialized && needs_reinit) {
|
||||
if (h != h0) {
|
||||
av_log(h->avctx, AV_LOG_ERROR,
|
||||
"changing width %d -> %d / height %d -> %d on "
|
||||
|
Loading…
Reference in New Issue
Block a user