Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/NeutrinoRDP.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoshiggins <joshiggins@gmail.com>2014-09-18 02:21:20 +0400
committerjoshiggins <joshiggins@gmail.com>2014-09-18 02:21:20 +0400
commit025f20189cd1678f8a9e7161d40fdc75ddf4d5b1 (patch)
tree3b7f397fe19f3679a5db9824795323d1a4d941e7
parentf1e493ec414a609afecec75a7d0975fb8a1b0ded (diff)
Added TSMF_SUB_TYPE_MPEG4 back
-rw-r--r--channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c b/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c
index 6055da8..248d0fe 100644
--- a/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c
+++ b/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c
@@ -242,6 +242,9 @@ static tbool tsmf_ffmpeg_set_format(ITSMFDecoder* decoder, TS_AM_MEDIA_TYPE* med
case TSMF_SUB_TYPE_AC3:
mdecoder->codec_id = CODEC_ID_AC3;
break;
+ case TSMF_SUB_TYPE_MPEG4:
+ mdecoder->codec_id = CODEC_ID_MPEG4;
+ break;
default:
return false;
}