diff options
author | Alfred E. Heggestad <aeh@db.org> | 2015-06-18 22:21:50 +0200 |
---|---|---|
committer | Alfred E. Heggestad <aeh@db.org> | 2015-06-18 22:21:50 +0200 |
commit | 2ba18f9530df38d3fb7f7b293ddbffab2243e6b1 (patch) | |
tree | 8a1d9d1f69113e0a8107d408c3daf90d042e4676 /modules | |
parent | 67afa698a8382a01d197b4de0fee784a521412e9 (diff) |
avformat: fix warning
Diffstat (limited to 'modules')
-rw-r--r-- | modules/avformat/avf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/avformat/avf.c b/modules/avformat/avf.c index e7e0130..449587a 100644 --- a/modules/avformat/avf.c +++ b/modules/avformat/avf.c @@ -102,7 +102,7 @@ static void destructor(void *arg) } -static void handle_packet(struct vidsrc_st *st, const AVPacket *pkt) +static void handle_packet(struct vidsrc_st *st, AVPacket *pkt) { AVPicture pict; AVFrame *frame = NULL; |