Commit 58445440 authored by Zdenek Kabelac's avatar Zdenek Kabelac

* const warning fix

Originally committed as revision 1210 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6a85ec8d
...@@ -1502,10 +1502,10 @@ static void compute_stats(HTTPContext *c) ...@@ -1502,10 +1502,10 @@ static void compute_stats(HTTPContext *c)
{ {
int audio_bit_rate = 0; int audio_bit_rate = 0;
int video_bit_rate = 0; int video_bit_rate = 0;
char *audio_codec_name = ""; const char *audio_codec_name = "";
char *video_codec_name = ""; const char *video_codec_name = "";
char *audio_codec_name_extra = ""; const char *audio_codec_name_extra = "";
char *video_codec_name_extra = ""; const char *video_codec_name_extra = "";
for(i=0;i<stream->nb_streams;i++) { for(i=0;i<stream->nb_streams;i++) {
AVStream *st = stream->streams[i]; AVStream *st = stream->streams[i];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment