diff options
author | Julian Scheel <julian@jusst.de> | 2009-01-16 13:37:07 +0000 |
---|---|---|
committer | Julian Scheel <julian@jusst.de> | 2009-01-16 13:37:07 +0000 |
commit | 1632fa30f517c25e419201d3402e216abc7c51ca (patch) | |
tree | b9dfa0311cd7d1d9db84f3ef673fab7b1e082d6b | |
parent | b53b61a99e30cf8d5524d2bd5ef722edf94705a5 (diff) | |
download | xine-lib-1632fa30f517c25e419201d3402e216abc7c51ca.tar.gz xine-lib-1632fa30f517c25e419201d3402e216abc7c51ca.tar.bz2 |
Add some comment...
-rw-r--r-- | src/libvdpau/vdpau_h264.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libvdpau/vdpau_h264.c b/src/libvdpau/vdpau_h264.c index 95e3ff018..bdbe713a7 100644 --- a/src/libvdpau/vdpau_h264.c +++ b/src/libvdpau/vdpau_h264.c @@ -661,6 +661,11 @@ static void vdpau_h264_reset (video_decoder_t *this_gen) { this->nal_parser = init_parser(); if(this->codec_private_len > 0) { parse_codec_private(this->nal_parser, this->codec_private, this->codec_private_len); + + /* if the stream does not contain frame boundary marks we + * have to hope that the next nal will start with the next + * incoming buf... seems to work, though... + */ this->wait_for_frame_start = this->have_frame_boundary_marks; } |