diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-14 19:36:38 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-14 19:36:38 +0000 |
commit | 335a761a908bedc7b8b488d04890bcfe36bb812f (patch) | |
tree | e1d8da4ccbca211e4526595e30276a60cc863e21 /libavcodec/avcodec.h | |
parent | eedfe2227a74da5c5180b6d4ab75a61b79bc74f9 (diff) | |
download | ffmpeg-335a761a908bedc7b8b488d04890bcfe36bb812f.tar.gz |
Use a more explicit "codec" rather than "format" as the parameter of
register_avcodec().
Originally committed as revision 16130 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 5ec0d1c9ba..ffc08f50e6 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2563,7 +2563,7 @@ unsigned avcodec_version(void); */ void avcodec_init(void); -void register_avcodec(AVCodec *format); +void register_avcodec(AVCodec *codec); /** * Finds a registered encoder with a matching codec ID. |