Commit 61d8fa2a authored by Luca Barbato's avatar Luca Barbato

h264: Fix faulty call to avpriv_request_sample

Broken in f9ab4fe1
parent f9ab4fe1
......@@ -171,7 +171,7 @@ static int decode_registered_user_data_closed_caption(H264Context *h, int size)
}
} else {
int i;
avpriv_request_sample("Subtitles with data type 0x%02x",
avpriv_request_sample(h->avctx, "Subtitles with data type 0x%02x",
user_data_type_code);
for (i = 0; i < size - 1; i++)
skip_bits(&h->gb, 8);
......
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