mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
846b228dbb
--HG-- extra : rebase_source : 04d15a3e154054fe00b3c01f3c252f5f9613e3e8
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
diff --git a/media/libvorbis/lib/vorbis_synthesis.c b/media/libvorbis/lib/vorbis_synthesis.c
|
|
index b7b2399..05774fd 100644
|
|
--- a/media/libvorbis/lib/vorbis_synthesis.c
|
|
+++ b/media/libvorbis/lib/vorbis_synthesis.c
|
|
@@ -19,22 +19,26 @@
|
|
#include <ogg/ogg.h>
|
|
#include "vorbis/codec.h"
|
|
#include "codec_internal.h"
|
|
#include "registry.h"
|
|
#include "misc.h"
|
|
#include "os.h"
|
|
|
|
int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
|
|
- vorbis_dsp_state *vd=vb->vd;
|
|
- private_state *b=vd->backend_state;
|
|
- vorbis_info *vi=vd->vi;
|
|
- codec_setup_info *ci=vi->codec_setup;
|
|
- oggpack_buffer *opb=&vb->opb;
|
|
+ vorbis_dsp_state *vd= vb ? vb->vd : 0;
|
|
+ private_state *b= vd ? vd->backend_state : 0;
|
|
+ vorbis_info *vi= vd ? vd->vi : 0;
|
|
+ codec_setup_info *ci= vi ? vi->codec_setup : 0;
|
|
+ oggpack_buffer *opb=vb ? &vb->opb : 0;
|
|
int type,mode,i;
|
|
+
|
|
+ if (!vd || !b || !vi || !ci || !opb) {
|
|
+ return OV_EBADPACKET;
|
|
+ }
|
|
|
|
/* first things first. Make sure decode is ready */
|
|
_vorbis_block_ripcord(vb);
|
|
oggpack_readinit(opb,op->packet,op->bytes);
|
|
|
|
/* Check the packet type */
|
|
if(oggpack_read(opb,1)!=0){
|
|
/* Oops. This is not an audio data packet */
|