Commit 43c6c186 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd88738e4'

* commit 'd88738e4':
  mpegvideo: Conditionally build error_resilience bits
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents b094931a d88738e4
...@@ -3237,6 +3237,7 @@ void ff_MPV_report_decode_progress(MpegEncContext *s) ...@@ -3237,6 +3237,7 @@ void ff_MPV_report_decode_progress(MpegEncContext *s)
ff_thread_report_progress(&s->current_picture_ptr->f, s->mb_y, 0); ff_thread_report_progress(&s->current_picture_ptr->f, s->mb_y, 0);
} }
#if CONFIG_ERROR_RESILIENCE
void ff_mpeg_er_frame_start(MpegEncContext *s) void ff_mpeg_er_frame_start(MpegEncContext *s)
{ {
ERContext *er = &s->er; ERContext *er = &s->er;
...@@ -3252,3 +3253,4 @@ void ff_mpeg_er_frame_start(MpegEncContext *s) ...@@ -3252,3 +3253,4 @@ void ff_mpeg_er_frame_start(MpegEncContext *s)
ff_er_frame_start(er); ff_er_frame_start(er);
} }
#endif /* CONFIG_ERROR_RESILIENCE */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment