avplay: remove a warning
authorLuca Barbato <lu_zero@gentoo.org>
Mon, 15 Apr 2013 09:10:14 +0000 (11:10 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Sat, 27 Apr 2013 08:51:28 +0000 (10:51 +0200)
Set the data field in the flush_pkt to the pointer to the actual packet.
The field needs to contain a valid unique pointer, no read nor writes
are ever made to it.

avplay.c

index 018f63d..ba59a8c 100644 (file)
--- a/avplay.c
+++ b/avplay.c
@@ -2963,7 +2963,7 @@ int main(int argc, char **argv)
     SDL_EventState(SDL_USEREVENT, SDL_IGNORE);
 
     av_init_packet(&flush_pkt);
-    flush_pkt.data = "FLUSH";
+    flush_pkt.data = (uint8_t *)&flush_pkt;
 
     cur_stream = stream_open(input_filename, file_iformat);