summaryrefslogtreecommitdiff
path: root/libavformat/options.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2015-02-28 01:06:28 +0200
committerMartin Storsjö <martin@martin.st>2015-02-28 22:07:04 +0200
commitc86d8aed748adc3ba8df96fb1fe14aa45da77a31 (patch)
tree471e2c511712308759f86e4d24e6dd973a503bcd /libavformat/options.c
parent82b6e451161f19ab90bfb9565b710021caf5dcbd (diff)
avio: Rename avclass symbols relating to avio
Don't prefix them ffio_url, which is misleading, sounding too much like the urlprotocol layer (like ffurl_*). Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/options.c')
-rw-r--r--libavformat/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/options.c b/libavformat/options.c
index 227c36f95f..996dc31274 100644
--- a/libavformat/options.c
+++ b/libavformat/options.c
@@ -55,7 +55,7 @@ static const AVClass *format_child_class_next(const AVClass *prev)
AVOutputFormat *ofmt = NULL;
if (!prev)
- return &ffio_url_class;
+ return &ff_avio_class;
while ((ifmt = av_iformat_next(ifmt)))
if (ifmt->priv_class == prev)