[vlc-commits] xxx
Rémi Denis-Courmont
git at videolan.org
Sat Jun 17 16:54:34 CEST 2017
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jun 17 17:38:57 2017 +0300| [22115d64c0dac62876b368aa5bc5f10dbffb5525] | committer: Rémi Denis-Courmont
xxx
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=22115d64c0dac62876b368aa5bc5f10dbffb5525
---
modules/codec/avcodec/fourcc.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/modules/codec/avcodec/fourcc.c b/modules/codec/avcodec/fourcc.c
index 81e0357c05..8e585c12c8 100644
--- a/modules/codec/avcodec/fourcc.c
+++ b/modules/codec/avcodec/fourcc.c
@@ -36,12 +36,14 @@
* Codec fourcc -> libavcodec Codec_id mapping
* Sorted by AVCodecID enumeration order
*****************************************************************************/
-static const struct
+struct vlc_avcodec_fourcc
{
vlc_fourcc_t i_fourcc;
unsigned i_codec;
int i_cat;
-} codecs_table[] =
+};
+
+static const struct vlc_avcodec_fourcc codecs_table[] =
{
{ 0, AV_CODEC_ID_NONE, UNKNOWN_ES },
More information about the vlc-commits
mailing list