summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-28 12:03:41 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-28 12:03:41 +0200
commit5fd254c4f6db58b74a02a38f0d724e5fdc149d88 (patch)
treecd162651ec22bf158e21a7f8640feda54d0eb3c6 /ffplay.c
parent54056c149333034414b86b6771692ea5862862d4 (diff)
parent26a44143efb513a602542fb59aee87b1fc62af51 (diff)
Merge commit '26a44143efb513a602542fb59aee87b1fc62af51'
* commit '26a44143efb513a602542fb59aee87b1fc62af51': avplay: remove a warning Conflicts: ffplay.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index ca0a8289f4..80c30913e6 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -3535,7 +3535,7 @@ int main(int argc, char **argv)
}
av_init_packet(&flush_pkt);
- flush_pkt.data = (char *)(intptr_t)"FLUSH";
+ flush_pkt.data = (uint8_t *)&flush_pkt;
is = stream_open(input_filename, file_iformat);
if (!is) {