1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:42:17 +00:00

freeing up space and some debug

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2789 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2001-11-09 22:17:35 +00:00
parent 6b42f644f2
commit 70b29b823d

View File

@ -152,6 +152,13 @@ static void vivo_parse_text_header(demuxer_t *demux, int header_len)
/* get next token */
token = strtok(NULL, (char *)&("\x0d\x0a"));
}
if (buf)
free(buf);
if (opt)
free(opt);
if (param)
free(param);
}
int vivo_check_file(demuxer_t* demuxer){
@ -490,6 +497,10 @@ void demux_open_vivo(demuxer_t* demuxer){
sh->bih->biSizeImage=sh->bih->biWidth*sh->bih->biHeight*3;
demuxer->video->sh=sh; sh->ds=demuxer->video;
demuxer->video->id=0;
printf("VIVO Video stream %d size: display: %dx%d, codec: %dx%d\n",
demuxer->video->id, sh->disp_w, sh->disp_h, sh->bih->biWidth,
sh->bih->biHeight);
}
if(demuxer->audio->id>=-1){
@ -497,16 +508,19 @@ if(demuxer->audio->id>=-1){
mp_msg(MSGT_DEMUX,MSGL_ERR,"VIVO: " MSGTR_MissingAudioStream);
} else
{ sh_audio_t* sh=new_sh_audio(demuxer,1);
sh->format=0x111; // 0x112
// Emulate WAVEFORMATEX struct:
sh->wf=malloc(sizeof(WAVEFORMATEX));
memset(sh->wf,0,sizeof(WAVEFORMATEX));
sh->wf->nChannels=1;
sh->wf->wBitsPerSample=16;
// sh->wf->wBitsPerSample=8;
if (priv->samplerate)
sh->wf->nSamplesPerSec=priv->samplerate;
else
sh->wf->nSamplesPerSec=22050;
// sh->wf->nSamplesPerSec=8000;
sh->wf->nAvgBytesPerSec=sh->wf->nChannels*sh->wf->wBitsPerSample*sh->wf->nSamplesPerSec/8;
demuxer->audio->sh=sh; sh->ds=demuxer->audio;
demuxer->audio->id=1;
@ -515,3 +529,20 @@ if(demuxer->audio->id>=-1){
}
void demux_close_vivo(demuxer_t *demuxer)
{
vivo_priv_t* priv=demuxer->priv;
if (priv->title)
free(priv->title);
if (priv->author)
free(priv->author);
if (priv->copyright)
free(priv->copyright);
if (priv->producer)
free(priv->producer);
if (priv)
free(priv);
return;
}