Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>2010-07-17 22:13:17 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-17 22:13:17 +0400
commitb5c582fa9db0a4d360506a05ab66a01394e51c56 (patch)
tree90559ee49ff1f38ff8b71ca5b90e21c73279e7ef /libavfilter/defaults.c
parenteedc4ee5d8644dab5ec5faa764af97996e029fc5 (diff)
Remove AVFilterBuffer w and h fields.
These fields are never used, and they do not seem to belong to AVFilterBuffer anymore, now that it is now a media-independent structure and these fields are video-related. Patch by S.N. Hemanth Meenakshisundaram smeenaks ! ucsd ! edu. Originally committed as revision 24291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/defaults.c')
-rw-r--r--libavfilter/defaults.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c
index e4218a818b..ed1db94b69 100644
--- a/libavfilter/defaults.c
+++ b/libavfilter/defaults.c
@@ -40,8 +40,8 @@ AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms,
char *buf;
ref->pic = pic;
- ref->w = pic->w = w;
- ref->h = pic->h = h;
+ ref->w = w;
+ ref->h = h;
/* make sure the buffer gets read permission or it's useless for output */
ref->perms = perms | AV_PERM_READ;