theoradec: handle empty adapter
Should not be empty but might be when we actually pass and decode the 0 packets later.
This commit is contained in:
parent
da673880eb
commit
f15bc6835b
@ -273,11 +273,13 @@ theora_dec_parse (GstVideoDecoder * decoder,
|
|||||||
|
|
||||||
av = gst_adapter_available (adapter);
|
av = gst_adapter_available (adapter);
|
||||||
|
|
||||||
|
if (av > 0) {
|
||||||
data = gst_adapter_map (adapter, 1);
|
data = gst_adapter_map (adapter, 1);
|
||||||
/* check for keyframe; must not be header packet */
|
/* check for keyframe; must not be header packet */
|
||||||
if (!(data[0] & 0x80) && (data[0] & 0x40) == 0)
|
if (!(data[0] & 0x80) && (data[0] & 0x40) == 0)
|
||||||
GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (frame);
|
GST_VIDEO_CODEC_FRAME_SET_SYNC_POINT (frame);
|
||||||
gst_adapter_unmap (adapter);
|
gst_adapter_unmap (adapter);
|
||||||
|
}
|
||||||
|
|
||||||
/* and pass along all */
|
/* and pass along all */
|
||||||
gst_video_decoder_add_to_frame (decoder, av);
|
gst_video_decoder_add_to_frame (decoder, av);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user