From 9deaec782810d098bca11c9332fab2d2f4c5fb78 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 6 Feb 2015 14:53:40 +0100 Subject: lavf: move internal fields from public to internal context This is not an API change; the fields were explicitly declared private before. Signed-off-by: Anton Khirnov --- libavformat/yop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/yop.c') diff --git a/libavformat/yop.c b/libavformat/yop.c index ea3175e33b..08fcc19e3c 100644 --- a/libavformat/yop.c +++ b/libavformat/yop.c @@ -194,7 +194,7 @@ static int yop_read_seek(AVFormatContext *s, int stream_index, if (!stream_index) return -1; - pos_min = s->data_offset; + pos_min = s->internal->data_offset; pos_max = avio_size(s->pb) - yop->frame_size; frame_count = (pos_max - pos_min) / yop->frame_size; -- cgit v1.2.3