diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-05 13:18:17 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-05 15:01:36 +0200 |
commit | 367732832faaf1bac4ece37cf7fef8c911e16312 (patch) | |
tree | 3e3cf5d1809f898f9f25dca63b2e2f8117424bde /libavdevice/libdc1394.c | |
parent | b39b06233dfd69b941a32f29171dfb63abb23c06 (diff) | |
download | ffmpeg-367732832faaf1bac4ece37cf7fef8c911e16312.tar.gz |
lavf,lavc: free avoptions in a generic way.
It's simpler and less error-prone.
Fixes some memleaks along the way.
Diffstat (limited to 'libavdevice/libdc1394.c')
-rw-r--r-- | libavdevice/libdc1394.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavdevice/libdc1394.c b/libavdevice/libdc1394.c index b17d0fb441..622579bc92 100644 --- a/libavdevice/libdc1394.c +++ b/libavdevice/libdc1394.c @@ -195,9 +195,6 @@ static inline int dc1394_read_common(AVFormatContext *c, AVFormatParameters *ap, *select_fps = fps; *select_fmt = fmt; out: - av_freep(&dc1394->video_size); - av_freep(&dc1394->pixel_format); - av_freep(&dc1394->framerate); return ret; } |