Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-09-08 23:38:01 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-09-09 00:02:00 +0300
commitb72c184194b92786373c420f2820c077f34de64d (patch)
tree7136a3d81106eb11ba630b3fb8a2db59b13c0d0d
parentd86c5f8de865a0050a22d7c678f9b65ac60d231a (diff)
avcodec/h264_sei: Remove "Subtitles with data type 0x%02x" sample requestn2.8
Suggested-by: Carl and Hendrik
-rw-r--r--libavcodec/h264_sei.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
index fbb5576b91..818caa8dfd 100644
--- a/libavcodec/h264_sei.c
+++ b/libavcodec/h264_sei.c
@@ -182,8 +182,6 @@ static int decode_registered_user_data_closed_caption(H264Context *h, int size)
}
} else {
int i;
- 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);
}