Skip to content

Commit

Permalink
Enable https and openssl. Bump to 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Mar 8, 2014
1 parent 6ef31ad commit 9b0793f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Makefile.ffmpeg
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ configure:
--disable-doc \
--disable-postproc \
--enable-gpl \
--enable-protocol=http \
--enable-protocols \
--enable-nonfree \
--enable-openssl \
--enable-pthreads \
--enable-pic \
--disable-armv5te \
Expand Down Expand Up @@ -244,7 +246,7 @@ clean:

checkout:
git clone git://source.ffmpeg.org/ffmpeg ffmpeg; \
cd ffmpeg; git checkout n2.1
cd ffmpeg; git checkout n2.1.4

install:
cd ffmpeg; make -j9 DESTDIR="$(WORK)/ffmpeg_compiled" install
Expand Down
2 changes: 1 addition & 1 deletion OMXReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ bool OMXReader::Open(std::string filename, bool dump_format, bool live /* =false
m_filename.replace(0, 8, "http://");

if(m_filename.substr(0,6) == "mms://" || m_filename.substr(0,7) == "mmsh://" || m_filename.substr(0,7) == "mmst://" || m_filename.substr(0,7) == "mmsu://" ||
m_filename.substr(0,7) == "http://" ||
m_filename.substr(0,7) == "http://" || m_filename.substr(0,8) == "https://" ||
m_filename.substr(0,7) == "rtmp://" || m_filename.substr(0,6) == "udp://" ||
m_filename.substr(0,7) == "rtsp://" )
{
Expand Down

0 comments on commit 9b0793f

Please sign in to comment.