Changes between Version 2 and Version 3 of Ticket #1398, comment 22
- Timestamp:
- Apr 23, 2014, 8:13:17 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1398, comment 22
v2 v3 20 20 21 21 The following needs to inserted into that switch function 22 {{{case AV_CODEC_ID_DTS: 23 stream_type = STREAM_TYPE_AUDIO_DTS; 24 break; 22 23 {{{ 24 case AV_CODEC_ID_DTS: 25 stream_type = STREAM_TYPE_AUDIO_DTS; 26 break; 25 27 }}} 28 26 29 This will result in the output file having a stream ID of 0x8a which should work. If not line 61 of libavformat\mpegts.h probably needs to be changed to 27 30 {{{#define STREAM_TYPE_AUDIO_DTS 0x82}}}