include ext/codecparsers instead of git submodule
[profile/ivi/gstreamer-vaapi.git] / ext / codecparsers / gst-libs / gst / codecparsers / parserutils.c
1 /* Gstreamer
2  * Copyright (C) <2011> Intel Corporation
3  * Copyright (C) <2011> Collabora Ltd.
4  * Copyright (C) <2011> Thibault Saunier <thibault.saunier@collabora.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #include "parserutils.h"
23
24 gboolean
25 decode_vlc (GstBitReader * br, guint * res, const VLCTable * table,
26     guint length)
27 {
28   guint8 i;
29   guint cbits = 0;
30   guint32 value = 0;
31
32   for (i = 0; i < length; i++) {
33     if (cbits != table[i].cbits) {
34       cbits = table[i].cbits;
35       if (!gst_bit_reader_peek_bits_uint32 (br, &value, cbits)) {
36         goto failed;
37       }
38     }
39
40     if (value == table[i].cword) {
41       SKIP (br, cbits);
42       if (res)
43         *res = table[i].value;
44
45       return TRUE;
46     }
47   }
48
49   GST_DEBUG ("Did not find code");
50
51 failed:
52   {
53     GST_WARNING ("Could not decode VLC returning");
54
55     return FALSE;
56   }
57 }