mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
mpegvideoenc: fix multislice fate tests with threading disabled.
The MPEG encoding code assumes that n_threads == n_slices, and thus it should use n_slices even if threading itself is disabled.
This commit is contained in:
parent
43b6c3eb18
commit
83a8b3002f
@ -586,7 +586,7 @@ av_cold int MPV_common_init(MpegEncContext *s)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if((s->avctx->active_thread_type & FF_THREAD_SLICE) &&
|
if((s->encoding || (s->avctx->active_thread_type & FF_THREAD_SLICE)) &&
|
||||||
(s->avctx->thread_count > MAX_THREADS || (s->avctx->thread_count > s->mb_height && s->mb_height))){
|
(s->avctx->thread_count > MAX_THREADS || (s->avctx->thread_count > s->mb_height && s->mb_height))){
|
||||||
av_log(s->avctx, AV_LOG_ERROR, "too many threads\n");
|
av_log(s->avctx, AV_LOG_ERROR, "too many threads\n");
|
||||||
return -1;
|
return -1;
|
||||||
@ -750,7 +750,7 @@ av_cold int MPV_common_init(MpegEncContext *s)
|
|||||||
s->thread_context[0]= s;
|
s->thread_context[0]= s;
|
||||||
|
|
||||||
if (s->width && s->height) {
|
if (s->width && s->height) {
|
||||||
if (HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_SLICE) {
|
if (s->encoding || (HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_SLICE)) {
|
||||||
threads = s->avctx->thread_count;
|
threads = s->avctx->thread_count;
|
||||||
|
|
||||||
for(i=1; i<threads; i++){
|
for(i=1; i<threads; i++){
|
||||||
@ -782,7 +782,7 @@ void MPV_common_end(MpegEncContext *s)
|
|||||||
{
|
{
|
||||||
int i, j, k;
|
int i, j, k;
|
||||||
|
|
||||||
if (HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_SLICE) {
|
if (s->encoding || (HAVE_THREADS && s->avctx->active_thread_type&FF_THREAD_SLICE)) {
|
||||||
for(i=0; i<s->avctx->thread_count; i++){
|
for(i=0; i<s->avctx->thread_count; i++){
|
||||||
free_duplicate_context(s->thread_context[i]);
|
free_duplicate_context(s->thread_context[i]);
|
||||||
}
|
}
|
||||||
|
@ -1226,7 +1226,7 @@ int MPV_encode_picture(AVCodecContext *avctx,
|
|||||||
{
|
{
|
||||||
MpegEncContext *s = avctx->priv_data;
|
MpegEncContext *s = avctx->priv_data;
|
||||||
AVFrame *pic_arg = data;
|
AVFrame *pic_arg = data;
|
||||||
int i, stuffing_count, context_count = avctx->active_thread_type&FF_THREAD_SLICE ? avctx->thread_count : 1;
|
int i, stuffing_count, context_count = avctx->thread_count;
|
||||||
|
|
||||||
for(i=0; i<context_count; i++){
|
for(i=0; i<context_count; i++){
|
||||||
int start_y= s->thread_context[i]->start_mb_y;
|
int start_y= s->thread_context[i]->start_mb_y;
|
||||||
@ -2759,7 +2759,7 @@ static int encode_picture(MpegEncContext *s, int picture_number)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int bits;
|
int bits;
|
||||||
int context_count = (s->avctx->active_thread_type & FF_THREAD_SLICE) ? s->avctx->thread_count : 1;
|
int context_count = s->avctx->thread_count;
|
||||||
|
|
||||||
s->picture_number = picture_number;
|
s->picture_number = picture_number;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user