move ff* structs & typedef into dedicated namespace
[ardour.git] / gtk2_ardour / transcode_video_dialog.cc
index fa5d447a3a0019a434005dc2698203c5ef0f8390..5c6ae0c7b4fa5a287f85e8b0012afccebc7f6e56 100644 (file)
@@ -88,7 +88,7 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
 
        int w = 0, h = 0;
        m_aspect = 4.0/3.0;
-       AudioStreams as; as.clear();
+       TranscodeFfmpeg::FFAudioStreams as; as.clear();
 
        path_hbox->pack_start (path_label, false, false, 3);
        path_hbox->pack_start (path_entry, true, true, 3);
@@ -227,7 +227,7 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
        t->attach (audio_combo, 1, 4, 2, 3);
        audio_combo.append_text("No audio");
        if (as.size() > 0) {
-               for (AudioStreams::iterator it = as.begin(); it < as.end(); ++it) {
+               for (TranscodeFfmpeg::FFAudioStreams::iterator it = as.begin(); it < as.end(); ++it) {
                        audio_combo.append_text((*it).name);
                }
        }