Browse Source

Merge commit '3e175a2a550f5c2f788e8cd969052e10a5025a27'

* commit '3e175a2a550f5c2f788e8cd969052e10a5025a27':
  avconv: mark attachment streams as immediately finished
  vaapi: fix argument for ff_vaapi_common_end_frame call

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 13 years ago
parent
commit
9df00574fc
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      ffmpeg_opt.c
  2. +1
    -1
      libavcodec/vaapi.c

+ 1
- 0
ffmpeg_opt.c View File

@@ -1314,6 +1314,7 @@ static OutputStream *new_attachment_stream(OptionsContext *o, AVFormatContext *o
{
OutputStream *ost = new_output_stream(o, oc, AVMEDIA_TYPE_ATTACHMENT, source_index);
ost->stream_copy = 1;
ost->finished = 1;
return ost;
}



+ 1
- 1
libavcodec/vaapi.c View File

@@ -212,7 +212,7 @@ int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx)
ff_mpeg_draw_horiz_band(s, 0, s->avctx->height);

finish:
ff_vaapi_common_end_frame(avctx->priv_data);
ff_vaapi_common_end_frame(avctx);
return ret;
}



Loading…
Cancel
Save