]> git.sesse.net Git - vlc/blobdiff - modules/codec/subtitles/t140.c
Used VLC_CODEC_* and i_original_fourcc when applicable.
[vlc] / modules / codec / subtitles / t140.c
index 3560c510df260e41e4ec0ad9eca9e3d114da5df4..6eee0142ec55df3110ce37956e29d3c5e4379255 100644 (file)
@@ -57,14 +57,14 @@ static int Open( vlc_object_t *p_this )
                 msg_Err( p_this, "Only UTF-8 encoding supported" );
                 return VLC_EGENERIC;
             }
-        case VLC_FOURCC('t','1','4','0'):
+        case VLC_CODEC_ITU_T140:
             break;
 
         default:
             if( !p_enc->b_force )
                 return VLC_EGENERIC;
 
-            p_enc->fmt_out.i_codec = VLC_FOURCC('t','1','4','0');
+            p_enc->fmt_out.i_codec = VLC_CODEC_ITU_T140;
     }
 
     p_enc->p_sys = NULL;