You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
* const warning fix
Originally committed as revision 1210 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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];
|
||||||
|
Reference in New Issue
Block a user