diff options
author | S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu> | 2010-08-07 01:15:19 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-07 01:15:19 +0000 |
commit | ecc8dada379261b8ad3788336cdc9d15de55b64b (patch) | |
tree | fed81eca2de81e396ca6dff69760539b2b4d99f7 /ffmpeg.c | |
parent | e11b104a687343993cdffd4b7d1c06fcc6f31be0 (diff) | |
download | ffmpeg-ecc8dada379261b8ad3788336cdc9d15de55b64b.tar.gz |
Rename AVFilterPicRef to AVFilterBufferRef.
The struct is going to be used for storing audio buffer references as
well, and the new name is more generic.
Patch by S.N. Hemanth Meenakshisundaram @smeenaks@ucsd@edu@.
Originally committed as revision 24730 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -313,7 +313,7 @@ typedef struct AVInputStream { AVFilterContext *input_video_filter; AVFrame *filter_frame; int has_filter_frame; - AVFilterPicRef *picref; + AVFilterBufferRef *picref; #endif } AVInputStream; @@ -361,10 +361,10 @@ static int output_query_formats(AVFilterContext *ctx) } static int get_filtered_video_pic(AVFilterContext *ctx, - AVFilterPicRef **picref, AVFrame *pic2, + AVFilterBufferRef **picref, AVFrame *pic2, uint64_t *pts) { - AVFilterPicRef *pic; + AVFilterBufferRef *pic; if(avfilter_request_frame(ctx->inputs[0])) return -1; |