vaapidecodebin: Avoid usage of "__" prefix in macro names

Avoiding "__" prefix usage in Header File Guards as per
C standard recommendation.
This commit is contained in:
Sreerenj Balachandran 2015-03-03 12:37:41 +02:00
parent 29853f2aae
commit 73b726418b

View file

@ -20,8 +20,8 @@
* Boston, MA 02110-1301 USA * Boston, MA 02110-1301 USA
*/ */
#ifndef __GST_VAAPI_DECODE_BIN_H__ #ifndef GST_VAAPI_DECODE_BIN_H
#define __GST_VAAPI_DECODE_BIN_H__ #define GST_VAAPI_DECODE_BIN_H
G_BEGIN_DECLS G_BEGIN_DECLS
@ -61,4 +61,4 @@ GType gst_vaapi_decode_bin_get_type (void);
G_END_DECLS G_END_DECLS
#endif /* __GST_VAAPI_DECODE_BIN_H__ */ #endif /* GST_VAAPI_DECODE_BIN_H */