Skip to content

Commit

Permalink
demuxer ffmpeg, workaround for broken probing of flac format
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed May 8, 2014
1 parent 37181cb commit b38ec39
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xbmc/cores/dvdplayer/DVDDemuxers/DVDDemuxFFmpeg.cpp
Expand Up @@ -274,6 +274,8 @@ bool CDVDDemuxFFmpeg::Open(CDVDInputStream* pInput)
iformat = m_dllAvFormat.av_find_input_format("mpegts");
else if( content.compare("multipart/x-mixed-replace") == 0 )
iformat = m_dllAvFormat.av_find_input_format("mjpeg");
else if( content.compare("audio/flac") == 0 )
iformat = m_dllAvFormat.av_find_input_format("flac");
}

// open the demuxer
Expand Down

0 comments on commit b38ec39

Please sign in to comment.