OSDN Git Service

silence compiler warning about const char *
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 1 Mar 2011 00:37:34 +0000 (00:37 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 1 Mar 2011 00:37:34 +0000 (00:37 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@3822 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/stream.c

index 4c11841..4b46537 100644 (file)
@@ -1562,7 +1562,7 @@ static void set_audio_description( hb_audio_t *audio, iso639_lang_t *lang )
             codec_name = "DTS";
         }
 
-        char *profile_name;
+        const char *profile_name;
         profile_name = av_get_profile_name( codec, cc->profile );
         if ( profile_name )
         {