Browse Source

Merge commit '8d695dc411c1ae28477f107d6f7bf2db59af95df'

* commit '8d695dc411c1ae28477f107d6f7bf2db59af95df':
  mpeg: Mark ff_mpeg_set_erpic() static

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
412015694c
2 changed files with 4 additions and 5 deletions
  1. +4
    -4
      libavcodec/mpegvideo.c
  2. +0
    -1
      libavcodec/mpegvideo.h

+ 4
- 4
libavcodec/mpegvideo.c View File

@@ -3237,7 +3237,7 @@ void ff_MPV_report_decode_progress(MpegEncContext *s)
}

#if CONFIG_ERROR_RESILIENCE
void ff_mpeg_set_erpic(ERPicture *dst, Picture *src)
static void set_erpic(ERPicture *dst, Picture *src)
{
int i;

@@ -3264,9 +3264,9 @@ void ff_mpeg_er_frame_start(MpegEncContext *s)
{
ERContext *er = &s->er;

ff_mpeg_set_erpic(&er->cur_pic, s->current_picture_ptr);
ff_mpeg_set_erpic(&er->next_pic, s->next_picture_ptr);
ff_mpeg_set_erpic(&er->last_pic, s->last_picture_ptr);
set_erpic(&er->cur_pic, s->current_picture_ptr);
set_erpic(&er->next_pic, s->next_picture_ptr);
set_erpic(&er->last_pic, s->last_picture_ptr);

er->pp_time = s->pp_time;
er->pb_time = s->pb_time;


+ 0
- 1
libavcodec/mpegvideo.h View File

@@ -755,7 +755,6 @@ void ff_set_qscale(MpegEncContext * s, int qscale);

/* Error resilience */
void ff_mpeg_er_frame_start(MpegEncContext *s);
void ff_mpeg_set_erpic(ERPicture *dst, Picture *src);

int ff_dct_common_init(MpegEncContext *s);
int ff_dct_encode_init(MpegEncContext *s);


Loading…
Cancel
Save