Changeset 54dc1499af57b6f265f73292146168b0b9a1d91e
- Timestamp:
- 24/05/08 02:41:03
(5 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1211589663 +0200
- git-parent:
[f60fff1adf4e6b73d9529c2522436d930d71f33b]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1211589663 +0200
- Message:
transcode: If no module is explicitely selected, print that we are potentially using any module.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf60fff1 |
r54dc149 |
|
| 1402 | 1402 | if( !id->p_encoder->p_module ) |
|---|
| 1403 | 1403 | { |
|---|
| 1404 | | msg_Err( p_stream, "cannot find audio encoder (%s/%4.4s)", |
|---|
| 1405 | | p_sys->psz_aenc, (char *)&p_sys->i_acodec ); |
|---|
| | 1404 | msg_Err( p_stream, "cannot find audio encoder (module:%s fourcc:%4.4s)", |
|---|
| | 1405 | p_sys->psz_aenc ? p_sys->psz_aenc : "any", |
|---|
| | 1406 | (char *)&p_sys->i_acodec ); |
|---|
| 1406 | 1407 | module_Unneed( id->p_decoder, id->p_decoder->p_module ); |
|---|
| 1407 | 1408 | id->p_decoder->p_module = NULL; |
|---|
| … | … | |
| 1497 | 1498 | if( !id->p_encoder->p_module ) |
|---|
| 1498 | 1499 | { |
|---|
| 1499 | | msg_Err( p_stream, "cannot find audio encoder (%s/%4.4s)", |
|---|
| 1500 | | p_sys->psz_aenc, (char *)&p_sys->i_acodec ); |
|---|
| | 1500 | msg_Err( p_stream, "cannot find audio encoder (module:%s fourcc:%4.4s)", |
|---|
| | 1501 | p_sys->psz_aenc ? p_sys->psz_aenc : "any", |
|---|
| | 1502 | (char *)&p_sys->i_acodec ); |
|---|
| 1501 | 1503 | transcode_audio_close( id ); |
|---|
| 1502 | 1504 | return VLC_EGENERIC; |
|---|
| … | … | |
| 1838 | 1840 | if( !id->p_encoder->p_module ) |
|---|
| 1839 | 1841 | { |
|---|
| 1840 | | msg_Err( p_stream, "cannot find video encoder (%s/%4.4s)", |
|---|
| 1841 | | p_sys->psz_venc, (char *)&p_sys->i_vcodec ); |
|---|
| | 1842 | msg_Err( p_stream, "cannot find video encoder (module:%s fourcc:%4.4s)", |
|---|
| | 1843 | p_sys->psz_venc ? p_sys->psz_venc : "any", |
|---|
| | 1844 | (char *)&p_sys->i_vcodec ); |
|---|
| 1842 | 1845 | module_Unneed( id->p_decoder, id->p_decoder->p_module ); |
|---|
| 1843 | 1846 | id->p_decoder->p_module = 0; |
|---|
| … | … | |
| 2153 | 2156 | if( !id->p_encoder->p_module ) |
|---|
| 2154 | 2157 | { |
|---|
| 2155 | | msg_Err( p_stream, "cannot find video encoder (%s/%4.4s)", |
|---|
| 2156 | | p_sys->psz_venc, (char *)&p_sys->i_vcodec ); |
|---|
| | 2158 | msg_Err( p_stream, "cannot find video encoder (module:%s fourcc:%4.4s)", |
|---|
| | 2159 | p_sys->psz_venc ? p_sys->psz_venc : "any", |
|---|
| | 2160 | (char *)&p_sys->i_vcodec ); |
|---|
| 2157 | 2161 | return VLC_EGENERIC; |
|---|
| 2158 | 2162 | } |
|---|