comparison Plugins/Input/wma/libffwma/allcodecs.c @ 137:b8d4c1faa6d7 trunk

[svn] Import WMA decoder into SVN.
author nenolod
date Thu, 10 Nov 2005 14:56:35 -0800
parents
children 12004b385a96
comparison
equal deleted inserted replaced
136:54218989d664 137:b8d4c1faa6d7
1 /*
2 * Utils for libavcodec
3 * Copyright (c) 2002 Fabrice Bellard.
4 * Copyright (c) 2004 Roman Bogorodskiy (bmp-wma specific stuff)
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "avcodec.h"
22
23 void avcodec_register_all(void)
24 {
25 static int inited = 0;
26
27 if (inited != 0)
28 return;
29 inited = 1;
30
31 register_avcodec(&wmav1_decoder);
32 register_avcodec(&wmav2_decoder);
33 }
34