mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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:
parent
29853f2aae
commit
73b726418b
1 changed files with 3 additions and 3 deletions
|
@ -20,8 +20,8 @@
|
|||
* Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef __GST_VAAPI_DECODE_BIN_H__
|
||||
#define __GST_VAAPI_DECODE_BIN_H__
|
||||
#ifndef GST_VAAPI_DECODE_BIN_H
|
||||
#define GST_VAAPI_DECODE_BIN_H
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -61,4 +61,4 @@ GType gst_vaapi_decode_bin_get_type (void);
|
|||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_VAAPI_DECODE_BIN_H__ */
|
||||
#endif /* GST_VAAPI_DECODE_BIN_H */
|
||||
|
|
Loading…
Reference in a new issue