Ticket #3727: 3727-v2.patch
File 3727-v2.patch, 3.0 KB (added by , 16 years ago) |
---|
-
contrib/channel_changers/sa3250ch.c
32 32 33 33 /* SA3250HD IDs */ 34 34 /* WARNING: Please update firewiredevice.cpp when adding to this list. */ 35 #define SA 3250HD_VENDOR_ID10x000011e636 #define SA 3250HD_VENDOR_ID20x000014f837 #define SA 3250HD_VENDOR_ID30x0000169238 #define SA 3250HD_VENDOR_ID40x0000194739 #define SA 3250HD_VENDOR_ID50x00000f2135 #define SA_VENDOR_ID1 0x000011e6 36 #define SA_VENDOR_ID2 0x000014f8 37 #define SA_VENDOR_ID3 0x00001692 38 #define SA_VENDOR_ID4 0x00001947 39 #define SA_VENDOR_ID5 0x00000f21 40 40 #define SA3250HD_MODEL_ID1 0x00000be0 41 #define SA4200HD_VENDOR_ID1 0x000014f842 #define SA4200HD_VENDOR_ID2 0x0000169243 41 #define SA4200HD_MODEL_ID1 0x00001072 42 #define SA4250HDC_MODEL_ID1 0x000010cc 44 43 45 44 #define AVC1394_SA3250_COMMAND_CHANNEL 0x000007c00 /* subunit command */ 46 45 #define AVC1394_SA3250_OPERAND_KEY_PRESS 0xe7 … … 129 128 i, dir.vendor_id, dir.model_id); 130 129 131 130 /* WARNING: Please update firewiredevice.cpp when adding to this list. */ 132 if ((((dir.vendor_id == SA4200HD_VENDOR_ID1) || 133 (dir.vendor_id == SA4200HD_VENDOR_ID2)) && 134 (dir.model_id == SA4200HD_MODEL_ID1)) || 135 (((dir.vendor_id == SA3250HD_VENDOR_ID1) || 136 (dir.vendor_id == SA3250HD_VENDOR_ID2) || 137 (dir.vendor_id == SA3250HD_VENDOR_ID3) || 138 (dir.vendor_id == SA3250HD_VENDOR_ID4) || 139 (dir.vendor_id == SA3250HD_VENDOR_ID5)) && 140 (dir.model_id == SA3250HD_MODEL_ID1))) 131 if (((dir.vendor_id == SA_VENDOR_ID1) || 132 (dir.vendor_id == SA_VENDOR_ID2) || 133 (dir.vendor_id == SA_VENDOR_ID3) || 134 (dir.vendor_id == SA_VENDOR_ID4) || 135 (dir.vendor_id == SA_VENDOR_ID5)) && 136 ((dir.model_id == SA3250HD_MODEL_ID1) || 137 (dir.model_id == SA4200HD_MODEL_ID1) || 138 (dir.model_id == SA4250HDC_MODEL_ID1))) 141 139 { 142 140 device = i; 143 141 break; -
libs/libmythtv/firewiredevice.cpp
386 386 id_to_model[0x1947ULL << 32 | 0x1072] = "SA4200HD"; 387 387 id_to_model[0x0f21ULL << 32 | 0x1072] = "SA4200HD"; 388 388 389 id_to_model[0x11e6ULL << 32 | 0x10cc] = "SA4200HD"; // "SA4250HDC"; 390 id_to_model[0x14f8ULL << 32 | 0x10cc] = "SA4200HD"; // "SA4250HDC"; 391 id_to_model[0x1692ULL << 32 | 0x10cc] = "SA4200HD"; // "SA4250HDC"; 392 id_to_model[0x1947ULL << 32 | 0x10cc] = "SA4200HD"; // "SA4250HDC"; 393 id_to_model[0x0f21ULL << 32 | 0x10cc] = "SA4200HD"; // "SA4250HDC"; 394 389 395 const uint64_t motorola_vendor_ids[] = 390 396 { /* 6200 */ 391 397 0x0ce5, 0x0e5c, 0x1225, 0x0f9f, 0x1180,