Commit fe9818d0 authored by Nicolas George's avatar Nicolas George

ffplay: fix two const warnings.

No change in assembly code produced on x86_64.
parent b50767c3
......@@ -1673,7 +1673,7 @@ static int input_request_frame(AVFilterLink *link)
} else {
picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, link->w, link->h);
av_image_copy(picref->data, picref->linesize,
priv->frame->data, priv->frame->linesize,
(const uint8_t **)(void **)priv->frame->data, priv->frame->linesize,
picref->format, link->w, link->h);
}
av_free_packet(&pkt);
......@@ -3217,7 +3217,7 @@ int main(int argc, char **argv)
}
av_init_packet(&flush_pkt);
flush_pkt.data = "FLUSH";
flush_pkt.data = (char *)(intptr_t)"FLUSH";
is = stream_open(input_filename, file_iformat);
if (!is) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment