Mercurial > mplayer.hg
annotate libmpcodecs/ad_libdv.c @ 30477:4aea7f4c856e
Apply misc fixes to sws_getCoefficients() doxy.
author | stefano |
---|---|
date | Fri, 05 Feb 2010 22:56:59 +0000 |
parents | bbb6ebec87a0 |
children | cc27da5d7286 |
rev | line source |
---|---|
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
1 /* |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
2 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
7 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
12 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
13 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
17 */ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29263
diff
changeset
|
18 |
6927 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
21 #include <string.h> | |
22 #include <sys/types.h> | |
23 #include <unistd.h> | |
24 #include <math.h> | |
25 | |
26 #include "config.h" | |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
7180
diff
changeset
|
27 #include "mp_msg.h" |
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
7180
diff
changeset
|
28 #include "help_mp.h" |
6927 | 29 |
30 #include "img_format.h" | |
31 | |
32 #include <libdv/dv.h> | |
33 #include <libdv/dv_types.h> | |
34 | |
22599
4faee1254928
Add explicit location for headers from the stream/ directory.
diego
parents:
18771
diff
changeset
|
35 #include "stream/stream.h" |
22601
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
36 #include "libmpdemux/demuxer.h" |
ed8f90096c65
Add explicit location for headers from the libmpdemux/ directory.
diego
parents:
22599
diff
changeset
|
37 #include "libmpdemux/stheader.h" |
6927 | 38 |
39 #include "ad_internal.h" | |
40 | |
41 static ad_info_t info = | |
42 { | |
43 "Raw DV Audio Decoder", | |
44 "libdv", | |
45 "Alexander Neundorf <neundorf@kde.org>", | |
46 "http://libdv.sf.net", | |
47 "" | |
48 }; | |
49 | |
50 LIBAD_EXTERN(libdv) | |
51 | |
52 // defined in vd_libdv.c: | |
22886 | 53 dv_decoder_t* init_global_rawdv_decoder(void); |
6927 | 54 |
55 static int preinit(sh_audio_t *sh_audio) | |
56 { | |
57 sh_audio->audio_out_minsize=4*DV_AUDIO_MAX_SAMPLES*2; | |
58 return 1; | |
59 } | |
60 | |
61 static int16_t *audioBuffers[4]={NULL,NULL,NULL,NULL}; | |
62 | |
63 static int init(sh_audio_t *sh) | |
64 { | |
65 int i; | |
66 WAVEFORMATEX *h=sh->wf; | |
67 | |
68 if(!h) return 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
69 |
6927 | 70 sh->i_bps=h->nAvgBytesPerSec; |
71 sh->channels=h->nChannels; | |
72 sh->samplerate=h->nSamplesPerSec; | |
73 sh->samplesize=(h->wBitsPerSample+7)/8; | |
74 | |
75 sh->context=init_global_rawdv_decoder(); | |
76 | |
77 for (i=0; i < 4; i++) | |
78 audioBuffers[i] = malloc(2*DV_AUDIO_MAX_SAMPLES); | |
79 | |
80 return 1; | |
81 } | |
82 | |
83 static void uninit(sh_audio_t *sh_audio) | |
84 { | |
85 int i; | |
86 for (i=0; i < 4; i++) | |
87 free(audioBuffers[i]); | |
88 } | |
89 | |
90 static int control(sh_audio_t *sh,int cmd,void* arg, ...) | |
91 { | |
92 // TODO!!! | |
93 return CONTROL_UNKNOWN; | |
94 } | |
95 | |
96 static int decode_audio(sh_audio_t *audio, unsigned char *buf, int minlen, int maxlen) | |
97 { | |
98 int len=0; | |
99 dv_decoder_t* decoder=audio->context; //global_rawdv_decoder; | |
100 unsigned char* dv_audio_frame=NULL; | |
101 int xx=ds_get_packet(audio->ds,&dv_audio_frame); | |
102 if(xx<=0 || !dv_audio_frame) return 0; // EOF? | |
103 | |
104 dv_parse_header(decoder, dv_audio_frame); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
105 |
6927 | 106 if(xx!=decoder->frame_size) |
18004
bcd805923554
Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents:
7180
diff
changeset
|
107 mp_msg(MSGT_GLOBAL,MSGL_WARN,MSGTR_MPCODECS_AudioFramesizeDiffers, |
6927 | 108 xx, decoder->frame_size); |
109 | |
110 if (dv_decode_full_audio(decoder, dv_audio_frame,(int16_t**) audioBuffers)) | |
111 { | |
112 /* Interleave the audio into a single buffer */ | |
113 int i=0; | |
114 int16_t *bufP=(int16_t*)buf; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
22886
diff
changeset
|
115 |
6927 | 116 // printf("samples=%d/%d chans=%d mem=%d \n",decoder->audio->samples_this_frame,DV_AUDIO_MAX_SAMPLES, |
117 // decoder->audio->num_channels, decoder->audio->samples_this_frame*decoder->audio->num_channels*2); | |
118 | |
119 // return (44100/30)*4; | |
120 | |
121 for (i=0; i < decoder->audio->samples_this_frame; i++) | |
122 { | |
123 int ch; | |
124 for (ch=0; ch < decoder->audio->num_channels; ch++) | |
125 bufP[len++] = audioBuffers[ch][i]; | |
126 } | |
127 } | |
128 return len*2; | |
129 } |