diff options
author | S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu> | 2010-08-07 01:15:27 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-07 01:15:27 +0000 |
commit | 7fce481a69053dd24dbf9f1cb0f5b51df2ec925c (patch) | |
tree | 0f61baf91fc505244098f2aa23e8aea4f0b08704 /ffmpeg.c | |
parent | ecc8dada379261b8ad3788336cdc9d15de55b64b (diff) | |
download | ffmpeg-7fce481a69053dd24dbf9f1cb0f5b51df2ec925c.tar.gz |
Rename functions and fields:
avfilter_(un)ref_pic -> avfilter_(un)ref_buffer
avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props
AVFilterBufferRef.pic -> AVFilterBufferRef.buffer
They have been renamed to allow sharing with audio.
Patch by S.N. Hemanth Meenakshisundaram $smeenaks$ucsd$edu$.
Originally committed as revision 24731 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1777,7 +1777,7 @@ static int output_packet(AVInputStream *ist, int ist_index, frame_available = (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) && ist->out_video_filter && avfilter_poll_frame(ist->out_video_filter->inputs[0]); if(ist->picref) - avfilter_unref_pic(ist->picref); + avfilter_unref_buffer(ist->picref); } #endif av_free(buffer_to_free); |