This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
/* |
| 2 |
* Copyright (C) 2009 Marco Ballesio |
| 3 |
* |
| 4 |
* Authors: |
| 5 |
* Marco Ballesio <marco.ballesio@gmail.com> |
| 6 |
* Felipe Contreras <felipe.contreras@gmail.com> |
| 7 |
* |
| 8 |
* This file may be used under the terms of the GNU Lesser General Public |
| 9 |
* License version 2.1, a copy of which is found in LICENSE included in the |
| 10 |
* packaging of this file. |
| 11 |
*/ |
| 12 |
|
| 13 |
#ifndef GST_DSP_PARSE_H |
| 14 |
#define GST_DSP_PARSE_H |
| 15 |
|
| 16 |
#include <glib.h> |
| 17 |
#include "gstdspbase.h" |
| 18 |
|
| 19 |
bool gst_dsp_h263_parse(GstDspBase *base, GstBuffer *buf); |
| 20 |
bool gst_dsp_mpeg4_parse(GstDspBase *base, GstBuffer *buf); |
| 21 |
bool gst_dsp_h264_parse(GstDspBase *base, GstBuffer *buf); |
| 22 |
|
| 23 |
#endif |