annotate libmpcodecs/ad_realaud.c @ 7172:33c38a0c20e8

renamed to match driver family name
author arpi
date Fri, 30 Aug 2002 19:49:37 +0000
parents libmpcodecs/ad_real.c@6d784b2812b9
children 7672615cc811
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
1
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
2 #include <stdio.h>
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
3 #include <stdlib.h>
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
4 #include <unistd.h>
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
5
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
6 #include "config.h"
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
7
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
8 #ifdef USE_REALCODECS
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
9
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
10 #include <stddef.h>
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
11 #include <dlfcn.h>
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
12
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
13 #include "ad_internal.h"
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
14
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
15 static ad_info_t info = {
6380
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
16 "RealAudio decoder",
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
17 "real",
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
18 AFM_REAL,
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
19 "A'rpi",
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
20 "Florian Schneider",
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
21 "binary real audio codecs"
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
22 };
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
23
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
24 LIBAD_EXTERN(real)
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
25
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
26 static void *handle=NULL;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
27
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
28 void *__builtin_new(unsigned long size) {
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
29 return malloc(size);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
30 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
31
6404
83b3315c679b Implement Nilmoni's and Bernd Ernesti's patches for:
atmos4
parents: 6380
diff changeset
32 #if defined(__FreeBSD__) || defined(__NetBSD__)
83b3315c679b Implement Nilmoni's and Bernd Ernesti's patches for:
atmos4
parents: 6380
diff changeset
33 void *__ctype_b=NULL;
6377
203128bcc6be FreeBSD hack
nexus
parents: 6376
diff changeset
34 #endif
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
35
6745
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
36 static unsigned long (*raCloseCodec)(unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
37 static unsigned long (*raDecode)(unsigned long,unsigned long,unsigned long,unsigned long,unsigned long,unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
38 static unsigned long (*raFlush)(unsigned long,unsigned long,unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
39 static unsigned long (*raFreeDecoder)(unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
40 static unsigned long (*raGetFlavorProperty)(unsigned long,unsigned long,unsigned long,unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
41 //static unsigned long (*raGetNumberOfFlavors2)(void);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
42 static unsigned long (*raInitDecoder)(unsigned long,unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
43 static unsigned long (*raOpenCodec2)(unsigned long);
9734bfbb200a Avoid ulong typedef clash and replace if by unsigned long, patch by Joey Parrish.
atmos4
parents: 6428
diff changeset
44 static unsigned long (*raSetFlavor)(unsigned long,unsigned long);
7097
5c87f14ad947 SetDLLAccessPath isn't used. Patch by Andres Hess <jaska@gmx.net>
alex
parents: 7086
diff changeset
45 //static void (*raSetDLLAccessPath)(unsigned long);
7086
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
46 static void (*raSetPwd)(char*,char*);
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
47
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
48 typedef struct {
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
49 int samplerate;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
50 short bits;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
51 short channels;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
52 int unk1;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
53 int unk2;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
54 int packetsize;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
55 int unk3;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
56 void* unk4;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
57 } ra_init_t;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
58
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
59 static int preinit(sh_audio_t *sh){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
60 // let's check if the driver is available, return 0 if not.
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
61 // (you should do that if you use external lib(s) which is optional)
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
62 unsigned int result;
6380
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
63 int len;
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
64 void* prop;
6376
e3c74c01a3a2 use path & dllname from config
arpi
parents: 6373
diff changeset
65 char path[4096];
6404
83b3315c679b Implement Nilmoni's and Bernd Ernesti's patches for:
atmos4
parents: 6380
diff changeset
66 sprintf(path, REALCODEC_PATH "/%s", sh->codec->dll);
6376
e3c74c01a3a2 use path & dllname from config
arpi
parents: 6373
diff changeset
67 handle = dlopen (path, RTLD_LAZY);
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
68 if(!handle){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
69 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Cannot open dll: %s\n",dlerror());
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
70 return 0;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
71 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
72
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
73 raCloseCodec = dlsym(handle, "RACloseCodec");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
74 raDecode = dlsym(handle, "RADecode");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
75 raFlush = dlsym(handle, "RAFlush");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
76 raFreeDecoder = dlsym(handle, "RAFreeDecoder");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
77 raGetFlavorProperty = dlsym(handle, "RAGetFlavorProperty");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
78 raOpenCodec2 = dlsym(handle, "RAOpenCodec2");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
79 raInitDecoder = dlsym(handle, "RAInitDecoder");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
80 raSetFlavor = dlsym(handle, "RASetFlavor");
7097
5c87f14ad947 SetDLLAccessPath isn't used. Patch by Andres Hess <jaska@gmx.net>
alex
parents: 7086
diff changeset
81 // raSetDLLAccessPath = dlsym(handle, "SetDLLAccessPath");
7086
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
82 raSetPwd = dlsym(handle, "RASetPwd"); // optional, used by SIPR
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
83
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
84 if(!raCloseCodec || !raDecode || !raFlush || !raFreeDecoder ||
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
85 !raGetFlavorProperty || !raOpenCodec2 || !raSetFlavor ||
7097
5c87f14ad947 SetDLLAccessPath isn't used. Patch by Andres Hess <jaska@gmx.net>
alex
parents: 7086
diff changeset
86 /*!raSetDLLAccessPath ||*/ !raInitDecoder){
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
87 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Cannot resolve symbols - incompatible dll\n");
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
88 return 0;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
89 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
90
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
91 result=raOpenCodec2(&sh->context);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
92 if(result){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
93 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Decoder open failed, error code: 0x%X\n",result);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
94 return 0;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
95 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
96
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
97 sh->samplerate=sh->wf->nSamplesPerSec;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
98 sh->samplesize=sh->wf->wBitsPerSample/8;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
99 sh->channels=sh->wf->nChannels;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
100
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
101 { unsigned char temp2[16]={1,0,0,3,4,0,0,0x14,0,0,0,0,0,1,0,3};
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
102 // note: temp2[] come from audio stream extra header (last 16 of the total 24 bytes)
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
103 ra_init_t init_data={
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
104 sh->wf->nSamplesPerSec,sh->wf->wBitsPerSample,sh->wf->nChannels,
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
105 100, // ???
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
106 ((short*)(sh->wf+1))[0], // subpacket size
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
107 sh->wf->nBlockAlign,
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
108 16, // ??
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
109 ((char*)(sh->wf+1))+6+8
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
110 };
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
111 result=raInitDecoder(sh->context,&init_data);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
112 if(result){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
113 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Decoder init failed, error code: 0x%X\n",result);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
114 return 0;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
115 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
116 }
7086
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
117
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
118 if(raSetPwd){
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
119 // used by 'SIPR'
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
120 raSetPwd(sh->context,"Ardubancel Quazanga"); // set password... lol.
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
121 }
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
122
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
123 result=raSetFlavor(sh->context,((short*)(sh->wf+1))[2]);
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
124 if(result){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
125 mp_msg(MSGT_DECAUDIO,MSGL_WARN,"Decoder flavor setup failed, error code: 0x%X\n",result);
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
126 return 0;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
127 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
128
6380
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
129 prop=raGetFlavorProperty(sh->context,((short*)(sh->wf+1))[2],0,&len);
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
130 mp_msg(MSGT_DECAUDIO,MSGL_INFO,"Audio codec: [%d] %s\n",((short*)(sh->wf+1))[2],prop);
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
131
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
132 prop=raGetFlavorProperty(sh->context,((short*)(sh->wf+1))[2],1,&len);
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
133 sh->i_bps=((*((int*)prop))+4)/8;
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
134 mp_msg(MSGT_DECAUDIO,MSGL_INFO,"Audio bitrate: %5.3f kbit/s (%d bps) \n",(*((int*)prop))*0.001f,sh->i_bps);
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
135
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
136 // prop=raGetFlavorProperty(sh->context,((short*)(sh->wf+1))[2],0x13,&len);
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
137 // mp_msg(MSGT_DECAUDIO,MSGL_INFO,"Samples/block?: %d \n",(*((int*)prop)));
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
138
947d6a639c5a fixed copyright
arpi
parents: 6377
diff changeset
139 sh->audio_out_minsize=128000; // no idea how to get... :(
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
140 sh->audio_in_minsize=((short*)(sh->wf+1))[1]*sh->wf->nBlockAlign;
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
141
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
142 return 1; // return values: 1=OK 0=ERROR
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
143 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
144
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
145 static int init(sh_audio_t *sh_audio){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
146 // initialize the decoder, set tables etc...
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
147
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
148 // you can store HANDLE or private struct pointer at sh->context
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
149 // you can access WAVEFORMATEX header at sh->wf
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
150
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
151 // set sample format/rate parameters if you didn't do it in preinit() yet.
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
152
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
153 return 1; // return values: 1=OK 0=ERROR
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
154 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
155
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
156 static void uninit(sh_audio_t *sh){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
157 // uninit the decoder etc...
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
158 // again: you don't have to free() a_in_buffer here! it's done by the core.
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
159 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
160
7104
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
161 static unsigned char sipr_swaps[38][2]={
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
162 {0,63},{1,22},{2,44},{3,90},{5,81},{7,31},{8,86},{9,58},{10,36},{12,68},
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
163 {13,39},{14,73},{15,53},{16,69},{17,57},{19,88},{20,34},{21,71},{24,46},
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
164 {25,94},{26,54},{28,75},{29,50},{32,70},{33,92},{35,74},{38,85},{40,56},
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
165 {42,87},{43,65},{45,59},{48,79},{49,93},{51,89},{55,95},{61,76},{67,83},
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
166 {77,80} };
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
167
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
168 static int decode_audio(sh_audio_t *sh,unsigned char *buf,int minlen,int maxlen){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
169 int result;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
170 int len=-1;
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
171 int sps=((short*)(sh->wf+1))[0];
7086
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
172 int w=sh->wf->nBlockAlign; // 5
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
173 int h=((short*)(sh->wf+1))[1];
7104
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
174
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
175 // printf("bs=%d sps=%d w=%d h=%d \n",sh->wf->nBlockAlign,sps,w,h);
7086
f0886fe4be89 support for 'sipr' codec - descrambling/reorder not yet fixed.
arpi
parents: 6745
diff changeset
176
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
177 #if 1
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
178 if(sh->a_in_buffer_len<=0){
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
179 // fill the buffer!
7104
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
180 if(!sps){
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
181 // 'sipr' way
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
182 int j,n;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
183 int bs=h*w*2/96; // nibbles per subpacket
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
184 unsigned char *p=sh->a_in_buffer;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
185 demux_read_data(sh->ds, p, h*w);
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
186 for(n=0;n<38;n++){
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
187 int i=bs*sipr_swaps[n][0];
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
188 int o=bs*sipr_swaps[n][1];
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
189 // swap nibbles of block 'i' with 'o' TODO: optimize
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
190 for(j=0;j<bs;j++){
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
191 int x=(i&1) ? (p[(i>>1)]>>4) : (p[(i>>1)]&15);
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
192 int y=(o&1) ? (p[(o>>1)]>>4) : (p[(o>>1)]&15);
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
193 if(o&1) p[(o>>1)]=(p[(o>>1)]&0x0F)|(x<<4);
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
194 else p[(o>>1)]=(p[(o>>1)]&0xF0)|x;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
195 if(i&1) p[(i>>1)]=(p[(i>>1)]&0x0F)|(y<<4);
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
196 else p[(i>>1)]=(p[(i>>1)]&0xF0)|y;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
197 ++i;++o;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
198 }
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
199 }
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
200 sh->a_in_buffer_size=
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
201 sh->a_in_buffer_len=w*h;
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
202 } else {
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
203 // 'cook' way
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
204 int x,y;
7104
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
205 w/=sps;
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
206 for(y=0;y<h;y++)
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
207 for(x=0;x<w;x++){
6428
88a06ebb3287 audio subpacket reordering fixed for odd matrix height
arpi
parents: 6404
diff changeset
208 demux_read_data(sh->ds, sh->a_in_buffer+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), sps);
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
209 }
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
210 sh->a_in_buffer_size=
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
211 sh->a_in_buffer_len=w*h*sps;
7104
6d784b2812b9 'sipr' descrambling implemented, at least for 16*6 matrix
arpi
parents: 7097
diff changeset
212 }
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
213 }
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
214
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
215 #else
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
216 if(sh->a_in_buffer_len<=0){
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
217 // fill the buffer!
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
218 demux_read_data(sh->ds, sh->a_in_buffer, sh->wf->nBlockAlign);
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
219 sh->a_in_buffer_size=
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
220 sh->a_in_buffer_len=sh->wf->nBlockAlign;
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
221 }
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
222 #endif
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
223
6373
8d5d339f2944 get matrix w*h from the demuxer
arpi
parents: 6370
diff changeset
224 result=raDecode(sh->context, sh->a_in_buffer+sh->a_in_buffer_size-sh->a_in_buffer_len, sh->wf->nBlockAlign,
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
225 buf, &len, -1);
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
226 sh->a_in_buffer_len-=sh->wf->nBlockAlign;
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
227
6376
e3c74c01a3a2 use path & dllname from config
arpi
parents: 6373
diff changeset
228 // printf("radecode: %d bytes, res=0x%X \n",len,result);
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
229
6368
9511fffdb8c6 yeah, it worx! but needs a big cleanup and removal of hardcoded stuff
arpi
parents: 6367
diff changeset
230 return len; // return value: number of _bytes_ written to output buffer,
6367
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
231 // or -1 for EOF (or uncorrectable error)
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
232 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
233
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
234 static int control(sh_audio_t *sh,int cmd,void* arg, ...){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
235 // various optional functions you MAY implement:
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
236 switch(cmd){
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
237 case ADCTRL_RESYNC_STREAM:
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
238 // it is called once after seeking, to resync.
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
239 // Note: sh_audio->a_in_buffer_len=0; is done _before_ this call!
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
240 return CONTROL_TRUE;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
241 case ADCTRL_SKIP_FRAME:
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
242 // it is called to skip (jump over) small amount (1/10 sec or 1 frame)
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
243 // of audio data - used to sync audio to video after seeking
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
244 // if you don't return CONTROL_TRUE, it will defaults to:
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
245 // ds_fill_buffer(sh_audio->ds); // skip 1 demux packet
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
246 return CONTROL_TRUE;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
247 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
248 return CONTROL_UNKNOWN;
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
249 }
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
250
489c4bcbda13 readaudio decoder - not yet working
arpi
parents:
diff changeset
251 #endif