summaryrefslogtreecommitdiffstats
path: root/audio/kradio/kradio-4.0.2-ffmpeg08.patch
diff options
context:
space:
mode:
author crocket2011-11-15 23:32:12 +0100
committer Robby Workman2011-11-26 16:08:08 +0100
commit7a6800c69c8d58cd96776c6f004cac5cc6f2fc3c (patch)
tree769c725d553d916156364639beb32a0b7fc9fb06 /audio/kradio/kradio-4.0.2-ffmpeg08.patch
parent1d4433cbf26625d8b4c9e0dfce786eb4349c8954 (diff)
downloadslackbuilds-7a6800c69c8d58cd96776c6f004cac5cc6f2fc3c.tar.gz
audio/kradio: Add patch for ffmpeg 0.8.
I did not test build this against ffmpeg 0.8, only against what's in the repo at the time: ffmpeg 0.6.1. It compiles, no idea if it works. Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'audio/kradio/kradio-4.0.2-ffmpeg08.patch')
-rw-r--r--audio/kradio/kradio-4.0.2-ffmpeg08.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/kradio/kradio-4.0.2-ffmpeg08.patch b/audio/kradio/kradio-4.0.2-ffmpeg08.patch
new file mode 100644
index 0000000000..c6cbf90ed0
--- /dev/null
+++ b/audio/kradio/kradio-4.0.2-ffmpeg08.patch
@@ -0,0 +1,11 @@
+--- plugins/internetradio/decoder_thread.cpp.ffmpeg 2011-06-26 02:14:41.000000000 +0200
++++ plugins/internetradio/decoder_thread.cpp 2011-06-26 02:14:55.000000000 +0200
+@@ -535,7 +535,7 @@
+ m_av_audioStream = -1;
+ for (unsigned int i = 0; i < m_av_pFormatCtx->nb_streams; i++) {
+ // if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO && m_av_audioStream < 0) {
+- if (m_av_pFormatCtx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO) { // take last stream
++ if (m_av_pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) { // take last stream
+ m_av_audioStream = i;
+ }
+ }