comparison src/ffmpeg/libffwma/allcodecs.c @ 806:74abcb9cafae trunk

[svn] - fork wma plugin
author nenolod
date Mon, 12 Mar 2007 10:59:21 -0700
parents src/wma/libffwma/allcodecs.c@3da1b8942b8b
children
comparison
equal deleted inserted replaced
805:1ba5f86aeac9 806:74abcb9cafae
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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