This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vfwcap: Replace deprecated av_destruct_packet() by av_free_packet()
tags/n2.4
Diego Biurrun
11 years ago
parent
7c371754fb
commit
a6a27fede9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavdevice/vfwcap.c
+ 1
- 1
libavdevice/vfwcap.c
View File
@@ -230,7 +230,7 @@ static int vfw_read_close(AVFormatContext *s)
pktl = ctx->pktl;
while (pktl) {
AVPacketList *next = pktl->next;
av_
destruct
_packet(&pktl->pkt);
av_
free
_packet(&pktl->pkt);
av_free(pktl);
pktl = next;
}
Write
Preview
Loading…
Cancel
Save