From 2255aedd15f985796d2e6f7fcc7fb412a5d98812 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 21 May 2013 17:32:28 +0100 Subject: Various more hacks; basically trying to remove Regions as an unnecessary complexity. --- src/lib/ffmpeg_decoder.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/lib/ffmpeg_decoder.h') diff --git a/src/lib/ffmpeg_decoder.h b/src/lib/ffmpeg_decoder.h index 760fc084d..f3f6b126b 100644 --- a/src/lib/ffmpeg_decoder.h +++ b/src/lib/ffmpeg_decoder.h @@ -1,3 +1,5 @@ +/* -*- c-basic-offset: 8; default-tab-width: 8; -*- */ + /* Copyright (C) 2012 Carl Hetherington @@ -68,11 +70,11 @@ public: int sample_aspect_ratio_numerator () const; int sample_aspect_ratio_denominator () const; - std::vector subtitle_streams () const { + std::vector > subtitle_streams () const { return _subtitle_streams; } - std::vector audio_streams () const { + std::vector > audio_streams () const { return _audio_streams; } @@ -126,8 +128,8 @@ private: std::list > _filter_graphs; boost::mutex _filter_graphs_mutex; - std::vector _subtitle_streams; - std::vector _audio_streams; + std::vector > _subtitle_streams; + std::vector > _audio_streams; bool _decode_video; bool _decode_audio; -- cgit v1.2.3