diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-12-05 01:50:52 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-12-05 01:50:52 +0000 |
commit | 605f33efdd3852f0f09bcaac3e2b25cea6e6c808 (patch) | |
tree | a242407d75bdcec62e320782d1f989340332dbcc /src | |
parent | 0353446472d7641c79b28c22cb1136ee98235cbb (diff) | |
download | xine-lib-605f33efdd3852f0f09bcaac3e2b25cea6e6c808.tar.gz xine-lib-605f33efdd3852f0f09bcaac3e2b25cea6e6c808.tar.bz2 |
Build fix (undefined symbol) for when using older ffmpeg.
Diffstat (limited to 'src')
-rw-r--r-- | src/combined/ffmpeg/ff_video_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/ffmpeg/ff_video_decoder.c b/src/combined/ffmpeg/ff_video_decoder.c index 093ca4776..727508847 100644 --- a/src/combined/ffmpeg/ff_video_decoder.c +++ b/src/combined/ffmpeg/ff_video_decoder.c @@ -1180,6 +1180,7 @@ static void ff_check_pts_tagging(ff_video_decoder_t *this, uint64_t pts) } } } +#endif /* AVCODEC_HAS_REORDERED_OPAQUE */ static int ff_vc1_find_header(ff_video_decoder_t *this, buf_element_t *buf) { @@ -1224,7 +1225,6 @@ static int ff_check_extradata(ff_video_decoder_t *this, unsigned int codec_type, return 1; } -#endif /* AVCODEC_HAS_REORDERED_OPAQUE */ static void ff_handle_buffer (ff_video_decoder_t *this, buf_element_t *buf) { uint8_t *chunk_buf = this->buf; AVRational avr00 = {0, 1}; |