diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-08-22 01:42:19 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-08-22 01:42:19 +0200 |
commit | 61d8fa2a1ab76f0f3ac1442faa104ace4b29decc (patch) | |
tree | b25059b7eeb823c12bca2d5fafefce83abdcdf70 | |
parent | f9ab4fe1f7c1e9d410ca5ee2c9ff8d2892aad068 (diff) | |
download | ffmpeg-61d8fa2a1ab76f0f3ac1442faa104ace4b29decc.tar.gz |
h264: Fix faulty call to avpriv_request_sample
Broken in f9ab4fe1f7c1e9d410ca5ee2c9ff8d2892aad068
-rw-r--r-- | libavcodec/h264_sei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index 361d4deb1a..ddf1b6f9fa 100644 --- a/libavcodec/h264_sei.c +++ b/libavcodec/h264_sei.c @@ -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); |