Allow build using Ubuntu 12.04 repos.
authorCarl Hetherington <cth@carlh.net>
Wed, 12 Sep 2012 09:54:39 +0000 (10:54 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 12 Sep 2012 09:54:39 +0000 (10:54 +0100)
src/lib/decoder.cc
src/lib/decoder.h
src/lib/wscript
wscript

index faee5beceec118fa0c6bd1bfa9541738e32bc6d0..fc808d819883bf8c1843548ef45031ac5fbd6b4e 100644 (file)
@@ -29,6 +29,8 @@ extern "C" {
 #if (LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR >= 53 && LIBAVFILTER_VERSION_MINOR <= 77) || LIBAVFILTER_VERSION_MAJOR == 3
 #include <libavfilter/avcodec.h>
 #include <libavfilter/buffersink.h>
+#elif LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR == 15
+#include <libavfilter/vsrc_buffer.h>
 #endif
 #include <libavformat/avio.h>
 }
@@ -67,7 +69,9 @@ Decoder::Decoder (boost::shared_ptr<const FilmState> s, boost::shared_ptr<const
        , _video_frame (0)
        , _buffer_src_context (0)
        , _buffer_sink_context (0)
+#if HAVE_SWRESAMPLE      
        , _swr_context (0)
+#endif   
        , _have_setup_video_filters (false)
        , _delay_line (0)
        , _delay_in_bytes (0)
@@ -87,6 +91,7 @@ void
 Decoder::process_begin ()
 {
        if (_fs->audio_sample_rate != dcp_audio_sample_rate (_fs->audio_sample_rate)) {
+#if HAVE_SWRESAMPLE            
                _swr_context = swr_alloc_set_opts (
                        0,
                        audio_channel_layout(),
@@ -99,8 +104,13 @@ Decoder::process_begin ()
                        );
                
                swr_init (_swr_context);
+#else
+               throw DecodeError ("Cannot resample audio as libswresample is not present");
+#endif         
        } else {
+#if HAVE_SWRESAMPLE            
                _swr_context = 0;
+#endif         
        }
 
        _delay_in_bytes = _fs->audio_delay * _fs->audio_sample_rate * _fs->audio_channels * _fs->bytes_per_sample() / 1000;
@@ -113,6 +123,7 @@ Decoder::process_begin ()
 void
 Decoder::process_end ()
 {
+#if HAVE_SWRESAMPLE    
        if (_swr_context) {
 
                int mop = 0;
@@ -139,6 +150,7 @@ Decoder::process_end ()
 
                swr_free (&_swr_context);
        }
+#endif 
        
        if (_delay_in_bytes < 0) {
                uint8_t remainder[-_delay_in_bytes];
@@ -227,10 +239,12 @@ Decoder::process_audio (uint8_t* data, int size)
        /* Here's samples per channel */
        int const samples = size / _fs->bytes_per_sample();
 
+#if HAVE_SWRESAMPLE    
        /* And here's frames (where 1 frame is a collection of samples, 1 for each channel,
           so for 5.1 a frame would be 6 samples)
        */
        int const frames = samples / _fs->audio_channels;
+#endif 
 
        /* Maybe apply gain */
        if (_fs->audio_gain != 0) {
@@ -270,6 +284,7 @@ Decoder::process_audio (uint8_t* data, int size)
        uint8_t* out_buffer = 0;
 
        /* Maybe sample-rate convert */
+#if HAVE_SWRESAMPLE    
        if (_swr_context) {
 
                uint8_t const * in[2] = {
@@ -297,6 +312,7 @@ Decoder::process_audio (uint8_t* data, int size)
                data = out_buffer;
                size = out_frames * _fs->audio_channels * _fs->bytes_per_sample();
        }
+#endif 
                
        /* Update the number of audio frames we've pushed to the encoder */
        _audio_frames_processed += size / (_fs->audio_channels * _fs->bytes_per_sample ());
@@ -339,10 +355,8 @@ Decoder::process_video (AVFrame* frame)
                throw DecodeError ("could not push buffer into filter chain.");
        }
 
-#else  
+#elif LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR == 15
 
-#if 0
-       
        AVRational par;
        par.num = sample_aspect_ratio_numerator ();
        par.den = sample_aspect_ratio_denominator ();
@@ -351,7 +365,7 @@ Decoder::process_video (AVFrame* frame)
                throw DecodeError ("could not push buffer into filter chain.");
        }
 
-#endif
+#else
 
        if (av_buffersrc_write_frame (_buffer_src_context, frame) < 0) {
                throw DecodeError ("could not push buffer into filter chain.");
@@ -359,13 +373,13 @@ Decoder::process_video (AVFrame* frame)
 
 #endif 
        
-#if LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR >= 23 && LIBAVFILTER_VERSION_MINOR <= 61       
+#if LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR >= 15 && LIBAVFILTER_VERSION_MINOR <= 61       
        while (avfilter_poll_frame (_buffer_sink_context->inputs[0])) {
 #else
        while (av_buffersink_read (_buffer_sink_context, 0)) {
 #endif         
 
-#if LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR == 53
+#if LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR >= 15
                
                int r = avfilter_request_frame (_buffer_sink_context->inputs[0]);
                if (r < 0) {
@@ -434,10 +448,7 @@ Decoder::setup_video_filters ()
                throw DecodeError ("Could not find buffer src filter");
        }
 
-       AVFilter* buffer_sink = avfilter_get_by_name("buffersink");
-       if (buffer_sink == 0) {
-               throw DecodeError ("Could not create buffer sink filter");
-       }
+       AVFilter* buffer_sink = get_sink ();
 
        stringstream a;
        a << native_size().width << ":"
@@ -471,10 +482,17 @@ Decoder::setup_video_filters ()
        inputs->next = 0;
 
        _log->log ("Using filter chain `" + filters + "'");
+
+#if LIBAVFILTER_VERSION_MAJOR == 2 && LIBAVFILTER_VERSION_MINOR == 15
+       if (avfilter_graph_parse (graph, filters.c_str(), inputs, outputs, 0) < 0) {
+               throw DecodeError ("could not set up filter graph.");
+       }
+#else  
        if (avfilter_graph_parse (graph, filters.c_str(), &inputs, &outputs, 0) < 0) {
                throw DecodeError ("could not set up filter graph.");
        }
-
+#endif 
+       
        if (avfilter_graph_config (graph, 0) < 0) {
                throw DecodeError ("could not configure filter graph.");
        }
index 5c69e12d06ed5a62133fc4427ee3668aec458bd8..792f7dde2ea948c5046afb18cd855f29da89d331 100644 (file)
 #include <stdint.h>
 #include <boost/shared_ptr.hpp>
 #include <sigc++/sigc++.h>
+#ifdef HAVE_SWRESAMPLE
 extern "C" {
 #include <libswresample/swresample.h>
-}      
+}
+#endif
 #include "util.h"
 
 class Job;
@@ -132,7 +134,9 @@ private:
        AVFilterContext* _buffer_src_context;
        AVFilterContext* _buffer_sink_context;
 
+#if HAVE_SWRESAMPLE    
        SwrContext* _swr_context;
+#endif 
 
        bool _have_setup_video_filters;
        DelayLine* _delay_line;
index b001fff2a89a97a968824e43bc02a70554aa0221..71a2b23f41be508c893b0c250ee1137e389b93f2 100644 (file)
@@ -28,6 +28,7 @@ def build(bld):
                 encoder.cc
                  encoder_factory.cc
                 examine_content_job.cc
+                 ffmpeg_compatibility.cc
                  ffmpeg_decoder.cc
                 film.cc
                 film_state.cc
diff --git a/wscript b/wscript
index bf9e041e395913ee6aa7fe609753b098daf5b0b4..405fdf5b121007c7fc06701475177210e3e9223f 100644 (file)
--- a/wscript
+++ b/wscript
@@ -57,7 +57,7 @@ def configure(conf):
     conf.check_cfg(package = 'libavcodec', args = '--cflags --libs', uselib_store = 'AVCODEC', mandatory = True)
     conf.check_cfg(package = 'libavutil', args = '--cflags --libs', uselib_store = 'AVUTIL', mandatory = True)
     conf.check_cfg(package = 'libswscale', args = '--cflags --libs', uselib_store = 'SWSCALE', mandatory = True)
-    conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = True)
+    conf.check_cfg(package = 'libswresample', args = '--cflags --libs', uselib_store = 'SWRESAMPLE', mandatory = False)
     conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True)
     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
     conf.check_cfg(package = 'libdcp', atleast_version = '0.20', args = '--cflags --libs', uselib_store = 'DCP', mandatory = True)