Browse Source

ffmpeg: replace av_buffersrc_buffer with av_buffersrc_add_ref.

tags/n0.11
Nicolas George 13 years ago
parent
commit
6ec1e0fed9
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      ffmpeg.c

+ 4
- 2
ffmpeg.c View File

@@ -2594,7 +2594,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
/* no picture yet */
if (!pkt->size)
for (i = 0; i < ist->nb_filters; i++)
av_buffersrc_buffer(ist->filters[i]->filter, NULL);
av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
return ret;
}

@@ -2658,7 +2658,9 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int

av_assert0(buf->refcount>0);
buf->refcount++;
av_buffersrc_buffer(ist->filters[i]->filter, fb);
av_buffersrc_add_ref(ist->filters[i]->filter, fb,
AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
AV_BUFFERSRC_FLAG_NO_COPY);
} else
if(av_vsrc_buffer_add_frame(ist->filters[i]->filter, decoded_frame,AV_VSRC_BUF_FLAG_OVERWRITE)<0) {
av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");


Loading…
Cancel
Save