diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-07-02 14:55:24 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-07-02 14:55:24 +0200 |
commit | 98b085ddc29581003d76acb79ca4484fcf25b555 (patch) | |
tree | 424ef54c9f369f485c50cd41f70ef148d5a4cc44 /src/libffmpeg | |
parent | 2ce81d93218aef7cd8fb362d3e1881237b41b5eb (diff) | |
download | xine-lib-98b085ddc29581003d76acb79ca4484fcf25b555.tar.gz xine-lib-98b085ddc29581003d76acb79ca4484fcf25b555.tar.bz2 |
Fix demuxing of wavpack files, and avoid crashing with the tags at the end of the file.
Diffstat (limited to 'src/libffmpeg')
-rw-r--r-- | src/libffmpeg/ff_video_decoder.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libffmpeg/ff_video_decoder.c b/src/libffmpeg/ff_video_decoder.c index 66cbc7d75..8414875aa 100644 --- a/src/libffmpeg/ff_video_decoder.c +++ b/src/libffmpeg/ff_video_decoder.c @@ -311,6 +311,7 @@ static const ff_codec_t ff_video_lookup[] = { {BUF_VIDEO_KMVC, CODEC_ID_KMVC, "Karl Morton's Video Codec (ffmpeg)"}, {BUF_VIDEO_FLASHSV, CODEC_ID_FLASHSV, "Flash Screen Video (ffmpeg)"}, {BUF_VIDEO_CAVS, CODEC_ID_CAVS, "Chinese AVS (ffmpeg)"}, + {BUF_VIDEO_THEORA_RAW, CODEC_ID_THEORA, "Theora (ffmpeg)"}, }; @@ -1747,7 +1748,7 @@ static uint32_t supported_video_types[] = { #ifdef CONFIG_CAVS_DECODER BUF_VIDEO_CAVS, #endif - + BUF_VIDEO_THEORA_RAW, 0 }; |